summaryrefslogtreecommitdiffstats
path: root/system/database
AgeCommit message (Collapse)AuthorFilesLines
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 Ellis11-655/+601
prefixed correctly.
2008-10-09moved call to $RES->num_rows() further down in code so that oracle-specific ↵Derek Jones1-1/+3
class variables would be set properly as needed before executing
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-07Fixed a bug (#2985) in which multiple queries using a single request were ↵Rick Ellis1-0/+1
not being honored
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 Ellis4-4/+4
should have been: $this->input->CI->_remove_invisible_characters($str);
2008-09-30Swiched to escape() rather then escape_str(), as per bug report #4680Rick Ellis1-2/+2
2008-09-30Added backticks around column names in where clause. Bug report number: 4668Rick Ellis1-1/+1
2008-09-30Removed some spacesRick Ellis1-3/+3
2008-09-30Did a little clean up. Nothing that affected functionalityRick Ellis9-27/+39
2008-09-30Added backticks to column names when using insert_string and update_string. ↵Rick Ellis8-19/+124
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 Ellis18-18/+18
2008-09-13updated copyrightRick Ellis17-17/+17
2008-08-22fixed a missing semi colonDerek Allard1-1/+2
2008-08-21whitespace fixesDerek Allard5-28/+29
a minor re-ordering of the changelog
2008-06-27Fixed a double opening <p> tag in the index pages of each system ↵Derek Allard9-72/+27
directory.
2008-06-04whitespace, whitespace, schmeitespaceDerek Jones1-1/+1
2008-06-04compacting some whitespaceDerek Jones1-5/+1
2008-06-04bit of a code cleanupDerek Allard1-6/+5
2008-06-04change AR behaviour so that blank values result in empty quotesDerek Allard1-6/+4
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-22Fixed a bug (#4561) where orhaving() wasn't properly passing values.Derek Allard1-2/+6
Removed some unused variables from the code (#4563). Fixed a bug where having() was not adding an = into the statement (#4568).
2008-05-18Moved the _has_operators() function into DB_driver from DB_active_rec.Derek Allard2-20/+22
2008-05-14set $DB->char_set and $DB->dbcollat defaults to utf8 and utf8_general_ci ↵Derek Jones1-2/+2
respectively
2008-05-14fixed bug #3419 where the 'database' setting for DSN connections was using ↵Derek Jones2-2/+25
the host portion of the URL instead of the path. Added ability to set other db config values in DSN connections via query string
2008-05-13hotfix for a bug in database error display introduced by 1.6.2 fix for bugs ↵Derek Jones1-3/+8
#4451, #4299, and #4339
2008-05-13Some sweeping syntax changes for consistency:Derek Jones35-205/+205
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace
2008-05-12Escape behaviour in where() clauses has changed; values in those with the ↵Derek Allard1-19/+22
"FALSE" argument are no longer escaped (ie: quoted).
2008-05-12(no commit message)Rick Ellis1-22/+57
2008-05-12Fixed a bug in AR compiling, where select statements with arguments got ↵Derek Allard1-3/+10
incorrectly escaped (#3478).
2008-05-12passed db object by reference to DB Cache class, and changed the cache class ↵Derek Jones2-15/+17
to use that db object instead of $CI->db, to support returned db objects and multiple db connections http://codeigniter.com/bug_tracker/bug/4223/
2008-05-12changed class instantiations to reference global $LANG and fetch existing ↵Derek Jones1-14/+7
Exceptions class, and added language variable for database error heading http://codeigniter.com/bug_tracker/bug/4421/
2008-05-11Removed closing PHP tags, replaced with a comment block identifying the end ↵Derek Jones35-35/+105
of the file
2008-05-11Undoing change committed in r1115Derek Jones35-0/+35
2008-05-11removed closing PHP tag from all framework filesDerek Jones35-35/+0
2008-05-08added SET to the list of write type queriesDerek Jones1-1/+1
2008-05-08flipped the $not flag for or_where_not_in()Derek Jones1-5/+1
http://codeigniter.com/bug_tracker/bug/4171/
2008-05-07Added checks for objects in DB driver instead of just resources to ↵Derek Jones2-3/+3
accommodate MySQLi, and fixed check in mysqli_result.php checking for a resource. http://codeigniter.com/bug_tracker/bug/3461/
2008-05-06Fixed a bug in DB Forge, when inserting an id field (#3456).Derek Allard1-6/+7
2008-05-05Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵Derek Allard15-88/+88
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