From: Dennis H. <de...@tr...> - 2004-08-15 15:02:15
|
Hello again, your column types are somewhat unclean. For example, why you use INT for a boolean value. The most close type would be TINYINT (SMALLINT where TINYINT isn't supported). Using a CHAR(1) and character-set safe binar values like \x60 and \x61 is another alternative. Your StringCol(length) seems to be byte-oriented. It would be nice if there was a character-based length attribute. Regards, Dennis |