| 1 |
Additional installation instructions when using PEAR databases:
|
| 2 |
---------------------------------------------------------------
|
| 3 |
When you use a PEAR database with Drupal (currently only PostgreSQL is
|
| 4 |
actively maintained and supported) you must create the SQL view
|
| 5 |
drupal_system_catalog for your database before you activate the dba module.
|
| 6 |
|
| 7 |
Look in the 'scripts' directory for the PEAR sql scripts. Currently
|
| 8 |
the following two PEAR sql scripts are available:
|
| 9 |
|
| 10 |
dba.pgsql-7.3 for PostgreSQL 7.3
|
| 11 |
dba.pgsql-7.4 for PostgreSQL 7.4 and later versions
|
| 12 |
|
| 13 |
The way you create this SQL view depends on your system,
|
| 14 |
but the most common way (for postgresql) is:
|
| 15 |
|
| 16 |
psql -U username yourdatabase < dba.pgsql-7.4
|
| 17 |
|
| 18 |
or (with password prompt)
|
| 19 |
|
| 20 |
psql -U username -W yourdatabase < dba.pgsql-7.4
|
| 21 |
|
| 22 |
|
| 23 |
Requires:
|
| 24 |
--------
|
| 25 |
- PEAR support in PHP and a PEAR supported database
|
| 26 |
|
| 27 |
|
| 28 |
Credits:
|
| 29 |
-------
|
| 30 |
- SQL scripts for postgres written by AAM <aam@ugpl.de>
|