Lines Matching full:mysql
6 """Bootstrap mysql.
19 Execute mysql -u <default_user> -p<default_pass> -e
36 Execute mysql -u <default_user> -p<default_pass> -e
57 """Generic mysql command execution exception."""
61 """Class to shell out to mysql.
80 """Wrap the given mysql command.
82 @param cmd: The mysql command to wrap with the --execute option.
86 @param port: The port mysql server is listening on.
88 return ('mysql -u %s -p%s --host %s --port %s -e "%s"' %
94 """Execute a mysql statement on a remote server by sshing into it.
96 @param dest_server: The hostname of the remote mysql server.
97 @param full_cmd: The full mysql command to execute.
113 @param db_server: The host running the mysql server.
117 by supplying --host=db_server in the mysql command. Otherwise we
198 parser = argparse.ArgumentParser(description='A script to bootstrap mysql '
222 # mysql version 5.5, without complications.