summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/sqlite3
AgeCommit message (Collapse)AuthorFilesLines
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
2012-01-26Another minor improvementAndrey Andreev1-4/+4
2012-01-26Replace array_key_exists() with isset()Andrey Andreev1-5/+5
2012-01-26DB forge escaping relatedAndrey Andreev2-12/+12
2012-01-25Remove an access description line and switch private to protectedAndrey Andreev2-2/+1
2012-01-24Revert a space in the license agreement :)Andrey Andreev4-4/+4
2012-01-19Some cleaningAndrey Andreev1-18/+3
2012-01-16Replaced a method with a variableAndrey Andreev1-1/+1
2012-01-16Add a comment for CI_DB_sqlite3_result::num_rows()Andrey Andreev1-0/+3
2012-01-16Add SQLite3 database driverAndrey Andreev5-0/+1543