summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/sqlite_statement.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
|
* MFB: Re-introduce the Matteo's patch and combine default & text handlingIlia Alshanetsky2009-05-201-10/+0
| | | | | since they appear to be the same irregardless on notes inside sqlite3.h
* The \0 removal is only needed prior to 3.4.0Ilia Alshanetsky2009-05-191-2/+3
|
* Revert faulty warning fixIlia Alshanetsky2009-05-191-0/+4
|
* MFHMatteo Beccati2009-05-071-5/+0
| | | | | - Fixed bug #48185 removing no-op code
* MFH: reverted previous patch, using explicit cast insteadAlexey Zakhlestin2009-04-011-15/+7
|
* MFH: const pointer was used in non-const contextAlexey Zakhlestin2009-04-011-4/+12
|
* MFH Add table key to getColumnMeta() with SQLiteScott MacVicar2009-01-131-0/+7
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug #41135 (When binding as binary data use sqlite3_bind_blob() to ↵Scott MacVicar2008-03-071-2/+33
| | | | | | | stop errors with null bytes.) Fixed bug #42443 (Bind integers and booleans as integers rather than strings.)
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #41831 (pdo_sqlite prepared statements convert resources toIlia Alshanetsky2007-08-011-1/+1
| | | | | strings).
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFH: fix #39564 (PDO::errorInfo() returns inconsistent information when ↵Antony Dovgal2006-11-271-0/+3
| | | | sqlite3_step() fails)
* bump year and license versionfoobar2006-01-011-3/+3
|
* - TSRM fixMarcus Boerger2005-09-291-1/+1
|
* Refs #34630Wez Furlong2005-09-241-5/+20
|
* MFH: reset the statement when closeCursor() is called.Wez Furlong2005-09-111-0/+2
|
* Fixed bug #33841 (pdo sqlite driver forgets to update affected column countIlia Alshanetsky2005-07-231-0/+1
| | | | | on execution of prepared statments).
* this needs to be the column count, otherwise a db->query() that returns 0 rowsWez Furlong2005-07-181-1/+1
| | | | | will fail rather than returning a statement with no rows.
* cursor_closer for SQLite.Ilia Alshanetsky2005-07-091-1/+8
|
* Fixed memory leak, after SQLITE_DONE sqlite3_data_count() always returns 0.Ilia Alshanetsky2005-07-071-1/+1
|
* fix for PECL Bug #3452Wez Furlong2005-02-281-5/+1
|
* upgrade bundled sqlite to sqlite 3.1.3Wez Furlong2005-02-271-3/+14
|
* Fixed compile warnings.Ilia Alshanetsky2005-02-091-16/+10
|
* proper fix for PECL Bug #3412Wez Furlong2005-02-091-4/+9
|
* Add PDO_ATTR_TIMEOUT support.Wez Furlong2005-02-091-4/+13
| | | | | Fix PECL Bug #3391
* updateWez Furlong2005-02-071-1/+1
|
* update for api changesWez Furlong2005-02-061-1/+1
|
* Eliminate unused parameter.Wez Furlong2005-01-211-2/+2
| | | | | | Don't start a transaction when asking for a cursor with pgsql. Fix parameter binding for sqlite3
* be aware of scrollable cursors; sqlite doesn't support themWez Furlong2005-01-121-1/+2
|
* jumbo commit; implement sqlstate error codes.Wez Furlong2005-01-071-1/+1
| | | | | Bundle sqlite3
* hmmmmm. Bound params *were* working this way before, but now it seems thatWez Furlong2004-12-261-2/+1
| | | | | I have to bind them as text.
* Removing clucking debug and tweak the reset callWez Furlong2004-09-261-2/+1
|
* meta data for sqlite3.Wez Furlong2004-09-261-1/+70
| | | | | Fix repeated executes when the entire rowset has not been consumed.
* First cut at a PDO driver for SQLite 3.xWez Furlong2004-09-191-0/+217
Features: - native prepare/execute and bound parameters. - finally supports binary data (via bound parameter api) - full unicode/utf-8 support Missing: - UDF functions - authorizer hooks for safe_mode/open_basedir restrictions You need to download, compile and install sqlite3 yourself; we're not bundling it (at least, not yet).