MySqlConnection::statement()

bool statement(string $query, array $bindings = array()) Execute an SQL statement and return the boolean result. Parameters string $query array $bindings Return Value bool

MySqlConnection::setTablePrefix()

void setTablePrefix(string $prefix) Set the table prefix in use by the connection. Parameters string $prefix Return Value void

MySqlConnection::setSchemaGrammar()

void setSchemaGrammar(Grammar $grammar) Set the schema grammar used by the connection. Parameters Grammar $grammar Return Value void

MySqlConnection::setReconnector()

$this setReconnector(callable $reconnector) Set the reconnect instance on the connection. Parameters callable $reconnector Return Value $this

MySqlConnection::setReadPdo()

$this setReadPdo(PDO|null $pdo) Set the PDO connection used for reading. Parameters PDO|null $pdo Return Value $this

MySqlConnection::setQueryGrammar()

void setQueryGrammar(Grammar $grammar) Set the query grammar used by the connection. Parameters Grammar $grammar Return Value void

MySqlConnection::setPostProcessor()

void setPostProcessor(Processor $processor) Set the query post processor used by the connection. Parameters Processor $processor Return Value void

MySqlConnection::setPdo()

$this setPdo(PDO|null $pdo) Set the PDO connection. Parameters PDO|null $pdo Return Value $this

MySqlConnection::setFetchMode()

int setFetchMode(int $fetchMode, mixed $fetchArgument = null, array $fetchConstructorArgument = array()) Set the default fetch mode for the connection, and optional arguments for the given fetch mode. Parameters int $fetchMode mixed $fetchArgument array $fetchConstructorArgument Return Value int

MySqlConnection::setEventDispatcher()

void setEventDispatcher(Dispatcher $events) Set the event dispatcher instance on the connection. Parameters Dispatcher $events Return Value void