Subject: | Generic sql types |
Currently each parser stores its own db-specific data types into the
schema it creates, and each producer tries to guess what to turn those
types into.
A better idea is to have the parsers store generic types, where
possible, into an "sql_type" which will contain one of DBIs
SQL_TYPE constants, and store the parser specific types in "data_type"
as before. Producers can then choose to output the generic type in
their own way, or use the original type information.