Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: Fix bug #30147 OO sqlite_fetch_object did not reset error handler | Wez Furlong | 2004-09-26 | 1 | -0/+1 |
| | |||||
* | MFH: Allow sqlite_fetch_column_types() to properly handle table names with | Ilia Alshanetsky | 2004-08-02 | 1 | -1/+1 |
| | | | | | spaces in them. | ||||
* | MFH: Fixed bug 29395 (sqlite_escape_string() returns bogus data on empty | Ilia Alshanetsky | 2004-07-27 | 1 | -1/+3 |
| | | | | | strings). | ||||
* | Touch the file so that build system does not try to rebuild it. | Ilia Alshanetsky | 2004-07-12 | 1 | -1/+1 |
| | |||||
* | Fix #28402: no need for -ldl | Wez Furlong | 2004-07-10 | 1 | -1/+1 |
| | |||||
* | Bump PHP 5 sqlite extension number to 2.0 | Wez Furlong | 2004-07-10 | 2 | -2/+2 |
| | | | | | (put some distance between it and the 4.3 version) | ||||
* | Upgrade bundled library to 2.8.14 + misc fixes | Wez Furlong | 2004-07-10 | 43 | -5463/+5857 |
| | | | | | (http://www.sqlite.org/cvstrac/chngview?cn=1742) | ||||
* | 64-bit bugsquash party | Ard Biesheuvel | 2004-06-16 | 1 | -12/+12 |
| | |||||
* | Allow sqlite to build as a shared ext under win32 | Wez Furlong | 2004-05-25 | 1 | -1/+1 |
| | |||||
* | add sqlite_exec() | Stanislav Malyshev | 2004-05-13 | 2 | -0/+42 |
| | |||||
* | - Added missing UNREGISTER_INI_ENTRIES | Marcus Boerger | 2004-05-12 | 1 | -1/+7 |
| | |||||
* | - HTML entity to ISO char. | Derick Rethans | 2004-04-30 | 1 | -1/+1 |
| | |||||
* | An oumlaut doesn't work here, need ASCII only | Marcus Boerger | 2004-04-29 | 1 | -1/+1 |
| | |||||
* | Avoid warning to interfere test result | Marcus Boerger | 2004-04-22 | 1 | -2/+2 |
| | |||||
* | Empty query checks, bug #28112. | Ilia Alshanetsky | 2004-04-22 | 1 | -0/+14 |
| | |||||
* | Add test for bug #28112 | Marcus Boerger | 2004-04-22 | 1 | -0/+14 |
| | |||||
* | bugfix #28112 | Marcus Boerger | 2004-04-22 | 1 | -1/+3 |
| | |||||
* | Open basedir & safe_mode exception when copying or attaching to a memory | Ilia Alshanetsky | 2004-04-11 | 1 | -2/+2 |
| | | | | | only database. | ||||
* | Fixed bug #27928 (sqlite incorrectly handles invalid filenames). | Ilia Alshanetsky | 2004-04-09 | 1 | -0/+6 |
| | |||||
* | Increase severity level and use a more precise error message. | Marcus Boerger | 2004-04-03 | 3 | -3/+3 |
| | |||||
* | Fix class names | Marcus Boerger | 2004-03-29 | 8 | -24/+24 |
| | |||||
* | Fix writing of SQLite and SimpleXMl extension and add Rob to the credits | Marcus Boerger | 2004-03-28 | 2 | -2/+2 |
| | | | | | line of the latter. Add ext/SPL. | ||||
* | Change to studlyCaps convention | Marcus Boerger | 2004-03-26 | 21 | -84/+84 |
| | | | | | # Hopefully discussed enough this time | ||||
* | Revert studlyCaps change for now | Marcus Boerger | 2004-03-23 | 21 | -84/+84 |
| | | | | | # until we reach a point where the majority knows what they want | ||||
* | Consitency rules | Marcus Boerger | 2004-03-23 | 15 | -34/+34 |
| | |||||
* | Changed sqlite's OO API to studlyCaps. | Marcus Boerger | 2004-03-23 | 21 | -84/+84 |
| | |||||
* | Fix test | Marcus Boerger | 2004-03-19 | 1 | -1/+1 |
| | | | | | # removing string conversion was a stupid idea | ||||
* | Fix test | Marcus Boerger | 2004-03-19 | 1 | -4/+3 |
| | |||||
* | Make test work when user has memory limit setting | Marcus Boerger | 2004-03-19 | 1 | -0/+2 |
| | |||||
* | Test was fixed | Dmitry Stogov | 2004-03-17 | 1 | -3/+1 |
| | |||||
* | Typo | Martin Kraemer | 2004-03-10 | 1 | -1/+1 |
| | |||||
* | Fix function declaration. | Ilia Alshanetsky | 2004-03-09 | 1 | -1/+1 |
| | |||||
* | Change float operations to safe_emalloc(). | Ilia Alshanetsky | 2004-03-09 | 1 | -2/+2 |
| | | | | | Original idea by Sascha (see sess_sqlite.c) | ||||
* | More wordsize fixes | Ard Biesheuvel | 2004-03-08 | 3 | -4/+4 |
| | |||||
* | Rename hasMore() to valid() as discussed. (Part II) | Marcus Boerger | 2004-03-08 | 7 | -20/+21 |
| | |||||
* | Rename hasMore() to valid() as discussed. (Part I) | Marcus Boerger | 2004-03-08 | 8 | -12/+16 |
| | |||||
* | Avoid using floating point arithmetic and rely on safe_emalloc | Sascha Schumann | 2004-03-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | for the multiplication. The actual size requirement is spelled out as: ** The result is written into a preallocated output buffer "out". ** "out" must be able to hold at least 2 +(257*n)/254 bytes. ** In other words, the output will be expanded by as much as 3 ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead. ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.) | ||||
* | Corrected string escape calculation. | Ilia Alshanetsky | 2004-03-07 | 2 | -3/+3 |
| | |||||
* | Use correct variable name. | Ilia Alshanetsky | 2004-03-06 | 1 | -1/+1 |
| | |||||
* | Fixed a possible memory leaks inside sqlite_popen() & | Ilia Alshanetsky | 2004-03-06 | 1 | -12/+19 |
| | | | | | | sqlite_fetch_column_types(). Resolve the file path inside sqlite_factory(). | ||||
* | Fixed possible crash due to an integer overflow. | Ilia Alshanetsky | 2004-03-06 | 1 | -2/+2 |
| | |||||
* | Better extension availability check. | Ilia Alshanetsky | 2004-03-06 | 1 | -0/+3 |
| | |||||
* | Fixed possible crash inside sqlite_escape_string() and | Ilia Alshanetsky | 2004-02-27 | 2 | -2/+15 |
| | | | | | sqlite_udf_encode_binary(). | ||||
* | Wordsize fixes | Ard Biesheuvel | 2004-02-25 | 1 | -7/+7 |
| | |||||
* | More wordsize/alignment fixes | Ard Biesheuvel | 2004-02-24 | 1 | -16/+16 |
| | |||||
* | 64-bit fixes | Ard Biesheuvel | 2004-02-23 | 1 | -1/+1 |
| | |||||
* | 64-bit fix | Ard Biesheuvel | 2004-02-23 | 1 | -1/+1 |
| | |||||
* | Fix 64-bit crash | Ard Biesheuvel | 2004-02-22 | 1 | -1/+1 |
| | |||||
* | For get_data iterator do not force numeric keys, return keys the user | Ilia Alshanetsky | 2004-02-15 | 1 | -1/+1 |
| | | | | | requests. | ||||
* | Fixed a crash inside create_aggregate() method due to incorrect argument | Ilia Alshanetsky | 2004-02-15 | 1 | -1/+1 |
| | | | | | parsing. |