0
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
May 28, 2024 — May 28, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Remove obsolete maps pointed out by Daniel Cory <[email protected]>. 1. POWER -> pow 2. CONCAT -> textcat 3. LEFT -> ltrunc 4. RIGHT -> rtrunc More... over 6 years ago
Review RegisterDsn. 1. Add a new functionality to 'check_dsn'(renamed from 'existCheck'). This option returns 0 when dsn exists,returns -1 when dsn does not exist, (new) returns -2 when dsn exists but the driver doesn't exist. 2. Add 'reinstall_driver' option. This option is effective when 'check_dsn' option returns -2. More... almost 7 years ago
Correct the path name of Visual Studio 2017 tools. More... almost 7 years ago
Fix compiler warnings in i386-linux-gnu. More... about 7 years ago
Call AC_CHECK_SIZEOF(long int) in configure.ac and always place config.h before sql....h. Due to this change, sqltypes.h of unixODBC can recognize SIZEOF_LONG_INT used in psqlodbc driver. More... about 7 years ago
Fix compiler warnings. More... about 7 years ago
odbc_config is often missing in ubuntu. In those cases you can try configure --with-unixodbc=__without_odbc_config . If necessary, configure with LDFLAGS and/or CPPFLAGS e.g. configure "LDFLAGS=-L /usr/lib/x86_64/linux/gnu" --with-unixodbc=__without_odbc_config . More... about 7 years ago
Create an output variable from a shell variable ODBCLIB using AC_SUBST() in configure.ac. The variable is used in test/Makefile.in. More... about 7 years ago
Prep release 10.03.0000 More... about 7 years ago
Reduce DB access to pg_class or pg_index by caching relhasoids, relhassubclass etc. It would improve the performance of SQLSetPos() or SQLBulkOperations() very much in some cases. Per report from Takayuki Tsunakawa. More... about 7 years ago
Add a parameter SpecificDsn of regress.ps1. More... about 7 years ago
Fix some typos in help messages of regrees.ps1. Also cleanup the handling of DeclareFetch parameter a little. More... about 7 years ago
Let SQLTables() or SQLTablePrivileges() show partition tables. More... about 7 years ago
Fix a crash bug when handling error messages. Also modified some error messages. More... about 7 years ago
fix build on Solaris using Solaris Studio More... about 7 years ago
Revise ConfigDSN() so that it handles the 4th parameter(lpszAttribues) correctly. Per report from Haribabu Kommi. More... about 7 years ago
Fix SQLGetTypeInfo() so that it filters SQL_TYPE_DATE, SQL_TYPE_TIME or SQL_TYPE_TIMESTAMP for ODBC 2.x applications. Per report from Oleg Tonkikh. More... about 7 years ago
Put back the handling of lock_CC_for_rb variable. The variable lock_CC_for_rb should be held per connection. Per report from Ayman Samamry. More... about 7 years ago
Fixed typo.. More... about 7 years ago
Prep release 10.02.0000 More... about 7 years ago
Fix a crash bug in AddDeleted(). Report and patch by Takayuki Tsunakawa. More... about 7 years ago
Make SQLSetPos(SQL_DELETE/SQL_REFRESH) more effective. Because queries calling currtid(2) like select .. from .. where ctid=currtid2(.., ..) cause Seq Scan, their execution may be very slow. It is better to execute queries using subqueries like select .. from .. where ctid=(select currtid2(.., ..)) because they cause Tid Scan. Report and changes by Tsunakawa Takayuki. More... about 7 years ago
Handle MALLOC/REALLOC errors while fetching tuples more effectively. Per report from Haruka Takatsuka. More... about 7 years ago
Modify positioned-update-test. 1. Add a SQLSetPos(.., SQL_REFRESH, ..) call so that the test passes SC_pos_reload(). 2. Add a primary key to pos-update-test table(KEYSET-DRIVEN cursor needs non null int4/oid unique key). 3. Add expected/positioned-update-test_1.out for KEYSET-DRIVEN cursors. More... about 7 years ago
Oops, setting *tidval* variable in SC_pos_reload_with_key() was missing by mistake. More... about 7 years ago
Fix build for non-gcc systems More... about 7 years ago
It's safer to call setlocale(LC_CTYPE, "") than calling setlocale(LC_ALL, ""). Report and patch by Mario De Frutos. More... about 7 years ago
Avoid replacing effective notice messages. Report from Wolfgang Apolinarski. Patch by Clemens Ladisch. More... over 7 years ago
It is not appropriate to distribute test/Makefile. The file isn't in git repo and is generated depending on the environment via configure operation. More... over 7 years ago
Fix a bug in is_setting_search_path. A pointer might be incremented to point beyond the null terminator. Report and patch by Grant Shirreffs. More... over 7 years ago