You are here

function dba_report_spaces in Database Administration 7

1 call to dba_report_spaces()
dba_sqlite_report_output in database/sqlite.report.inc
SQLite report. @todo: Does SQLite maintain useful statistics?

File

./dba.report.inc, line 50

Code

function dba_report_spaces($count) {
  $output = '';
  while ($count-- > 0) {
    $output .= ' ';
  }
  return $output;
}