From a7cf027235c92103118cf415d244447a6ea82b3a Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Thu, 25 Sep 2008 12:56:02 +0000 Subject: postgre to postgres in a few documentation pages --- user_guide/database/configuration.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'user_guide/database/configuration.html') 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
  • username - The username used to connect to the database.
  • password - The password used to connect to the database.
  • database - The name of the database you want to connect to.
  • -
  • dbdriver - The database type. ie: mysql, postgre, odcc, etc. Must be specified in lower case.
  • +
  • dbdriver - The database type. ie: mysql, postgres, odcc, etc. Must be specified in lower case.
  • dbprefix - An optional table prefix which will added to the table name when running Active Record queries. This permits multiple CodeIgniter installations to share one database.
  • pconnect - TRUE/FALSE (boolean) - Whether to use a persistent connection.
  • db_debug - TRUE/FALSE (boolean) - Whether database errors should be displayed.
  • @@ -129,10 +129,10 @@ for the primary connection, but it too can be renamed to something more relevant
  • cachedir - The absolute server path to your database query cache directory.
  • char_set - The character set used in communicating with the database.
  • dbcollat - The character collation used in communicating with the database.
  • -
  • port - 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.$db['default']['port'] = 5432;
  • +
  • port - 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.$db['default']['port'] = 5432;
  • -

    Note: Depending on what database platform you are using (MySQL, Postgre, etc.) +

    Note: 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.

    -- cgit v1.2.3-24-g4f1b