summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/sqlite3
AgeCommit message (Collapse)AuthorFilesLines
2012-11-13Add seed values support for Query Builder order_byAndrey Andreev1-2/+2
(feature request #1987)
2012-11-06Fix a lang key typoAndrey Andreev1-1/+1
2012-11-06Added possibility to pass custom database objects to DB Forge and DB UtilitiesAndrey Andreev1-2/+3
Also, their property is no longer public and the utility class no longer extends CI_DB_forge.
2012-11-05Refactored DB ForgeAndrey Andreev1-99/+102
- PDO subdrivers are isolated from each other now. - Added compatibility for pretty much all of the features, for every DB platform. - Unified the way that stuff works in general. - Fixes issue #1005.
2012-11-02[ci skip] DocBlocks for DB drivers' driver classesAndrey Andreev1-13/+24
Partially fixes issue #1295.
2012-11-02[ci skip] DocBlocks for DB drivers' result classesAndrey Andreev1-9/+4
Partially fixes issue #1295.
2012-11-02[ci skip] DocBlocks for DB drivers' utility classesAndrey Andreev1-4/+2
Partially fixes issue #1295.
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev4-4/+8
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-10-24[ci skip] style and phpdoc-related changes (rel #1295)Andrey Andreev2-3/+4
2012-10-05Fix SQLite3 DB error handlingAndrey Andreev1-15/+6
2012-10-04Fix issue #1789Andrey Andreev1-4/+0
Signed-off-by: Andrey Andreev <narf@bofh.bg>
2012-07-13Some adjustments in inline documentationvlakoff3-3/+3
2012-07-06_fetch_object(), custom_result_object() to utilize PHP's native capability ↵Andrey Andreev1-7/+22
to directly return custom class results
2012-07-05Add a default _count_string propertyAndrey Andreev1-6/+0
2012-07-05Clean-up the separate drivers' DB result classes from no longer needed methodsAndrey Andreev1-447/+0
2012-07-05Change DB_result::num_rows default value to NULLAndrey Andreev1-3/+1
2012-06-24Add a default _limit() method to the Query Builder classAndrey Andreev1-17/+0
2012-06-11Fix issue #1264Andrey Andreev1-0/+8
2012-06-08escape_identifiers() to accept arrays as wellAndrey Andreev1-2/+2
2012-06-08Add a default _from_tables() method to CI_DB_query_builder and remove it ↵Andrey Andreev1-21/+0
from most of the drivers
2012-06-08Revert back some escape_identifiers() to proect_identifiers() as the first ↵Andrey Andreev1-3/+2
one can't handle arrays
2012-06-08Resolve formatting differences between DB forge driversAndrey Andreev1-17/+26
2012-06-04Alter SQLite3's version() method and clear some spacesAndrey Andreev1-1/+1
2012-06-04Fix an SQLite3 pconnect() bug + other minor changesAndrey Andreev1-1/+1
2012-06-02Fixing final SQLite bug introduced in 48a2baf0e288accd206f5da5031d29076e130792Alex Bilbie1-1/+1
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/databaseAlex Bilbie2-2/+2
2012-05-26Move count_all() from the drivers to CI_DB_driverAndrey Andreev1-24/+0
2012-05-24Fix issue #121Andrey Andreev1-8/+8
2012-05-23Removed the parameter use in database drivers' _close() and added a default ↵Andrey Andreev1-2/+1
_close() method in CI_DB_driver + some changelog fixes
2012-04-26A couple more documentation updatesJamie Rumbelow1-1/+1
2012-04-12Changed default CI_DB_result::_data_seek() return value to FALSE and removed ↵Andrey Andreev1-4/+0
the method from drivers that don't support it
2012-04-09Add a parameter to SQLite3 and PDO _close() due to CI_DB_driver being abstractAndrey Andreev1-1/+2
2012-04-09DB Utility improvementsAndrey Andreev1-51/+2
- Replaced driver methods _list_databases(), _optimize_table() and _repair_table() with properties - Added defaults for optimize_table() and repair_table() SQL strings (FALSE, as those are mostly MySQL-specific) - Added MSSQL/SQLSRV support for optimize_table() (actually rebuilds table indexes) - Switched public driver methods to protected - Improved CUBRID support for list_databases() as it used to only return the currently used database - Minor speed improvements
2012-04-09Switched public driver methods in DB forge to protectedAndrey Andreev1-2/+2
2012-04-09Multiple DB Forge improvementsAndrey Andreev3-46/+18
- Replaced driver methods _create_database(), _drop_database(), _drop_table() and _rename_table() with properties - Added defaults for the above mentioned platform-specific queries, so that not all drivers need to define them - Improved support for the SQLite, ODBC and PDO drivers
2012-04-09Added a default _delete() method to CI_DB_active_recordAndrey Andreev1-29/+0
2012-04-06Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵Andrey Andreev2-39/+2
CI_DB_driver
2012-04-05Added a default _truncate() method to CI_DB_active_recordAndrey Andreev1-4/+5
2012-04-05Add replace() support for SQLite/SQLite3Andrey Andreev1-8/+26
2012-04-05Added a default _update() method to CI_DB_active_recordAndrey Andreev1-27/+0
2012-04-05Replaced driver instances of _insert() with one in CI_DB_active_recordAndrey Andreev1-17/+0
2012-04-02Merge upstream branchAndrey Andreev1-13/+0
2012-03-23Remove no longer needed reconnect() methodAndrey Andreev1-15/+0
2012-03-20Remove unused _prep_query() methodAndrey Andreev4-20/+6
2012-03-12Fix escape_str() and change _prep_query() to just return the queryAndrey Andreev1-4/+3
2012-03-12Fix _limit()Andrey Andreev1-1/+1
2012-03-09_protect_identifiers() to protect_identifier()Andrey Andreev1-2/+2
2012-03-03Merge upstream branchAndrey Andreev1-3/+9
2012-03-02Change SQLite3 _execute to use is_write_type()Andrey Andreev1-6/+4
2012-03-01Remove SQLite3 db_set_charset() - no longer neededAndrey Andreev1-15/+0