summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database
AgeCommit message (Collapse)AuthorFilesLines
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.
2015-03-07removed ending S from csv_from_results and xml_from_results DButil Class ↵Mattias Hedman1-3/+3
reference section in userguide Signed-off-by: Mattias Hedman <mattias.hedman@stopp.se>
2015-03-02Small typosv3tli01-2/+2
Missed variable..
2015-02-20[ci skip] Fix where_in() docsAndrey Andreev1-4/+4
2015-02-19Remove 'autoinit' DB settingAndrey Andreev1-6/+0
It doesn't make sense to do a load->database() call but not connect to the database. IIRC there was more stuff in CI_DB_driver::initialize() at some point, so that was probably the reason why the setting existed in the first place. However, now it only results in users making invalid bug reports because they don't understand the feature ... Examples during just the past 2 weeks: #3571 #3601 #3607
2015-02-12[ci skip] Correct db config docs about 'autoinit'Andrey Andreev1-1/+1
2015-02-05Update transactions.rstRafael Schwemmer1-1/+1
Corrected a grammatical error in "CodeIgniter's Approach to Transactions"
2015-02-04Adjusted return type for CI_DB_utility::backup to suggestionsGabriel Potkány1-1/+1
2015-02-04Adjusted returns/return types to suggestionsGabriel Potkány1-2/+2
2015-02-04Fixed inconsistent return typesGabriel Potkány1-1/+1
2015-02-02[ci skip] Fix #3515Andrey Andreev5-138/+138
2015-01-23Fix unrecognized :doc: linkvlakoff1-3/+3