Lines Matching refs:dump
7 """Module to upload a MySQL dump file to Cloud SQL.
13 Uploads MySQL dump file to a MySQL database or Cloud SQL. With no optional
17 FILE text dump file containing MySQL commands
22 --resume NUM resume dump at command NUM
57 data: A line of data from the MySQL dump.
152 line: A line from the MySQL dump file.
184 line: A line from the MySQL dump file.
194 """Dumps a MySQL dump file to a database through a MySQLConnectionManager.
197 dumpfile: Path to a file from which to read the MySQL dump.
200 is reached. Used to continue an uncompleted dump. Defaults to 0.
206 with open(dumpfile, 'r') as dump:
207 for line in dump:
221 (100 * dump.tell() / total, dump.tell() / BYTES_PER_GB,
244 print ('Use --resume=%d to attempt to resume the dump.' %
251 """Imports a MySQL database from a dump file.
255 description = """Uploads MySQL dump file to a MySQL database or Cloud SQL.
260 help='text dump file containing MySQL commands')
264 help='resume dump at command NUM')