summaryrefslogtreecommitdiff
path: root/ext/pdo_odbc/odbc_driver.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove some compilation warnings:Christopher Jones2013-08-201-1/+1
| | | | | 'unused variable' and 'enumeration value not handled in switch'
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Fixed bug #63236 (Executable permission on various source files)Xinchen Hui2012-10-091-0/+0
|
* Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec)Xinchen Hui2012-10-091-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Fixed data type usage in 64bitFelipe Pena2011-06-271-1/+1
| | | | | Reported by: Leonildo Costa
* - Year++Felipe Pena2011-01-011-1/+1
|
* Fixed bug #50728 (All PDOExceptions hardcode 'code' property to 0)Ilia Alshanetsky2010-01-121-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - MFH: Fixed bug #48913 (Too long error code strings in pdo_odbc driver)Felipe Pena2009-07-151-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* [DOC] adds new odbc driver specific ODBC_ATTR_ASSUME_UTF8 to deal with ↵Elizabeth Marie Smith2008-03-131-1/+21
| | | | unicode coming out of Microsoft SQL Server and is only relevant on windows, use it if unicode output from the server is garbled and it will autoconvert text - original patch by wez
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Fix for PECL bug #8944. Could also be the same problem as pecl #7775.Wez Furlong2006-10-111-1/+1
|
* Fix #36632Wez Furlong2006-04-301-0/+8
|
* Fix #35552Wez Furlong2006-04-301-3/+11
|
* Possible fixes for #35552, #35592 and #35620.Wez Furlong2005-12-141-9/+34
|
* ensure that this size is initialized correctlyWez Furlong2005-09-261-1/+5
|
* if we didn't detect an error, don't return -1 rows, as that means that we ↵Wez Furlong2005-07-191-0/+3
| | | | found an error
* Fix #33624, mysterious crashes on shutdown on win32Wez Furlong2005-07-101-11/+9
|
* Related to #33624. Crashes for me on shutdown, but seems ok for the rest of ↵Wez Furlong2005-07-091-1/+1
| | | | the world.
* Fix handling of parameter binding.Wez Furlong2005-07-071-17/+17
| | | | | | | | | | We need to guess at parameter sizing in some cases (eg: MS Access) as the SQLDescribeParam() API is an optional feature. Tidy up error handling. Add workaround for a shutdown bug that I see with MS ODBC implementation. (working to determine the precise cause of this). PDO core test suite now passes all tests.
* hunting for a bug. Looks like it might be yet-another-mysterious-shutdown ↵Wez Furlong2005-06-111-13/+12
| | | | problem.
* Fix for PECL #3714: beginTransaction doesn't work if you're in auto-commit mode.Wez Furlong2005-06-111-2/+32
|
* support getting some more attributesWez Furlong2005-02-061-2/+18
|
* Allow static build (better detection of PDO headers).Wez Furlong2005-01-211-1/+4
| | | | | | Copy error code into driver code, so PDO can handle it correctly. Less leaks
* make use of the query rewriter (even though it doesn't do anything yet)Wez Furlong2005-01-211-25/+25
|
* Eliminate unused parameter.Wez Furlong2005-01-211-1/+1
| | | | | | Don't start a transaction when asking for a cursor with pgsql. Fix parameter binding for sqlite3
* allow static linkage.Wez Furlong2005-01-191-1/+2
| | | | | Avoid segv when no username is passed
* Allow drivers to select bind emulation on a per statement basisWez Furlong2005-01-181-1/+1
|
* tidy up a few thingsWez Furlong2005-01-171-7/+23
|
* remove error map; odbc speaks SQLSTATE nativelyWez Furlong2005-01-071-56/+7
|
* more method table adjustments.Wez Furlong2004-09-231-0/+1
| | | | | | mysql driver needs work with the error message stuff. Other drivers need a bit more auditing...
* Allow use of scrollable cursor for ODBCWez Furlong2004-05-251-1/+21
|
* Add flag to control the use of the ODBC cursor emulation library.Wez Furlong2004-05-251-0/+10
| | | | | | | The default (which should be safe) is to use the cursor library if it is needed. If for some reason either the driver or the emulation is broken, you may override this from your script.
* Fix buglet in dbh closing.Wez Furlong2004-05-221-2/+2
|
* Enable ODBC Connection Pooling.Wez Furlong2004-05-221-0/+11
| | | | | | | | | | | | | | | | | Theoretically better than PHP persistent connections, since ODBC itself takes care of resetting the connections back to a "ground" state. Connection pooling defaults to ON, since this is generally useful. You can turn it off by using: pdo_odbc.connection_pooling=off in your php.ini file. You may configure how ODBC matches connection details to existing connections by setting this value to "strict" (the default) or "relaxed". You are encouraged to read the ODBC specs before changing this value.
* ok MSVC, why didn't you spot *that* one??Wez Furlong2004-05-221-4/+4
|
* Fix doer()Wez Furlong2004-05-221-23/+130
| | | | | Implement error handling for ODBC
* Implement ODBC doer.Ilia Alshanetsky2004-05-211-1/+15
|
* Fix return type here tooWez Furlong2004-05-211-1/+1
|
* Update for placeholder flagsWez Furlong2004-05-211-3/+3
|
* update prototypeWez Furlong2004-05-191-1/+1
|
* Update to match new prototypeWez Furlong2004-05-181-1/+1
|
* ODBC (v3 ish) driver for PDO.Wez Furlong2004-05-171-0/+248
Will not build under unix yet.