Simple Q: Does the ODBC driver support LONGVARCHAR?
От | Adam Rossi |
---|---|
Тема | Simple Q: Does the ODBC driver support LONGVARCHAR? |
Дата | |
Msg-id | 002801bfda24$4f2d2620$0200a8c0@RSGROUP обсуждение исходный текст |
Список | pgsql-interfaces |
Does the ODBC driver support longvarchar? It seems that no matter what I do with the settings for the driver, such as checking "Unknowns as LongVarChar", "Text as LongVarChar", "Parse Statements", etc., the longvarchar type NEVER works. In this simple SQL statement: create table test_table testid INTEGER,text_field LONGVARCHAR,var_field VARCHAR(250),char_field CHAR(1)) the field "text_field" defined as type "LONGVARCHAR" will always cause the statement to fail with the following message: ERROR: Unable to locate type name 'longvarchar' in catalog' (#17) If I change the "LONGVARCHAR" to "TEXT", the statement below works fine: create table test_table testid INTEGER,text_field TEXT,var_field VARCHAR(250),char_field CHAR(1)) Since I am relying on some builder tools that only support ODBC standard types (i.e. LONGVARCHAR and not TEXT), it would make my life a lot easier if I could get LONGVARCHAR to work. Is this some deficiency in the driver? Shouldn't an ODBC driver support the major ODBC types? Could anyone point me in the right direction to hack the driver if it currently does not support this syntax? Thanks for your help. - Adam
В списке pgsql-interfaces по дате отправления: