History log of /PHP-5.5/ext/pdo_sqlite/sqlite_driver.c (Results 51 – 66 of 66)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# be76bd52 10-Jun-2005 Wez Furlong

work in progress on UDF.
Something is hokey in HEAD, checking it in to try it on another box.


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1
# 2c5b2fc1 26-Feb-2005 Wez Furlong

Alan: moved your fields away, but reserved you a pointer.

Changed PDO::lastInsertId() to have following proto:

string PDO::lastInsertId([string name])

this allows a

Alan: moved your fields away, but reserved you a pointer.

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.

show more ...


Revision tags: RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1
# cd6d5fb1 09-Feb-2005 Ilia Alshanetsky

Fixed compile warnings.


# 211206b2 09-Feb-2005 Wez Furlong

Add PDO_ATTR_TIMEOUT support.
Fix PECL Bug #3391


Revision tags: RELEASE_0_2
# d87c5ec2 06-Feb-2005 Wez Furlong

update for api changes


# 26f97a91 21-Jan-2005 Wez Furlong

Eliminate unused parameter.
Don't start a transaction when asking for a cursor with pgsql.
Fix parameter binding for sqlite3


# a9d98544 18-Jan-2005 Wez Furlong

Allow drivers to select bind emulation on a per statement basis


# c77bd713 12-Jan-2005 Wez Furlong

be aware of scrollable cursors; sqlite doesn't support them


# e6c282a7 07-Jan-2005 Wez Furlong

jumbo commit; implement sqlstate error codes.
Bundle sqlite3


# 823d48bd 26-Dec-2004 Wez Furlong

hmmmmm. Bound params *were* working this way before, but now it seems that
I have to bind them as text.


# c8b2f430 25-Dec-2004 Wez Furlong

fix build issues


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2
# 53ed3475 23-Sep-2004 Wez Furlong

add entry for liveness check


Revision tags: php-4.3.9
# f4060823 19-Sep-2004 Wez Furlong

Use NO_PERM code here


# 6fa469f3 19-Sep-2004 Wez Furlong

make it build on win32


# 0d4869f2 19-Sep-2004 Wez Furlong

Add transaction support.
Add authorizer/safe_mode support


# 2f161ab7 19-Sep-2004 Wez Furlong

First cut at a PDO driver for SQLite 3.x

Features:
- native prepare/execute and bound parameters.
- finally supports binary data (via bound parameter api)
- full unicode/utf-8 su

First cut at a PDO driver for SQLite 3.x

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).

show more ...


123