summaryrefslogtreecommitdiffstats
path: root/system/database
AgeCommit message (Collapse)AuthorFilesLines
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
2008-04-15Fixed an AR bug when joining with a table alias and table prefix (#4400).Derek Allard1-1/+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 Allard8-1/+154
2008-04-06Fixed a bug that wasn't allowing escaping to be turned off if the value of a ↵Derek Allard1-2/+7
query was NULL.
2008-04-06testing an escape issueDerek Allard1-1/+4
2008-04-06Added the ability to prevent escaping in having() clauses.Derek Allard1-8/+13
2008-04-04added constants.php file and implemented constants for file system modesDerek Jones2-5/+5
2008-04-03syntax error: extraneous closing parenthesisDerek Jones1-1/+1
2008-04-03replaced isset() with array_key_exists() in row() to allow retrieval of ↵Derek Jones1-1/+2
individual fields with MySQL NULL values
2008-03-06change to the way AR handles aliased tablesDerek Allard1-5/+3
2008-03-04fix silly copy-paste error in active recordDerek Allard1-1/+1
2008-03-02added or_having, deprecated orhavingDerek Allard1-2/+14
2008-02-25Fixed an AR_caching error where it wasn't tracking table aliases (#3463)Derek Allard8-8/+8
2008-02-14little protection in case an array is provided as the $params for the DB classDerek Jones1-1/+1
2008-02-13reapplied implementation of db_set_charset() for MySQLi...Derek Jones1-2/+1
2008-02-13fixed bug #3419, moved DSN parsing to DB.php so the driver could properly be ↵Derek Jones2-24/+24
set to instantiate the correct db driver class.
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 Allard7-21/+29
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
2008-02-10changes for enhanced database compatibilityDerek Allard6-23/+58
2008-02-07added functionality for setting client character set and collation in MySQLi ↵Derek Jones1-2/+1
driver
2008-02-06cache_stop() fix...Derek Allard1-4/+1
2008-02-05Changed the behaviour of Active Record's update() to make the WHERE clause ↵Derek Allard7-7/+35
optional (#3395)
2008-02-05Added and documented Active Record caching.Derek Allard8-42/+322
Made AR fully database-prefix aware
2008-02-01remove parenthesis from postrgre _from_tablesDerek Allard1-1/+1
2008-01-30fix orlike to call or_likeDerek Allard1-1/+1
2008-01-30added default value for $active_record when it's not setDerek Jones1-1/+1
2008-01-30removed 'active_r' db config variable, replaced with global $active_record ↵Derek Jones1-4/+4
setting. (bug report #1834)
2008-01-29Removed support for db_backup in MySQLi due to incompatible functions.Derek Allard1-135/+3
2008-01-29Abstracted FROM table listing in Active Record for databases that do not ↵Derek Jones8-1/+155
support parenthetic grouping of tables to explicitly define operator precedence
2008-01-28added is_really_writable() to Common.php, replaced is_writable() throughout ↵Derek Jones1-3/+0
application with is_really_writable()