mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Fix placeholder text used instead of type name in SQLGetData SQLColumns_TYPE_NAME call
This commit is contained in:
parent
1846fab4e6
commit
1fc6d60dfa
@ -1340,7 +1340,8 @@ SQLRETURN SQL_API SQLColumns(
|
||||
|
||||
ts2 = mdb_ascii2unicode(mdb, table->name, 0, (char*)t2, MDB_BIND_SIZE);
|
||||
ts3 = mdb_ascii2unicode(mdb, col->name, 0, (char*)t3, MDB_BIND_SIZE);
|
||||
ts5 = mdb_ascii2unicode(mdb, "FIX ME", 0, (char*)t5, MDB_BIND_SIZE);
|
||||
ts5 = mdb_ascii2unicode(mdb, _odbc_get_client_type_name(col), 0, (char*)t5, MDB_BIND_SIZE);
|
||||
|
||||
nullable = SQL_NO_NULLS;
|
||||
datatype = _odbc_get_client_type(col);
|
||||
sqldatatype = _odbc_get_client_type(col);
|
||||
|
Loading…
Reference in New Issue
Block a user