summaryrefslogtreecommitdiff
path: root/ext/pdo/pdo_sqlstate.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* move about 3K of data to the const area. also reduce memory usage (~ -266 ↵Nuno Lopes2008-01-251-4/+4
| | | | bytes :P)
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Add sqlstates defined in PostgreSQL documentation.Edin Kadribasic2005-07-011-3/+150
| | | | | Source: http://www.postgresql.org/docs/8.0/static/errcodes-appendix.html
* Added class 55 sqlstatesEdin Kadribasic2005-07-011-0/+3
|
* Remove "custom" PDDRV sqlstate.Ilia Alshanetsky2005-06-271-2/+1
|
* Missing part of the previous patch.Ilia Alshanetsky2005-06-241-1/+2
|
* fix encoding nastiness that snuck in from the copy-n-paste of error codeWez Furlong2005-01-211-3/+3
| | | | | descriptions from a web page.
* API support for scrollable cursorsWez Furlong2005-01-121-1/+1
|
* implement SQLSTATE style error codes.Wez Furlong2005-01-071-0/+190
Allow drivers to add methods to dbh and stmt objects (note that we can't use a class, because the use only sees the PDO class). Clarify the api slightly: PDO::exec() is used for one-shot queries that don't return rows PDO::query() is a convenience function for returning a rowset without having to go through the steps of preparing and executing.