Uses of Class
org.sqlite.parser.ast.QualifiedName
Packages that use QualifiedName
-
Uses of QualifiedName in org.sqlite.parser
Methods in org.sqlite.parser that return types with arguments of type QualifiedNameModifier and TypeMethodDescriptionDefaultSchemaProvider.findTables
(String dbName, String tableNamePattern) DefaultSchemaProvider.findTables
(String dbName, String tableNamePattern, boolean all) SchemaProvider.findTables
(String dbName, String tableNamePattern) Find all tables matching the specified pattern. -
Uses of QualifiedName in org.sqlite.parser.ast
Fields in org.sqlite.parser.ast declared as QualifiedNameModifier and TypeFieldDescriptionfinal QualifiedName
CreateIndex.idxName
final QualifiedName
Drop.name
final QualifiedName
Drop.name
final QualifiedName
Drop.name
final QualifiedName
Drop.name
final QualifiedName
Pragma.name
final QualifiedName
Analyze.objName
final QualifiedName
InTableExpr.rhs
final QualifiedName
AlterTable.tblName
final QualifiedName
CreateTable.tblName
final QualifiedName
CreateTrigger.tblName
final QualifiedName
CreateVirtualTable.tblName
final QualifiedName
Delete.tblName
final QualifiedName
Insert.tblName
final QualifiedName
ReIndex.tblName
final QualifiedName
SelectTable.tblName
final QualifiedName
Update.tblName
final QualifiedName
CreateTrigger.triggerName
final QualifiedName
CreateView.viewName
Methods in org.sqlite.parser.ast that return QualifiedNameMethods in org.sqlite.parser.ast with parameters of type QualifiedNameModifier and TypeMethodDescriptionstatic FromClause
FromClause.from
(QualifiedName qualifiedName) static SelectTable
SelectTable.table
(QualifiedName tblName, As as, Indexed indexed) static SelectTable
SelectTable.tableCall
(QualifiedName tblName, List<Expr> exprs, As as) Constructors in org.sqlite.parser.ast with parameters of type QualifiedNameModifierConstructorDescriptionAlterTable
(QualifiedName tblName, String renameTo) AlterTable
(QualifiedName tblName, ColumnDefinition colDefinition) AlterTable
(QualifiedName tblName, RenameColumn renameColumn) Analyze
(QualifiedName objName) CreateIndex
(boolean unique, boolean ifNotExists, QualifiedName idxName, String tblName, List<SortedColumn> columns, Expr whereClause) CreateTable
(boolean temporary, boolean ifNotExists, QualifiedName tblName, CreateTableBody body) CreateTrigger
(boolean temporary, boolean ifNotExists, QualifiedName triggerName, TriggerTime time, TriggerEvent event, QualifiedName tblName, boolean forEachRow, Expr whenClause) CreateView
(boolean temporary, boolean ifNotExists, QualifiedName viewName, List<IndexedColumn> columns, Select select) CreateVirtualTable
(boolean ifNotExists, QualifiedName tblName, String moduleName) Delete
(With with, QualifiedName tblName, Indexed indexed, Expr whereClause, List<SortedColumn> orderBy, Limit limit) DropIndex
(boolean ifExists, QualifiedName name) DropTable
(boolean ifExists, QualifiedName name) DropTrigger
(boolean ifExists, QualifiedName name) DropView
(boolean ifExists, QualifiedName name) Insert
(With with, ResolveType orConflict, QualifiedName tblName, List<String> columns, Select select, Upsert upsert) InTableExpr
(Expr lhs, boolean not, QualifiedName rhs, List<Expr> args) Pragma
(QualifiedName name, Expr value) ReIndex
(QualifiedName tblName) Update
(With with, ResolveType orConflict, QualifiedName tblName, Indexed indexed, List<Set> sets, Expr whereClause, List<SortedColumn> orderBy, Limit limit)