summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database
AgeCommit message (Collapse)AuthorFilesLines
2018-03-15[ci skip] Merge pull request #5437 from MadGuyyy/developAndrey Andreev1-1/+1
Docs spelling fix: utlize -> utilize
2017-10-09[ci skip] Merge pull request #5292 from ajdunn2/developAndrey Andreev1-1/+1
Small spelling fix
2017-09-16[ci skip] Merge pull request #5265 from mehdibo/patch-1Andrey Andreev1-1/+1
Fixed dbprefix() documentation
2017-07-21[ci skip] Merge pull request #5191 from jim-parry/patch/docsAndrey Andreev1-1/+1
Fix some mistakes in the user guide
2017-01-17[ci skip] Merge pull request #4986 from ka7/feature/spellingAndrey Andreev2-2/+2
Spelling fixes in comment blocks and docs
2016-10-24[ci skip] Update docs on trans_off()Andrey Andreev1-7/+7
2016-07-26[ci skip] Minor documentation fixesAndrey Andreev1-0/+1
2016-07-22[ci skip] Add affected_rows() to db reference docsAndrey Andreev1-0/+9
2016-02-17[ci skip] Update docs to reflect escape_like_str() usage with ESCAPE '\!'Andrey Andreev2-1/+14
Closes #4462
2016-02-04Add batch_size param to insert_batch(), update_batch()Andrey Andreev1-4/+14
This should resolve #42
2016-02-02Merge pull request #4419 from EpicKris/hotfix/database-forge-unique-docAndrey Andreev1-4/+6
[ci skip] Added docs for UNIQUE keys in DBForge
2015-12-10Merge pull request #4304 from scherepn/fix-doc-build-errorsAndrey Andreev1-1/+1
[ci skip] Fix mismatched brackets in documentation
2015-11-16Grammar correction in database configuration guideCraig Johnson1-1/+1
"it" changed to "in" on line 10. "in" seems like the correct word to be used there. Small change.
2015-10-19Fix #4171 and a number of other transaction bugsAndrey Andreev1-2/+4
2015-10-19[ci skip] Fix docs about QB cachingAndrey Andreev1-1/+1
It doesn't support set() ... Related: #4175
2015-09-22[ci skip] Remove an example from DB docsAndrey Andreev1-17/+0
Users shouldn't be encouraged to use num_rows() that way ... We had already decided on this awhile ago, this example just slipped through.
2015-09-14Fix #4032Andrey Andreev1-2/+2
2015-07-29[ci skip] QB docs, consistent bool vs booleanAndrey Andreev1-6/+6
2015-07-29Revert "[ci skip] Fix where_in() docs"Andrey Andreev1-4/+4
This reverts commit c749bfbca99291fe64ca98d45a20d0735cb4e461. Related to #3989, #4001
2015-07-29Merge pull request #4009 from aneasystone/doc-proAndrey Andreev1-2/+2
[ci skip] Correct notes about database_exists(), optimize_database() utils
2015-07-29fix mixed-up database and tableaneasystone1-2/+2
Signed-off-by: aneasystone <aneasystone@gmail.com>
2015-07-28[ci skip] Remove a redundant example from DB result docsAndrey Andreev1-12/+0
2015-07-27[ci skip] Update some query builder examplesAndrey Andreev1-11/+21
Related: #4001
2015-07-24[ci skip] Remove some whitespaceAndrey Andreev1-7/+7
2015-07-24Merge pull request #3993 from lonnieezell/f/dbnumrowsAndrey Andreev1-16/+13
[ci skip] Removing use of num_rows() in DB results docs
2015-07-24Revamping to the tune of issetLonnie Ezell1-2/+2
2015-07-23[ci skip] Polish changes from PR #3990Andrey Andreev1-15/+18
2015-07-23Tabs vs Spaces and the forgotten rewrite.Lonnie Ezell1-6/+6
2015-07-23The little things. :)Lonnie Ezell1-1/+0
2015-07-22Removing use of ->num_rows() in DB results docs.Lonnie Ezell1-16/+14
2015-07-22Revamping User class example for Custom Result ObjectsLonnie Ezell1-8/+5
2015-07-22Rewording and typosLonnie Ezell1-13/+14
2015-07-21Added missing space.Lonnie Ezell1-1/+1
2015-07-21Adding Custom Result object documentation to Query Results docs.Lonnie Ezell1-0/+87
2015-07-16Add 'ssl_verify' option for mysqli driverAndrey Andreev1-0/+1
MYSQLI_OPT_SSL_VERIFY_SERVER_CERT is an undocumented option that may not always be available. Reference: http://svn.php.net/viewvc/php/php-src/trunk/ext/mysqli/tests/mysqli_constants.phpt?view=markup&pathrev=302897
2015-07-16[ci skip] Update DB configuration docs with new SSL optionsAndrey Andreev1-10/+15
2015-07-16Merge branch 'feature/mysqli-ssl' of github.com:ndigitals/CodeIgniter into ↵Andrey Andreev1-3/+9
feature/mysqli_ssl
2015-07-13Update forge.rstAdrian Voicu1-1/+1
2015-07-13Update forge.rstAdrian Voicu1-1/+1
2015-07-10Important noteAdrian Voicu1-0/+2
If you pass strings to the add_field() methods you won't be able to follow those by add_key() methods on those fields.
2015-06-23[ci skip] Remove an assign-by-ref example from DButil docsAndrey Andreev1-2/+2
Triggers an E_DEPRECATED message; reported via the forums: http://forum.codeigniter.com/thread-62178-post-319791.html
2015-06-23Typo fix on forge documentationgn1-1/+1
2015-06-18Removed db_options configuration item for implementation later. Changed 5 ↵Tim Nolte1-30/+5
new MySQLi SSL configuration options to a single ssl_options config item that is an array that will be read to set the individual SSL options. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-08Merge branch 'develop' into feature/mysqli-sslTim Nolte1-2/+2
2015-06-08Added new MySQLi parameters/info to default database config file. Fixed ↵Tim Nolte1-2/+26
missing new MySQLi parameters from database configuration documentation examples. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-08Fixed missing MySQLi driver parameter DOCBLOCK descriptions. Updated ↵Tim Nolte1-1/+8
database configuration documentation to include a list of the new MySQLi driver parameters. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-05-08update userguideftwbzhao1-2/+2
2015-04-04Edit dbforge drop_table line 230LouisMilotte1-2/+2
At current the documentation does not distinguish between DROP TABLE IF EXISTS table_name and DROP TABLE table_name. As seen by the DB_forge.php class in system/database; the function accepts a Boolean as the second parameter as to whether or not to apply the IF EXISTS mysql condition.
2015-03-16[ci skip] Polish changes from PR #3669Andrey Andreev1-6/+7
2015-03-16update documentation in database/query_builder.rst, change 2 tabs + 4 spaces ↵yaoshanliang1-0/+6
to 3 tabs.