Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 | |
| | ||||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -2/+2 | |
| | ||||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 | |
| | ||||||
* | Additional expand_filepath() checks | Ilia Alshanetsky | 2006-09-16 | 1 | -0/+4 | |
| | ||||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 | |
| | ||||||
* | Proper error handling for persistent connections. | Ilia Alshanetsky | 2005-12-20 | 1 | -3/+3 | |
| | ||||||
* | Fixed possible memory corruption. | Ilia Alshanetsky | 2005-12-19 | 1 | -1/+10 | |
| | ||||||
* | MFH: nuke php3 legacy | foobar | 2005-12-06 | 1 | -2/+2 | |
| | ||||||
* | MFH: Allow overloading of PDO constructor. | Ilia Alshanetsky | 2005-09-20 | 1 | -0/+2 | |
| | ||||||
* | Only set authorizer if we intend to use it (safe_mode or open_basedir). | Ilia Alshanetsky | 2005-07-27 | 1 | -1/+3 | |
| | ||||||
* | implement the 'request shutdown' hook; this allows us to register UDFs on | Wez Furlong | 2005-06-10 | 1 | -11/+12 | |
| | | | | | | | | persistent handles safely. (it is dangerous to keep them registered between requests, as there are 0 guarantees that functions with the same name are even present on the next hit, let alone that the zvals we cache point to the right place. | |||||
* | add sqliteCreateAggregate() | Wez Furlong | 2005-06-10 | 1 | -32/+165 | |
| | ||||||
* | finish implementation of sqliteCreateFunction(). | Wez Furlong | 2005-06-10 | 1 | -13/+39 | |
| | ||||||
* | work in progress on UDF. | Wez Furlong | 2005-06-10 | 1 | -3/+187 | |
| | | | | | Something is hokey in HEAD, checking it in to try it on another box. | |||||
* | Alan: moved your fields away, but reserved you a pointer. | Wez Furlong | 2005-02-26 | 1 | -3/+6 | |
| | | | | | | | | | | | | | Changed PDO::lastInsertId() to have following proto: string PDO::lastInsertId([string name]) this allows arbitrary unique identitifers to be returned from the driver. The optional name parameter is for databases that require additional contextual information to be able to return the correct identifier. None currently use it, but pgsql will be on the list of drivers that do. | |||||
* | Fixed compile warnings. | Ilia Alshanetsky | 2005-02-09 | 1 | -4/+2 | |
| | ||||||
* | Add PDO_ATTR_TIMEOUT support. | Wez Furlong | 2005-02-09 | 1 | -1/+13 | |
| | | | | | Fix PECL Bug #3391 | |||||
* | 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 | |||||
* | Allow drivers to select bind emulation on a per statement basis | Wez Furlong | 2005-01-18 | 1 | -1/+1 | |
| | ||||||
* | be aware of scrollable cursors; sqlite doesn't support them | Wez Furlong | 2005-01-12 | 1 | -0/+6 | |
| | ||||||
* | jumbo commit; implement sqlstate error codes. | Wez Furlong | 2005-01-07 | 1 | -17/+36 | |
| | | | | | Bundle sqlite3 | |||||
* | hmmmmm. Bound params *were* working this way before, but now it seems that | Wez Furlong | 2004-12-26 | 1 | -1/+2 | |
| | | | | | I have to bind them as text. | |||||
* | fix build issues | Wez Furlong | 2004-12-25 | 1 | -1/+1 | |
| | ||||||
* | add entry for liveness check | Wez Furlong | 2004-09-23 | 1 | -1/+2 | |
| | ||||||
* | Use NO_PERM code here | Wez Furlong | 2004-09-19 | 1 | -1/+1 | |
| | ||||||
* | make it build on win32 | Wez Furlong | 2004-09-19 | 1 | -5/+9 | |
| | ||||||
* | Add transaction support. | Wez Furlong | 2004-09-19 | 1 | -5/+106 | |
| | | | | | Add authorizer/safe_mode support | |||||
* | First cut at a PDO driver for SQLite 3.x | Wez Furlong | 2004-09-19 | 1 | -0/+251 | |
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). |