summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix windows buildEdin Kadribasic2003-06-271-0/+2
|
* errmsg must be refMarcus Boerger2003-06-261-1/+1
|
* Rename sqlite_fetch_string() to sqlite_fetch_single() + aliasMarcus Boerger2003-06-261-8/+9
|
* Fix memleakMarcus Boerger2003-06-261-0/+9
|
* Fix a warningMarcus Boerger2003-06-251-2/+5
|
* ZTS typoIlia Alshanetsky2003-06-251-2/+2
|
* Don't pass resource as an argument when its not being parsed.Sterling Hughes2003-06-251-1/+1
|
* Added sqlite_single_query() and it's OO equivalent single_query().Ilia Alshanetsky2003-06-251-34/+116
|
* port sqlite_array_query() fix from PHP_4_3Ilia Alshanetsky2003-06-231-3/+14
|
* Remove sqlite::close()Marcus Boerger2003-06-221-1/+1
|
* Add oo APIMarcus Boerger2003-06-221-123/+629
|
* Prepare for 1.0 releaseWez Furlong2003-06-211-1/+1
|
* Add a pair of functions to handle the binary coding used by PHP from withinWez Furlong2003-06-211-2/+63
| | | | | | | | UDF callbacks. Add test for binary functions. Fix proto.
* Some tweaks ready for the upcoming 1.0 release.Wez Furlong2003-06-191-6/+19
|
* Should build with PHP5 now...Wez Furlong2003-06-181-1/+1
|
* - Update licenseMarcus Boerger2003-06-141-29/+44
| | | | | - Don't buffer in non buffered mode
* - Add sqlite_array_query().Marcus Boerger2003-06-091-36/+86
| | | | | - Make all read functions destructive when in unbuffered read mode.
* Do not perform safe_mode & open_basedir checks for memory-only databases.Ilia Alshanetsky2003-06-091-12/+18
|
* WSMarcus Boerger2003-06-071-6/+6
|
* Update bundled library to 2.8.3 + patches from sqlite author to enableWez Furlong2003-06-061-0/+14
| | | | | authorization checks for the ATTACH database command.
* New fetch_all() an fetch optimization reworked (original idea by ilia)Marcus Boerger2003-06-061-26/+53
|
* Update bundled library to version 2.8.2.Wez Furlong2003-06-041-3/+10
| | | | | | Make OnUpdateInt compatible with ZE2. Fix the makefile fragment for non-gnu makes
* Revert accidental commit from marcus.Wez Furlong2003-06-041-530/+101
|
* Goodbye namespacesMarcus Boerger2003-06-041-101/+530
|
* Prep for next releaseWez Furlong2003-05-141-1/+1
|
* Added sqlite_fetch_string(), for speedy fetching of data from databaseIlia Alshanetsky2003-05-131-0/+51
| | | | | cursor containing only a single column.
* - Indendation fixMarcus Boerger2003-05-031-6/+85
| | | | | | - Proto fix - Add efficient single column access function: sqlite_column()
* Fix MFN error (now really)Marcus Boerger2003-05-021-1/+2
|
* Fix MFN errorMarcus Boerger2003-05-021-7/+6
|
* Add iterator interface and testMarcus Boerger2003-05-021-96/+181
|
* Don't return table namesMarcus Boerger2003-05-011-7/+11
|
* Allow both parameter orderingsMarcus Boerger2003-04-301-1/+3
|
* Allow to set result_type default for each queryMarcus Boerger2003-04-301-4/+13
|
* Seems like a better fix..Wez Furlong2003-04-271-8/+4
|
* More safe_emalloc()Marcus Boerger2003-04-271-3/+7
|
* WS, plus default: would prevent case SQLITE_DONE: in php_sqlite_fetch().Wez Furlong2003-04-271-16/+17
|
* Enable some more functions with unbuffered queriesMarcus Boerger2003-04-271-107/+118
|
* win32 fixesWez Furlong2003-04-221-0/+9
|
* Add windows .dsp and some kludgy pre-generated headers.Wez Furlong2003-04-221-0/+1
|
* I will use my brain properly next timeWez Furlong2003-04-221-1/+1
|
* allow sqlite_query() to accept the query string and database resource inWez Furlong2003-04-221-2/+4
| | | | | | | | either order. Forgot to bump the package version number displayed by phpinfo()... Bump to 0.9a
* Added sqlite.assoc_case ini entry with 0 as the default value.Edin Kadribasic2003-04-221-0/+44
| | | | | | | 0 - Make no changes to the keys in the associative array 1 - Change the keys to uppercase 2 - Change the keys to lowercase
* Eliminate leaks from registering plain or aggregate functions.Wez Furlong2003-04-201-32/+144
| | | | | | | Also, reduce (probably eliminate) the risk of a segfault when registering a callback on a persistent connection and later triggering the callback from a different script.
* Implement sqlite_create_function(), which allows binding of php functions byWez Furlong2003-04-201-3/+104
| | | | | | | | | | | | | name; this is a higher performance alternative to the generic php() SQL function. (saves parsing the additional function call in the SQL and a call to zend_is_callable on each function invocation). Add test for sqlite_create_function(). Fixup proto for sqlite_create_aggregate(). Tweak package file and speling in header file.
* Remove rendundant functionTal Peer2003-04-201-14/+0
|
* UpdateTal Peer2003-04-201-1/+2
|
* Implement sqlite_create_aggregate() which can be used to create aggregationWez Furlong2003-04-201-0/+166
| | | | | functions for use in SQL statements.
* Transparently decode binary encoded data.Wez Furlong2003-04-191-12/+45
| | | | | | | | | | | Add a test-case for that process. When encoding binary data, we mark the string with \x01 as its first character. When returning data via sqlite_fetch_array(), if the first character is \x01, then we decode the encoding. This behaviour can be turned off by the optional last parameter to sqlite_fetch_array(), for compatibility with databases created with other applications.
* Fix 2 potential segfaults.Wez Furlong2003-04-191-3/+4
|
* ZTS fixesMarcus Boerger2003-04-181-0/+4
|