Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-04-09 | Switched public driver methods in DB forge to protected | Andrey Andreev | 1 | -2/+2 | |
2012-04-09 | Multiple DB Forge improvements | Andrey Andreev | 1 | -71/+2 | |
- 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 | Added a default _delete() method to CI_DB_active_record | Andrey Andreev | 1 | -34/+0 | |
2012-04-06 | Some minor improvements to the PDO driver | Andrey Andreev | 1 | -33/+26 | |
2012-04-06 | Fix a CI_DB_pdo_driver::trans_commit() bug | Andrey Andreev | 1 | -24/+5 | |
2012-04-06 | Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵ | Andrey Andreev | 2 | -45/+8 | |
CI_DB_driver | |||||
2012-04-06 | Fix PDO field and table escaping | Andrey Andreev | 1 | -52/+18 | |
2012-04-05 | Added a default _truncate() method to CI_DB_active_record | Andrey Andreev | 1 | -3/+4 | |
2012-04-05 | Added a default _update() method to CI_DB_active_record | Andrey Andreev | 1 | -31/+0 | |
2012-04-05 | Replaced driver instances of _insert() with one in CI_DB_active_record | Andrey Andreev | 1 | -17/+0 | |
2012-04-05 | Added a default _insert_batch() method instead of requiring each driver to ↵ | Andrey Andreev | 1 | -17/+0 | |
define it and fixed 2 issues related to it | |||||
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-26 | Add visibility declarations where they remain missing | Andrey Andreev | 1 | -1/+1 | |
2012-03-23 | Add dummy method reconnect() method to CI_DB_driver and remove it from ↵ | Andrey Andreev | 1 | -20/+0 | |
drivers that don't support it | |||||
2012-03-20 | Visibility declarations and cleanup for PDO forge and utility classes | Andrey Andreev | 2 | -35/+21 | |
2012-03-20 | Visibility declarations and cleanup for CI_DB_pdo_result | Andrey Andreev | 1 | -35/+25 | |
2012-03-20 | Visibility declarations and cleanup for CI_DB_pdo_driver | Andrey Andreev | 1 | -109/+77 | |
2012-03-20 | Remove extraneous newlines | Timothy Warren | 2 | -2/+2 | |
2012-03-20 | Revert "PDO driver access modifiers" | Timothy Warren | 3 | -63/+98 | |
This reverts commit 8c332e7f907e6af498f18fa1bf28e0a0c6e11448. | |||||
2012-03-20 | Revert "Fixed visibility declarations on dbforge and utility classes" | Timothy Warren | 2 | -11/+17 | |
This reverts commit 78a2de4e049f478ec1efd92d639aaf11be933335. | |||||
2012-03-19 | Fixed visibility declarations on dbforge and utility classes | Timothy Warren | 2 | -17/+11 | |
2012-03-19 | PDO driver access modifiers | Timothy Warren | 3 | -98/+63 | |
2012-03-18 | Merge pull request #1060 from toopay/pdo_meta | Andrey Andreev | 2 | -2/+62 | |
Fixed meta table method(s) for PDO | |||||
2012-03-17 | Remove type casting | Taufan Aditya | 1 | -1/+1 | |
2012-03-16 | Spacing and replace array_key_exists | Taufan Aditya | 1 | -2/+2 | |
2012-03-09 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 2 | -13/+10 | |
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 | Move dsn property from the PDO to CI_DB_driver so other DB drivers can use ↵ | Andrey Andreev | 1 | -2/+1 | |
it without declaring it | |||||
2012-03-06 | Resolve _protect_identifiers()/protect_identifiers() usage issues | Andrey Andreev | 2 | -11/+9 | |
2012-03-03 | Improve DB version() implementation and add pg_version() support | Andrey Andreev | 1 | -4/+6 | |
2012-03-02 | Replaced DB methods _error_message() and _error_number() with error() (issue ↵ | Andrey Andreev | 1 | -17/+18 | |
#1097) | |||||
2012-03-01 | Merge upstream changes | Andrey Andreev | 1 | -26/+11 | |
2012-03-01 | Fix a bug in PDO's insert_id() (PostgreSQL-specific) | Andrey Andreev | 1 | -23/+9 | |
2012-03-01 | Fix PDO's _version() method where it used to return client version instead ↵ | Andrey Andreev | 1 | -4/+3 | |
of the server one | |||||
2012-02-27 | Fixed a db_set_charset() bug | Andrey Andreev | 1 | -16/+1 | |
2012-02-18 | Fixed meta table method(s) for PDO | Taufan Aditya | 2 | -2/+62 | |
2012-02-13 | Added missing space | Timothy Warren | 1 | -1/+1 | |
2012-02-13 | Re-added if ! empty clause | Timothy Warren | 1 | -1/+4 | |
2012-02-13 | Refixed Old-style pdo connection string | Timothy Warren | 1 | -7/+6 | |
2012-02-13 | Semicolon automatically added if not exists after hostname, if only database ↵ | Taufan Aditya | 1 | -2/+7 | |
was not empty | |||||
2012-02-12 | Fixed rtrim issue in hostname fragment, for backward compability | Taufan Aditya | 1 | -5/+3 | |
2012-02-10 | Changed double quotes to single | Timothy Warren | 1 | -1/+1 | |
2012-02-10 | Fixed old-style pdo connection string | Timothy Warren | 1 | -1/+5 | |
2012-02-10 | Grammar correction | Taufan Aditya | 1 | -1/+1 | |
2012-02-09 | Typo | Taufan Aditya | 1 | -1/+1 | |
2012-02-09 | Change PHP.net mirror to the main mirror | Taufan Aditya | 1 | -2/+2 | |
2012-02-09 | Fixed PDO | Taufan Aditya | 3 | -79/+272 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 4 | -4/+4 | |
2011-12-08 | Exception for sqlite | toopay | 1 | -1/+4 | |
2011-11-28 | Fixed sytax error in pdo driver | Timothy Warren | 1 | -4/+0 | |