SQLiteGrammar::compileTruncate()

array compileTruncate(Builder $query) Compile a truncate table statement into SQL. Parameters Builder $query Return Value array

SQLiteGrammar::compileSavepointRollBack()

string compileSavepointRollBack(string $name) Compile the SQL statement to execute a savepoint rollback. Parameters string $name Return Value string

SQLiteGrammar::compileSelect()

string compileSelect(Builder $query) Compile a select query into SQL. Parameters Builder $query Return Value string

SQLiteGrammar::compileRenameColumn()

array compileRenameColumn(Blueprint $blueprint, Fluent $command, Connection $connection) Compile a rename column command. Parameters Blueprint $blueprint Fluent $command Connection $connection Return Value array

SQLiteGrammar::compileTableExists()

string compileTableExists() Compile the query to determine if a table exists. Return Value string

SQLiteGrammar::compileSavepoint()

string compileSavepoint(string $name) Compile the SQL statement to define a savepoint. Parameters string $name Return Value string

SQLiteGrammar::compileIndex()

string compileIndex(Blueprint $blueprint, Fluent $command) Compile a plain index key command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileInsert()

string compileInsert(Builder $query, array $values) Compile an insert statement into SQL. Parameters Builder $query array $values Return Value string

SQLiteGrammar::compileRename()

string compileRename(Blueprint $blueprint, Fluent $command) Compile a rename table command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileInsertGetId()

string compileInsertGetId(Builder $query, array $values, string $sequence) Compile an insert and get ID statement into SQL. Parameters Builder $query array $values string $sequence Return Value string