diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-22 16:34:23 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-22 16:34:23 +0100 |
commit | ab189e162f20f1a7daae8bfd2b921e694c3f9df3 (patch) | |
tree | cf76a833d01e1d4f0ffd8b5a7f90c8d43d911031 /user_guide_src/source | |
parent | 125fe732c09f82a0702f29c9309f726bdd5a33c3 (diff) |
Close services after using them, added dbutil->backup() method
Diffstat (limited to 'user_guide_src/source')
-rw-r--r-- | user_guide_src/source/database/utilities.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/user_guide_src/source/database/utilities.rst b/user_guide_src/source/database/utilities.rst index b0920109f..3805ffb87 100644 --- a/user_guide_src/source/database/utilities.rst +++ b/user_guide_src/source/database/utilities.rst @@ -161,7 +161,11 @@ $this->dbutil->backup() Permits you to backup your full database or individual tables. The backup data can be compressed in either Zip or Gzip format. -.. note:: This features is only available for MySQL databases. +.. note:: This features is only available for MySQL and Interbase/Firebird databases. + +.. note:: For Interbase/Firebird databases, the backup file name is the only parameter. + + Eg. $this->dbutil->backup('db_backup_filename'); .. note:: Due to the limited execution time and memory available to PHP, backing up very large databases may not be possible. If your database is |