summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/interbase
AgeCommit message (Collapse)AuthorFilesLines
2012-06-08Add a default _from_tables() method to CI_DB_query_builder and remove it ↵Andrey Andreev1-7/+1
from most of the drivers
2012-06-08Revert back some escape_identifiers() to proect_identifiers() as the first ↵Andrey Andreev1-2/+2
one can't handle arrays
2012-06-08Resolve formatting differences between DB forge driversAndrey Andreev1-60/+22
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/databaseAlex Bilbie2-3/+3
2012-05-26Move count_all() from the drivers to CI_DB_driverAndrey Andreev1-29/+0
2012-05-23Removed the parameter use in database drivers' _close() and added a default ↵Andrey Andreev1-3/+2
_close() method in CI_DB_driver + some changelog fixes
2012-05-05Merge pull request #1325 from st2/developAndrey Andreev1-1/+1
Update system/database/drivers/interbase/interbase_utility.php
2012-05-04Update system/database/drivers/interbase/interbase_utility.phpCusco1-1/+1
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-17/+0
the method from drivers that don't support it
2012-04-09DB Utility improvementsAndrey Andreev1-60/+7
- 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-09Multiple DB Forge improvementsAndrey Andreev1-39/+20
- 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-09Add back limit parameter to Interbase and PostgreSQL _delete() due to ↵Andrey Andreev1-1/+2
CI_DB_active_record being abstract
2012-04-09Added a default _delete() method to CI_DB_active_recordAndrey Andreev1-14/+6
2012-04-09Extend fix for #798 to work across all DB drivers instead of just mysqlAndrey Andreev1-4/+10
2012-04-06Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵Andrey Andreev1-32/+0
CI_DB_driver
2012-04-05Added a default _truncate() method to CI_DB_active_recordAndrey Andreev1-3/+4
2012-04-05Replaced driver instances of _insert() with one in CI_DB_active_recordAndrey Andreev1-17/+0
2012-03-28Add a dummy db_select() method to CI_DB_driver and remove it from drivers ↵Andrey Andreev1-13/+0
that don't have such functionality
2012-03-23Add dummy method reconnect() method to CI_DB_driver and remove it from ↵Andrey Andreev1-15/+0
drivers that don't support it
2012-03-20Some small improvements to CI_DB_interbase_resultAndrey Andreev2-52/+35
2012-03-20Some small improvements to CI_DB_interbase_driverAndrey Andreev1-96/+49
2012-03-20Remove extraneous newlinesTimothy Warren1-1/+1
2012-03-19Removed pointless _prep_sql methodsTimothy Warren1-16/+0
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-2/+1
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon4-4/+4
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-06Resolve _protect_identifiers()/protect_identifiers() usage issuesAndrey Andreev1-2/+1
2012-03-03Improve DB version() implementation and add pg_version() supportAndrey Andreev1-5/+10
2012-03-02Removed db_set_charset() from Interbase driver (no longer needed)Andrey Andreev1-15/+0
2012-03-02Replace Interbase _error_message(), _error_number() with the new error() methodAndrey Andreev1-29/+19
2012-03-01Fix 'skip' section of limit clauseTimothy Warren1-1/+1
2012-02-29Finally figured out limit statementTimothy Warren1-1/+25
2012-02-22Close services after using them, added dbutil->backup() methodTimothy Warren2-5/+18
2012-02-21More formatting fixesTimothy Warren3-4/+4
2012-02-21Made tranaaction functions return their actual valueTimothy Warren1-6/+2
2012-02-21More style fixes, replaced _protect_identifiers with protect_identifiers in ↵Timothy Warren2-11/+11
db_forge
2012-02-21Minor formatting fixesTimothy Warren1-4/+4
2012-02-20Fix counting issue, minor formattingTimothy Warren2-9/+15
2012-02-20Set protected visibility on applicable functions/propertiesTimothy Warren3-32/+30
2012-02-20Convert result_array to result_object instead of re-fetchingTimothy Warren1-1/+26
2012-02-20Revert previous commitTimothy Warren1-5/+1
2012-02-20Revert "Fix previous commit"Timothy Warren1-5/+1
This reverts commit 53d109dbd831506c4b9ca77f10bc1b2dba9c28d5.
2012-02-20Fixed insert_id possibly returning 0Timothy Warren1-1/+6
2012-02-20Fix previous commitTimothy Warren1-1/+5
2012-02-20Fixed result array fetchingTimothy Warren1-1/+9
2012-02-20Properly escape generator nameTimothy Warren1-1/+1
2012-02-17Automatic retreival of blob fieldsTimothy Warren1-2/+2
2012-02-17implemented create_database, misc cleanupTimothy Warren2-21/+16
2012-02-17More general fix for num_rowsTimothy Warren2-54/+4
2012-02-17Workaround to fix methodTimothy Warren2-0/+115