summaryrefslogtreecommitdiffstats
path: root/user_guide/database
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-09-25 14:56:02 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-09-25 14:56:02 +0200
commita7cf027235c92103118cf415d244447a6ea82b3a (patch)
treea1cdca253f524c22ed00526b3e09c686a2c44db2 /user_guide/database
parent92490684ef1b2a1b1417727c392ee28288fd41a9 (diff)
postgre to postgres in a few documentation pages
Diffstat (limited to 'user_guide/database')
-rw-r--r--user_guide/database/configuration.html6
-rw-r--r--user_guide/database/helpers.html2
2 files changed, 4 insertions, 4 deletions
diff --git a/user_guide/database/configuration.html b/user_guide/database/configuration.html
index 2c16f3608..26bbe75e1 100644
--- a/user_guide/database/configuration.html
+++ b/user_guide/database/configuration.html
@@ -121,7 +121,7 @@ for the primary connection, but it too can be renamed to something more relevant
<li><strong>username</strong> - The username used to connect to the database.</li>
<li><strong>password</strong> - The password used to connect to the database.</li>
<li><strong>database</strong> - The name of the database you want to connect to.</li>
-<li><strong>dbdriver</strong> - The database type. ie: mysql, postgre, odcc, etc. Must be specified in lower case.</li>
+<li><strong>dbdriver</strong> - The database type. ie: mysql, postgres, odcc, etc. Must be specified in lower case.</li>
<li><strong>dbprefix</strong> - An optional table prefix which will added to the table name when running <a href="active_record.html">Active Record</a> queries. This permits multiple CodeIgniter installations to share one database.</li>
<li><strong>pconnect</strong> - TRUE/FALSE (boolean) - Whether to use a persistent connection.</li>
<li><strong>db_debug</strong> - TRUE/FALSE (boolean) - Whether database errors should be displayed.</li>
@@ -129,10 +129,10 @@ for the primary connection, but it too can be renamed to something more relevant
<li><strong>cachedir</strong> - The absolute server path to your database query cache directory.</li>
<li><strong>char_set</strong> - The character set used in communicating with the database.</li>
<li><strong>dbcollat</strong> - The character collation used in communicating with the database.</li>
-<li><strong>port</strong> - The database port number. Currently only used with the Postgre driver. To use this value you have to add a line to the database config array.<code>$db['default']['port'] = 5432;</code></li>
+<li><strong>port</strong> - The database port number. Currently only used with the Postgres driver. To use this value you have to add a line to the database config array.<code>$db['default']['port'] = 5432;</code></li>
</ul>
-<p class="important"><strong>Note:</strong> Depending on what database platform you are using (MySQL, Postgre, etc.)
+<p class="important"><strong>Note:</strong> Depending on what database platform you are using (MySQL, Postgres, etc.)
not all values will be needed. For example, when using SQLite you will not need to supply a username or password, and
the database name will be the path to your database file. The information above assumes you are using MySQL.</p>
diff --git a/user_guide/database/helpers.html b/user_guide/database/helpers.html
index ac6ea11a3..0647e2a8c 100644
--- a/user_guide/database/helpers.html
+++ b/user_guide/database/helpers.html
@@ -80,7 +80,7 @@ correct number of affected rows. By default this hack is enabled but it can be
<h2>$this->db->platform()</h2>
-<p>Outputs the database platform you are running (MySQL, MS SQL, Postgre, etc...):</p>
+<p>Outputs the database platform you are running (MySQL, MS SQL, Postgres, etc...):</p>
<code>echo $this->db->platform();</code>