summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database
AgeCommit message (Collapse)AuthorFilesLines
2015-07-22Removing use of ->num_rows() in DB results docs.Lonnie Ezell1-16/+14
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
2015-01-05Polish changes following PR #3416Andrey Andreev1-184/+197
2014-12-16User Guide - DB Driver ReferenceJames L Parry2-1/+409
First stab at DB driver reference. Methods are listed in order encountered in the source file. Parameter or return types in DB_driver updated as needed, and reflected here. TOC entry added to bottom of database index page. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-12fixed indentation/linkref errorsDavid Wosnitza1-6/+6
Signed-off-by: David Wosnitza <david@druul.in>
2014-12-11[ci skip] Update DB result docsAndrey Andreev1-133/+143
Related: #3395
2014-12-11[ci skip] Update Query Builder docsAndrey Andreev1-330/+337
Close #2512 Related: #3396
2014-12-08Merge pull request #3396 from jim-parry/userguide/query_builderAndrey Andreev1-137/+533
Userguide/query builder
2014-12-08User Guide - query builderJames L Parry3-513/+501
Integrated API reference with the regular query builder page. Added square brackets for optional parameters. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-08User Guide - query resultsJames L Parry1-43/+11
Removed attributes from class reference. Added square brackets for optional parameters. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-06User Guide - query builderJames L Parry1-15/+282
Fleshing out the API reference Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-06User Guide - query builderJames L Parry1-0/+217
Fleshing out the API reference Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-06User Guide - query builderJames L Parry3-139/+63
Removed API stuff from the query builder page. Added a new API reference page. Updated the index to include the API ref in the TOC. Started on the API reference page. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-06User Guide - generating query resultsJames L Parry1-0/+32
Added attributes to the class reference. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-06User Guide - generating query resultsJames L Parry1-1/+184
Added class reference subsection to the "Generating query results" page in the Database Reference section of the User Guide. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-04Merge pull request #3390 from jim-parry/userguide/fix-metadataAndrey Andreev3-43/+61
[ci skip] User Guide - consolidate table & field metadata pages
2014-12-04DB forge/utilities polishing (docs) following #3375, #3378Andrey Andreev2-98/+88
2014-12-04User Guide - consolidate table & field metadata pagesJames L Parry3-43/+61
Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-03Remove duplicated method in database utilities documentationAhmad Anbar1-8/+0
2014-12-03Merge branch 'develop' of github.com:bcit-ci/CodeIgniter into ↵James L Parry1-13/+136
userguide/database_utilities
2014-12-03Merge pull request #3375 from jim-parry/userguide/dbforgeAndrey Andreev1-13/+136
User Guide update - Database Forge
2014-12-03Fix the user guide writeup for the DB forgeJames L Parry1-9/+105
Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-26User Guide update - Datbase UtilitiesJames L Parry1-2/+11
Fixed the return types Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-26User Guide update - Datbase UtilitiesJames L Parry1-1/+3
1) Updated TOC structure of the DB Utilities writeup 2) Added a class reference at the end, ordered by method name Signed-off-by:James L Parry <jim_parry@bcit.ca>