1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 06:08:38 -04:00

Merge pull request #57 from pali/master

Add DBI SQL_BOOLEAN type as alias for SQLITE_INTEGER
This commit is contained in:
Kenichi Ishigaki 2019-08-16 22:48:13 +09:00 committed by GitHub
commit ccd1995967
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -214,6 +214,7 @@ sqlite_type_from_odbc_type(int type)
switch(type) {
case SQL_UNKNOWN_TYPE:
return SQLITE_NULL;
case SQL_BOOLEAN:
case SQL_INTEGER:
case SQL_SMALLINT:
case SQL_TINYINT: