if you create a table use following statement (script generated from MS SQL 
Server 2000)
CREATE TABLE [XTollData] (
 [DutyID] [char] (32) NOT NULL ,
 [CarNumber] [char] (10) NULL 
);

SQLite3_Column_decltype will treat DutyID as data type 'char' but not 'char(32)'

Reply via email to