summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
AgeCommit message (Collapse)AuthorFilesLines
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
2008-10-18Added support for the port setting in mysqlRick Ellis1-0/+10
2008-10-17(no commit message)Rick Ellis1-1/+1
2008-10-17Added backticks to field namesRick Ellis1-1/+1
2008-10-17Fixed a tab issueRick Ellis1-5/+5
2008-10-17Added a call to the parent contructor, as this was causing errors.Rick Ellis1-7/+1
2008-10-17Added brackets around database name in MS SQL driver when selecting the ↵Rick Ellis1-1/+3
database, in the event that reserved characters are used in the name (bug report: 4915)
2008-10-17Fixed a number of bug reports related to table/db names not being escaped or ↵Rick Ellis16-383/+107
prefixed correctly.
2008-10-17Fixed a number of bug reports related to table/db names not being escaped or ↵Rick Ellis7-269/+74
prefixed correctly.
2008-10-07Explicitly added driver name variable in each DB driver, based on this bug ↵Rick Ellis7-1/+14
report: #4436
2008-10-07(no commit message)Rick Ellis3-3/+3
2008-10-07Fixed bug (#3472) that was adding quotes incorrectly.Rick Ellis1-2/+2
2008-10-07Oops! Didn't realize that the CI super object was not being used by the ↵Rick Ellis3-4/+13
main Driver. Fixed...
2008-10-07Fixed Oracle bug (#3306) that was preventing multiple queries in one actionRick Ellis1-0/+1
2008-10-07Added $params to ODBC constructor, based on bug report #3374Rick Ellis1-1/+9
2008-10-07Added support for empty connection strings, based on bug # 3135Rick Ellis1-7/+32
2008-10-07There was a call to $this->input->_remove_invisible_characters($str); It ↵Rick Ellis3-3/+3
should have been: $this->input->CI->_remove_invisible_characters($str);
2008-09-30Did a little clean up. Nothing that affected functionalityRick Ellis7-25/+28
2008-09-30Added backticks to column names when using insert_string and update_string. ↵Rick Ellis7-16/+122
Relates to this bug report: http://codeigniter.com/bug_tracker/bug/4509/
2008-09-26removed some legacy escaping code from _backup() in the MySQL utility, ↵Derek Jones1-9/+0
fixing bug 4536 http://codeigniter.com/bug_tracker/bug/4536/
2008-09-24added removal of non-printing characters to escape_str() of drivers that do ↵Derek Jones3-3/+3
not have native PHP escaping mechanisms
2008-09-13updated copyrightRick Ellis16-16/+16
2008-09-13updated copyrightRick Ellis12-12/+12
2008-08-21whitespace fixesDerek Allard2-13/+15
a minor re-ordering of the changelog
2008-06-27Fixed a double opening <p> tag in the index pages of each system ↵Derek Allard8-64/+24
directory.
2008-05-29made MySQL/MySQLi forge use explicitly named KEYs, added ability to specify ↵Derek Jones7-25/+93
multi-column non-primary keys in table creation
2008-05-13Some sweeping syntax changes for consistency:Derek Jones28-140/+140
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace
2008-05-11Removed closing PHP tags, replaced with a comment block identifying the end ↵Derek Jones28-28/+84
of the file
2008-05-11Undoing change committed in r1115Derek Jones28-0/+28
2008-05-11removed closing PHP tag from all framework filesDerek Jones28-28/+0
2008-05-07Added checks for objects in DB driver instead of just resources to ↵Derek Jones1-1/+1
accommodate MySQLi, and fixed check in mysqli_result.php checking for a resource. http://codeigniter.com/bug_tracker/bug/3461/
2008-05-05Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵Derek Allard9-28/+28
the File Helper. Changed ( ! condition) into (! condition) within the code
2008-04-29Added a valid_emails rule to the Validation class.Derek Allard1-4/+1
2008-04-11The MySQLi forge class is now in sync with MySQL forge.Derek Allard1-60/+65
2008-04-07Added rename_table() into DBForge.Derek Allard7-1/+133
2008-04-04added constants.php file and implemented constants for file system modesDerek Jones1-2/+2
2008-02-25Fixed an AR_caching error where it wasn't tracking table aliases (#3463)Derek Allard7-7/+7
2008-02-13reapplied implementation of db_set_charset() for MySQLi...Derek Jones1-2/+1
2008-02-13fixes to _create_table() in sqlite_forge.php:Derek Jones1-2/+3
removed space between table name and parenthesis added version check for IF NOT EXISTS
2008-02-13changed escape_str() in mysqli_driver() to use is_object() instead of ↵Derek Jones1-1/+1
is_resource() to test $this->conn_id
2008-02-11remove backticks from ODBCDerek Allard1-8/+4
2008-02-11database enhancements, compatibility additions and bugfixesDerek Allard6-11/+11
2008-02-11driver escape_table fixesDerek Allard5-10/+10
2008-02-11escape_table made consistent with mysql driver across all driversDerek Allard5-10/+10
2008-02-11clarifying comment on sqlite escape tableDerek Allard1-5/+3