diff options
author | Christian Weiske <cweiske@cweiske.de> | 2010-10-08 16:59:04 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2010-10-08 16:59:04 +0200 |
commit | cd023dea530870a047ca87405fedc3ddbc06d787 (patch) | |
tree | aa02ba5c6e821176f47143cdd47485655c210971 /scripts/database-dump.php | |
parent | 8e3daac73e324368a414fc0e9406dcbe43ffba29 (diff) | |
download | semanticscuttle-cd023dea530870a047ca87405fedc3ddbc06d787.tar.gz semanticscuttle-cd023dea530870a047ca87405fedc3ddbc06d787.tar.bz2 |
scripts to dump and restore the semanticscuttle database quickly - useful to keep the database even when running unit tests
Diffstat (limited to 'scripts/database-dump.php')
-rw-r--r-- | scripts/database-dump.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/database-dump.php b/scripts/database-dump.php new file mode 100644 index 0000000..f4f04ac --- /dev/null +++ b/scripts/database-dump.php @@ -0,0 +1,26 @@ +<?php +/** + * Dumps the semanticscuttle database into a file using mysqldump. + * + * This file is part of + * SemanticScuttle - your social bookmark manager. + * + * PHP version 5. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Christian Weiske <cweiske@cweiske.de> + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ +require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php'; + +passthru( + 'mysqldump' + . ' -h' . escapeshellarg($GLOBALS['dbhost']) + . ' -u' . escapeshellarg($GLOBALS['dbuser']) + . ' -p' . escapeshellarg($GLOBALS['dbpass']) + . ' ' . escapeshellarg($GLOBALS['dbname']) + . ' > semanticscuttle-dump.sql' +); +?>
\ No newline at end of file |