Migrated as a QueryPage extension
[mediawiki.git] / maintenance / trivialCmdLine.php
blob51628bc9837023dbc5440eb0bee029f111224a09
1 <?php
2 require_once( "liveCmdLine.inc" );
3 print "DB name: $wgDBname\n";
4 print "DB user: $wgDBuser\n";
5 print "DB password: $wgDBpassword\n";
7 $res = wfQuery( "SELECT MAX(cur_id) as m FROM cur", DB_READ );
8 $row = wfFetchObject( $res );
9 print "Max cur_id: {$row->m}\n";