Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Fixed compilation warnings | Felipe Pena | 2008-03-22 | 1 | -1/+1 |
| | |||||
* | MFB: | Scott MacVicar | 2008-03-07 | 1 | -4/+35 |
| | | | | | | Fixed bug #41135 (When binding as binary data use sqlite3_bind_blob() to stop errors with null bytes.) Fixed bug #42443 (Bind integers and booleans as integers rather than strings.) | ||||
* | Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | merge php5 pdo_sqlite into head; this source compiles on both php5 and php6. | Wez Furlong | 2006-12-15 | 1 | -5/+20 |
| | |||||
* | fix #39564 (PDO::errorInfo() returns inconsistent information when ↵ | Antony Dovgal | 2006-11-27 | 1 | -0/+3 |
| | | | | sqlite3_step() fails) | ||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | |||||
* | actually reset the statement when closeCursor() is called. | Wez Furlong | 2005-09-11 | 1 | -0/+2 |
| | |||||
* | Fixed bug #33841 (pdo sqlite driver forgets to update affected column count | Ilia Alshanetsky | 2005-07-23 | 1 | -0/+1 |
| | | | | | on execution of prepared statments). | ||||
* | this needs to be the column count, otherwise a db->query() that returns 0 rows | Wez Furlong | 2005-07-18 | 1 | -1/+1 |
| | | | | | will fail rather than returning a statement with no rows. | ||||
* | cursor_closer for SQLite. | Ilia Alshanetsky | 2005-07-09 | 1 | -1/+8 |
| | |||||
* | Fixed memory leak, after SQLITE_DONE sqlite3_data_count() always returns 0. | Ilia Alshanetsky | 2005-07-07 | 1 | -1/+1 |
| | |||||
* | fix for PECL Bug #3452 | Wez Furlong | 2005-02-28 | 1 | -5/+1 |
| | |||||
* | upgrade bundled sqlite to sqlite 3.1.3 | Wez Furlong | 2005-02-27 | 1 | -3/+14 |
| | |||||
* | Fixed compile warnings. | Ilia Alshanetsky | 2005-02-09 | 1 | -16/+10 |
| | |||||
* | proper fix for PECL Bug #3412 | Wez Furlong | 2005-02-09 | 1 | -4/+9 |
| | |||||
* | Add PDO_ATTR_TIMEOUT support. | Wez Furlong | 2005-02-09 | 1 | -4/+13 |
| | | | | | Fix PECL Bug #3391 | ||||
* | update | Wez Furlong | 2005-02-07 | 1 | -1/+1 |
| | |||||
* | update for api changes | Wez Furlong | 2005-02-06 | 1 | -1/+1 |
| | |||||
* | Eliminate unused parameter. | Wez Furlong | 2005-01-21 | 1 | -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 them | Wez Furlong | 2005-01-12 | 1 | -1/+2 |
| | |||||
* | jumbo commit; implement sqlstate error codes. | Wez Furlong | 2005-01-07 | 1 | -1/+1 |
| | | | | | Bundle sqlite3 | ||||
* | hmmmmm. Bound params *were* working this way before, but now it seems that | Wez Furlong | 2004-12-26 | 1 | -2/+1 |
| | | | | | I have to bind them as text. | ||||
* | Removing clucking debug and tweak the reset call | Wez Furlong | 2004-09-26 | 1 | -2/+1 |
| | |||||
* | meta data for sqlite3. | Wez Furlong | 2004-09-26 | 1 | -1/+70 |
| | | | | | Fix repeated executes when the entire rowset has not been consumed. | ||||
* | First cut at a PDO driver for SQLite 3.x | Wez Furlong | 2004-09-19 | 1 | -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). |