Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Implement sqlite_unbuffered_query(), which works similarly to the mysql | Wez Furlong | 2003-04-18 | 1 | -31/+231 | |
| | | | | | | | | | function with a similar name. Change sqlite_query() to use the same mechanism as the unbuffered query; this moves the bulk of the memory allocations into the ZE memory manager, and will hopefully be more efficient and less at risk of leaks. | |||||
* | Constants for error codes | Wez Furlong | 2003-04-17 | 1 | -0/+28 | |
| | ||||||
* | Folding markers | Wez Furlong | 2003-04-17 | 1 | -4/+4 | |
| | ||||||
* | Add two new functions: | Wez Furlong | 2003-04-17 | 1 | -22/+75 | |
| | | | | | | | | int sqlite_last_error($db) -- returns error code from last query string sqlite_error_string(int code) -- returns english description of an error code. | |||||
* | Add pecl release version to phpinfo output | Wez Furlong | 2003-04-17 | 1 | -2/+4 | |
| | ||||||
* | Add safe_mode and open_basedir checks for the COPY SQL statement. | Wez Furlong | 2003-04-17 | 1 | -0/+26 | |
| | ||||||
* | WS | Wez Furlong | 2003-04-17 | 1 | -1/+1 | |
| | ||||||
* | NULL columns are NULL pointers | Wez Furlong | 2003-04-17 | 1 | -2/+10 | |
| | ||||||
* | Implement sqlite_busy_timeout() which sets the retry timeout (in milliseconds) | Wez Furlong | 2003-04-17 | 1 | -0/+23 | |
| | | | | | when multiple processes attempt to lock and update the database. | |||||
* | Segfault fixing! | Wez Furlong | 2003-04-17 | 1 | -3/+5 | |
| | ||||||
* | Nicer error message when an invalid function name is specified. | Wez Furlong | 2003-04-17 | 1 | -2/+7 | |
| | ||||||
* | Implement a php function so that the following SQL can be used: | Wez Furlong | 2003-04-17 | 1 | -0/+79 | |
| | | | | | | | | | | | SELECT php('md5', sql) from sqlite_master The php function has takes the name of a php function to call as the first parameter; each additional parameter is passed on to the function, much like call_user_func(). You can call both built-in and script-defined functions in this way. | |||||
* | Implement sqlite_escape_string() function. | Wez Furlong | 2003-04-17 | 1 | -1/+24 | |
| | ||||||
* | Implement safe_mode and open_basedir checks. | Wez Furlong | 2003-04-17 | 1 | -1/+7 | |
| | | | | | Add package.xml | |||||
* | This commit was generated by cvs2svn to compensate for changes in r123706, | Wez Furlong | 2003-04-17 | 1 | -0/+391 | |
which included commits to RCS files with non-trunk default branches. |