summaryrefslogtreecommitdiff
path: root/process_sql.php
blob: 23fbbdd6173a23c9466477f24ce97d02fbe21c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * @version $Header$
 * @package install
 * @subpackage functions
 */

/**
 * Global flag to indicate we are installing
 * @ignore 
 */
define( 'BIT_INSTALL', 'TRUE' );
	global $failedcommands;
// keep some crappy notices from spewing
$_SERVER['HTTP_HOST'] = 'shell';
$_SERVER['SERVER_SOFTWARE'] = 'command_line';

/**
 * required setup
 */
require_once( 'install_lib.php' );
include("../kernel/setup_inc.php");

if( count( $argv ) < 2) {
	print "Please enter name of SQL file in db/ directory to process\n";
} else {
	// avoid errors in ADONewConnection() (wrong darabase driver etc...)
	$gBitDb = &ADONewConnection($gBitDbType);
	if( $gBitDb->Connect($gBitDbHost, $gBitDbUser, $gBitDbPassword, $gBitDbName) ) {
		process_sql_file( $argv[1], $gBitDbType, BIT_DB_PREFIX );
	}
}

?>