Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-04-09 | DB Utility improvements | Andrey Andreev | 1 | -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-09 | Multiple DB Forge improvements | Andrey Andreev | 1 | -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-09 | Add back limit parameter to Interbase and PostgreSQL _delete() due to ↵ | Andrey Andreev | 1 | -1/+2 | |
CI_DB_active_record being abstract | |||||
2012-04-09 | Added a default _delete() method to CI_DB_active_record | Andrey Andreev | 1 | -14/+6 | |
2012-04-09 | Extend fix for #798 to work across all DB drivers instead of just mysql | Andrey Andreev | 1 | -4/+10 | |
2012-04-06 | Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵ | Andrey Andreev | 1 | -32/+0 | |
CI_DB_driver | |||||
2012-04-05 | Added a default _truncate() method to CI_DB_active_record | Andrey Andreev | 1 | -3/+4 | |
2012-04-05 | Replaced driver instances of _insert() with one in CI_DB_active_record | Andrey Andreev | 1 | -17/+0 | |
2012-03-28 | Add a dummy db_select() method to CI_DB_driver and remove it from drivers ↵ | Andrey Andreev | 1 | -13/+0 | |
that don't have such functionality | |||||
2012-03-23 | Add dummy method reconnect() method to CI_DB_driver and remove it from ↵ | Andrey Andreev | 1 | -15/+0 | |
drivers that don't support it | |||||
2012-03-20 | Some small improvements to CI_DB_interbase_result | Andrey Andreev | 2 | -52/+35 | |
2012-03-20 | Some small improvements to CI_DB_interbase_driver | Andrey Andreev | 1 | -96/+49 | |
2012-03-20 | Remove extraneous newlines | Timothy Warren | 1 | -1/+1 | |
2012-03-19 | Removed pointless _prep_sql methods | Timothy Warren | 1 | -16/+0 | |
2012-03-09 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 1 | -2/+1 | |
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 4 | -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-06 | Resolve _protect_identifiers()/protect_identifiers() usage issues | Andrey Andreev | 1 | -2/+1 | |
2012-03-03 | Improve DB version() implementation and add pg_version() support | Andrey Andreev | 1 | -5/+10 | |
2012-03-02 | Removed db_set_charset() from Interbase driver (no longer needed) | Andrey Andreev | 1 | -15/+0 | |
2012-03-02 | Replace Interbase _error_message(), _error_number() with the new error() method | Andrey Andreev | 1 | -29/+19 | |
2012-03-01 | Fix 'skip' section of limit clause | Timothy Warren | 1 | -1/+1 | |
2012-02-29 | Finally figured out limit statement | Timothy Warren | 1 | -1/+25 | |
2012-02-22 | Close services after using them, added dbutil->backup() method | Timothy Warren | 2 | -5/+18 | |
2012-02-21 | More formatting fixes | Timothy Warren | 3 | -4/+4 | |
2012-02-21 | Made tranaaction functions return their actual value | Timothy Warren | 1 | -6/+2 | |
2012-02-21 | More style fixes, replaced _protect_identifiers with protect_identifiers in ↵ | Timothy Warren | 2 | -11/+11 | |
db_forge | |||||
2012-02-21 | Minor formatting fixes | Timothy Warren | 1 | -4/+4 | |
2012-02-20 | Fix counting issue, minor formatting | Timothy Warren | 2 | -9/+15 | |
2012-02-20 | Set protected visibility on applicable functions/properties | Timothy Warren | 3 | -32/+30 | |
2012-02-20 | Convert result_array to result_object instead of re-fetching | Timothy Warren | 1 | -1/+26 | |
2012-02-20 | Revert previous commit | Timothy Warren | 1 | -5/+1 | |
2012-02-20 | Revert "Fix previous commit" | Timothy Warren | 1 | -5/+1 | |
This reverts commit 53d109dbd831506c4b9ca77f10bc1b2dba9c28d5. | |||||
2012-02-20 | Fixed insert_id possibly returning 0 | Timothy Warren | 1 | -1/+6 | |
2012-02-20 | Fix previous commit | Timothy Warren | 1 | -1/+5 | |
2012-02-20 | Fixed result array fetching | Timothy Warren | 1 | -1/+9 | |
2012-02-20 | Properly escape generator name | Timothy Warren | 1 | -1/+1 | |
2012-02-17 | Automatic retreival of blob fields | Timothy Warren | 1 | -2/+2 | |
2012-02-17 | implemented create_database, misc cleanup | Timothy Warren | 2 | -21/+16 | |
2012-02-17 | More general fix for num_rows | Timothy Warren | 2 | -54/+4 | |
2012-02-17 | Workaround to fix method | Timothy Warren | 2 | -0/+115 | |
2012-02-17 | Simplified hostname connection logic | Timothy Warren | 1 | -13/+2 | |
2012-02-16 | Num rows fix | Timothy Warren | 1 | -1/+10 | |
2012-02-16 | narfbg suggested fixes | Timothy Warren | 4 | -105/+43 | |
2012-02-16 | Implemented insert_id() method | Timothy Warren | 1 | -3/+4 | |
2012-02-15 | Implemented _list_columns() method | Timothy Warren | 1 | -2/+11 | |
2012-02-15 | Limit clause fixes | Timothy Warren | 2 | -7/+8 | |
2012-02-15 | Syntax fixes | Timothy Warren | 2 | -26/+14 | |
2012-02-15 | Minor codestyle fix | Timothy Warren | 2 | -2/+1 | |
2012-02-15 | Removed string case manipulation functions | Timothy Warren | 1 | -11/+7 | |
2012-02-14 | Restored '@' characters | Timothy Warren | 1 | -110/+108 | |