summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
AgeCommit message (Collapse)AuthorFilesLines
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones28-140/+140
broke the Typography class's string replacements, for instance
2011-06-15Merged Alex Bilbies MSSQL changes.philsturgeon28-143/+193
2011-05-20modified the 'use_set_names' variable in the MySQL/i drivers to be a class ↵Derek Jones2-10/+12
property instead of static, in case multiple database servers are connected to in a single request. Also clarified description of the 'dbcollat' setting in the configuration files
2011-04-27merging in changesGreg Aker28-141/+141
2011-04-27Added insert_batch() function to the PostgreSQL database driver. Thanks to ↵Greg Aker1-0/+18
epallerols for the patch.
2011-04-25Fixed double-space typo.Razican28-140/+140
2011-04-23typo in modification to MySQLi driver. Fixes #236Derek Jones1-1/+1
2011-04-19modified MySQL and MySQLi drivers to address a potential SQL injection ↵Derek Jones2-2/+32
attack vector when multi-byte character set connections are employed. (Does not impact Latin-1, UTF-8, etc. encodings)
2011-04-02Fixed issue #153 Escape Str Bug in MSSQL driverPhil Sturgeon1-3/+5
2011-03-18UpdatesAlex Bilbie2-145/+81
2011-03-18Renamed some classes in the driverAlex Bilbie4-8/+8
2011-03-13Updated affected_rowsAlex Bilbie1-1/+1
2011-03-13Added flag to return dates as strings instead of PHP date objects. Updated ↵Alex Bilbie1-3/+3
db_select
2011-03-10Think I've finished converting mssql commands to sqlsrv where appropriateAlex Bilbie2-11/+9
2011-03-10Added sqlsrv folder, added necessary files, started altering queries in ↵Alex Bilbie5-0/+1179
sqlsrv_driver.php
2011-03-08Fixed bug in escaping underscores etc in MSSQL LIKE conditions.davidhart1-3/+3
2011-02-14Whitespace cleanup in db classesPascal Kriete7-21/+21
2011-02-14Uppercasing some stray lowercase keywords for code consistencyPascal Kriete2-7/+7
2011-02-09Reverted recent MySQL backtick escaping as some queries were double-escaping.Phil Sturgeon1-4/+4
2011-02-08MySQL Driver will now wrap field names for insert(), update() and replace() ↵Phil Sturgeon1-8/+8
with backticks (`) so fields like "default" and "order" will not cause SQL errors.
2011-01-27Automated merge with https://bitbucket.org/ellislab/codeigniterPhil Sturgeon1-4/+19
2011-01-07Automated merge with http://hg.ellislab.com/CodeIgniter2Pascal Kriete28-43/+94
2011-01-07Adding batch insert and batch update to the mysqli driver.Pascal Kriete1-0/+69
2011-01-05Hey look, it's 2011Greg Aker28-28/+28
2011-01-05Use arrays in DBForge for constraint for things like decimal, float, ↵Phil Sturgeon1-4/+19
numeric, enum and set.
2010-12-21Fix #93 Updating postgres dbforge create table method. Thanks to James ↵Greg Aker1-15/+66
Gifford for the patch. http://codeigniter.com/forums/viewthread/73392/
2010-11-10Updating PHP requirements in files 5.1.6Greg Aker28-28/+28
2010-10-04Cleanup of stray spaces and tabsBarry Mieny25-639/+639
2010-08-06Removed deprecated _drop_database() and _create_database() functions from db ↵Greg Aker7-267/+0
utility drivers.
2010-04-15Fixing a bug where odbc/mssql/oci8 db drivers would encounter a PHP error ↵Greg Aker3-12/+3
due to a function being moved from the input to security class. Moving remove_invisible_characters() to Common.php so the entire class does not need to be instantiated in those database drivers.
2010-03-30fixed a fatal PHP error in SQLite Forge _create_table()Derek Jones1-1/+1
2010-03-03added batch insert/update and replace methods to MySQL driverDerek Jones1-0/+92
2010-02-05display_error in driver needs no db referenceDerek Allard2-4/+4
2010-02-04fixing a series of errors in (ironically) error display in some database driversDerek Allard3-5/+5
2010-01-26Misspelled class property in db class. _like_escape_chr, not _like_escape_charGreg Aker5-5/+5
http://codeigniter.com/bug_tracker/bug/9518/
2010-01-26Fixing bug in DB Driver where identifiers could be escaped in some drivers ↵Greg Aker2-2/+2
that can't accept it in the list_fields() function. http://codeigniter.com/bug_tracker/bug/5865/ http://codeigniter.com/bug_tracker/bug/11218/
2010-01-05updated copyrightsDerek Jones28-28/+28
2009-08-17Modified MSSQL driver to use mssql_get_last_message() for error messages.Derek Allard1-2/+1
2009-04-22updated copyrights to 2009Derek Jones28-28/+28
2009-02-27added reconnect() method to db driversDerek Jones7-0/+121
2009-02-20updated _list_tables() in db drivers to escape the db prefix for LIKE wildcardsDerek Jones7-7/+7
2009-02-20added LIKE condition escaping to all drivers and Active RecordDerek Jones7-24/+186
updated all DB drivers to accept arrays in escape_str()
2009-02-20$CI->_remove_invisible_characters($str);Derek Jones1-1/+1
fixed to $CI->input->_remove_invisible_characters($str);
2009-02-03DB count_all() not returns an integer alwaysDerek Allard7-37/+63
Added some syntactical improvements within DB (braces) Fixed a bug when doing 'random' on order_by() (#5706). Fixed a bug where adding a primary key through Forge could fail (#5731). Fixed a bug when using DB cache on multiple databases (#5737).
2008-11-13Changing EOL style to LFDerek Allard36-8645/+8645
2008-10-26Fixed a bug in which identifers were not being escaped properly when ↵Rick Ellis7-4/+81
reserved characters were used
2008-10-24added a conditional for $this->port in the mysqli driver. Apparently it ↵Derek Jones1-1/+9
doesn't like being sent an empty string.
2008-10-18Set primary key to zero, since there isn't a good way to retrieve it. Bug ↵Rick Ellis1-1/+1
report: 5172
2008-10-18Added port support to MS SQLRick Ellis1-0/+10
2008-10-18Added port support to mysqliRick Ellis1-1/+1