Uses of Class
nzilbb.sql.mysql.MySQLTranslator
-
Packages that use MySQLTranslator Package Description nzilbb.sql Factory interface for providing access to relational database connections.nzilbb.sql.derby Implementation for providing connections to Derby databases.nzilbb.sql.mysql Implementation for providing connections to MySQL databases, and translation of MySQL-oriented SQL. -
-
Uses of MySQLTranslator in nzilbb.sql
Methods in nzilbb.sql that return MySQLTranslator Modifier and Type Method Description MySQLTranslator
ConnectionFactory. newSQLTranslator()
Constructs an SQL translator appropriate for the type of connection made byConnectionFactory.newConnection()
. -
Uses of MySQLTranslator in nzilbb.sql.derby
Subclasses of MySQLTranslator in nzilbb.sql.derby Modifier and Type Class Description class
DerbySQLTranslator
Object that translates statements designed for MySQL's flavour of SQL to the derby SQL engine.Methods in nzilbb.sql.derby that return MySQLTranslator Modifier and Type Method Description MySQLTranslator
DerbyConnectionFactory. newSQLTranslator()
Constructs an SQL translator appropriate for the type of connection made byDerbyConnectionFactory.newConnection()
. -
Uses of MySQLTranslator in nzilbb.sql.mysql
Subclasses of MySQLTranslator in nzilbb.sql.mysql Modifier and Type Class Description class
VanillaSQLTranslator
Object that translates statements designed for MySQL's flavour of SQL to standard SQL.Methods in nzilbb.sql.mysql that return MySQLTranslator Modifier and Type Method Description MySQLTranslator
MySQLConnectionFactory. newSQLTranslator()
Constructs an SQL translator appropriate for the type of connection made byMySQLConnectionFactory.newConnection()
.MySQLTranslator
MySQLTranslator. setTrace(boolean newTrace)
Setter fortrace
: Whether to print statements passed toapply(String)
-