summaryrefslogtreecommitdiff
path: root/info.c
AgeCommit message (Expand)Author
2024-08-11Implementation of SQLSetDescRec & SQLGetDescRec functions (#23)Hunaid Sohail
2024-05-19Fixed typos in all source code and documentations (#11)Hunaid Sohail
2023-06-21Currenly SQLColumnPrivileges() call fails. Fix a typo which is the cause.Hiroshi Inoue
2022-12-23Enable SQLColumnPrivileges functionality.Hiroshi Inoue
2021-11-211. Fix a bug that SQLGetDiagField(SQL_DIAG_NUMBER) with SQL_HANDLE_DBC return...Hiroshi Inoue
2021-08-29Use ODBC 3 column names for the result set of catalog functions.Hiroshi Inoue
2021-04-21Forget to apply disable_convert_func flag to VARCHAR and LONGVARCHAR.Hiroshi Inoue
2020-11-10Add support for CONVERT scalar function.Hiroshi Inoue
2020-09-26Suppress some gcc compiler warnings.Hiroshi Inoue
2019-10-04Fix a crash bug when SQLProcedureColumns() handles satisfies_hash_partition()...Hiroshi Inoue
2019-08-14Added support for scalar functions TIMESTAMPADD(), TIMESTAMPDIFF() and EXTRAC...Hiroshi Inoue
2019-08-01Since commit 778571, SQLGetTypeInfo() filters SQL_TYPE_DATE, SQL_TYPE_TIME an...Hiroshi Inoue
2019-05-15Correct the rgbInfoValue returned by SQLGetInfo(.., SQL_NUMERIC_FUNCTIONS(SQL...Hiroshi Inoue
2019-05-01Fix a typo in SQLForeignKeys-ResultSet-Column.Hiroshi Inoue
2019-04-29Correct the rgbInfoValue returned by SQLGetInfo(SQL_LIKE_ESCAPE_CLAUSE, ..).Hiroshi Inoue
2019-04-28Because the field 'relhasoids' was dropped in PG12, psqlodbc drivers would ha...Hiroshi Inoue
2019-03-29Correct the rgbInfoValue returned by SQLGetInfo(SQL_TIMEDATE_FUNCTIONS, ..).Hiroshi Inoue
2018-11-13Fix a bug that SQLSpecialColumns() returns oid/xmin incorrectly when a table ...Hiroshi Inoue
2018-10-28Add an alias DX of *Database* keyword for connection strings to aviod the use...Hiroshi Inoue
2018-05-17Reduce DB access to pg_class or pg_index by caching relhasoids, relhassubclas...Hiroshi Inoue
2018-05-12Let SQLTables() or SQLTablePrivileges() show partition tables.Hiroshi Inoue
2018-05-02Fix SQLGetTypeInfo() so that it filters SQL_TYPE_DATE, SQL_TYPE_TIME or SQL_T...Hiroshi Inoue
2017-12-26Review the level of MYLOG, QLOG.Hiroshi Inoue
2017-09-30Don't forget to call resetPQExpBuffer() before processing a new query.Hiroshi Inoue
2017-09-27Use macro IS_NOT_SPACE() instead of !isspace() to ensure that !isspace() is a...Hiroshi Inoue
2017-09-27Improve the use of SC_error_copy() in info.c.Hiroshi Inoue
2017-09-24Improve error handling in info.c.Hiroshi Inoue
2017-09-21Review the use of encoded_nextchar().Hiroshi Inoue
2017-09-18Improve @@identty handling.Hiroshi Inoue
2017-09-12For PG10 servers, we will never see "unknown" output columns.Hiroshi Inoue
2017-09-12Handle PG 10 identity columns.Hiroshi Inoue
2017-09-10Fix multibyte handling of ansi driver.Hiroshi Inoue
2017-08-27Further Mylog renewal.Hiroshi Inoue
2017-08-21The 1st cut of qlog renewal.Hiroshi Inoue
2017-08-16Implement myprintf() which prints logs according to printf format and make lo...Hiroshi Inoue
2017-08-15Review the use of mylog().Hiroshi Inoue
2017-08-15Reduce the use of snprintfcat(or SPRINTFCAT_FIXED macro) as much as possible.Hiroshi Inoue
2017-07-04Fix some compiler warnings.Hiroshi Inoue
2017-07-03Add support for foreign tables and matviews in SQLTablesMichael Paquier
2017-06-15Mark some queries as read-only in addition to the previous commit.Hiroshi Inoue
2017-06-14Reduce SAVEPOINT calls especially in use declare/fetch mode by omitting SAVEP...Hiroshi Inoue
2017-06-10Clean up the use of 'internal' member of StatementClass.Hiroshi Inoue
2017-06-09Rename snprintf_add() snprintfcat().Hiroshi Inoue
2017-06-07Clean up the use of sprintf(). Replace sprintf() by snprintf() or the macro S...Hiroshi Inoue
2017-06-07Clean up the use of strcat(). Replace strcat() by strlcat() or the macro STRC...Hiroshi Inoue
2017-06-05Cleanup the code by replacing strcpy() by strncpy_null(), strlcat() or snprin...Hiroshi Inoue
2017-05-19Remove the stuff about Debug and Commlog from getCommonDefaults().Hiroshi Inoue
2017-05-11Reorganize the language conversion between the current locale and unicode.Hiroshi Inoue
2017-04-24Review the handling of OUTPUT parameters in SQLProcedureColumns().Hiroshi Inoue
2017-04-23Correct the inappropriate use of set_nullfield_int2().Hiroshi Inoue