mDescription = "Send SQL queries to a MediaWiki database"; } public function execute() { if ( $this->hasArg() ) { $fileName = $this->getArg(); $file = fopen( $fileName, 'r' ); $promptCallback = false; } else { $file = $this->getStdin(); $promptObject = new SqlPromptPrinter( "> " ); $promptCallback = $promptObject->cb(); } if ( !$file ) $this->error( "Unable to open input file", true ); $dbw = wfGetDB( DB_MASTER ); $error = $dbw->sourceStream( $file, $promptCallback, array( $this, 'sqlPrintResult' ) ); if ( $error !== true ) { $this->error( $error, true ); } else { exit( 0 ); } } /** * Print the results, callback for $db->sourceStream() * @param $res The results object * @param $db Database object */ public function sqlPrintResult( $res, $db ) { if ( !$res ) { // Do nothing } elseif ( is_object( $res ) && $res->numRows() ) { foreach ( $res as $row ) { $this->output( print_r( $row, true ) ); } } else { $affected = $db->affectedRows(); $this->output( "Query OK, $affected row(s) affected\n" ); } } public function getDbType() { return Maintenance::DB_ADMIN; } } class SqlPromptPrinter { function __construct( $prompt ) { $this->prompt = $prompt; } function cb() { return array( $this, 'printPrompt' ); } function printPrompt() { echo $this->prompt; } } $maintClass = "MwSql"; require_once( RUN_MAINTENANCE_IF_MAIN );