Package com.gengoai.sql
Class SQLiteDialect
- java.lang.Object
-
- com.gengoai.sql.SQLDialect
-
- com.gengoai.sql.SQLiteDialect
-
- All Implemented Interfaces:
Serializable
public class SQLiteDialect extends SQLDialect
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.gengoai.sql.SQLDialect
LOG_LEVEL
-
-
Constructor Summary
Constructors Constructor Description SQLiteDialect()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
defineColumn(Column column, StringBuilder builder)
Generates the SQL needed to define a column for creating or altering a table.-
Methods inherited from class com.gengoai.sql.SQLDialect
addColumn, alterColumn, alterTable, between, binaryOperator, checkConstraint, cleanUnderScores, conflictClause, createIndex, createTable, createTrigger, deferrable, defineConstraint, delete, drop, dropColumn, escape, foreignKeyAction, foreignKeyConstraint, function, insert, insertType, join, join, joinType, notNullConstraint, postfixUnaryOperator, prefixUnaryOperator, primaryKeyConstraint, queryOperator, renameColumn, renameTable, render, select, sqlDMLOperation, translate, triggerTime, uniqueConstraint, update, updateType, upsertAction, upsertClause
-
-
-
-
Method Detail
-
defineColumn
protected void defineColumn(Column column, StringBuilder builder)
Description copied from class:SQLDialect
Generates the SQL needed to define a column for creating or altering a table.- Specified by:
defineColumn
in classSQLDialect
- Parameters:
column
- the column definitionbuilder
- the StringBuilder to add the definition to
-
-