[#1303] Add connection-less Factory constructors for convenience, when jOOQ is only used as a SQL query builder - Fixed Javadoc errors
This commit is contained in:
parent
6d49519087
commit
f2b2bf6efd
@ -105,9 +105,6 @@ public class ASEFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public ASEFactory() {
|
||||
super(SQLDialect.ASE);
|
||||
|
||||
@ -103,9 +103,6 @@ public class CUBRIDFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public CUBRIDFactory() {
|
||||
super(SQLDialect.CUBRID);
|
||||
|
||||
@ -110,9 +110,6 @@ public class DB2Factory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public DB2Factory() {
|
||||
super(SQLDialect.DB2);
|
||||
|
||||
@ -110,9 +110,6 @@ public class DerbyFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public DerbyFactory() {
|
||||
super(SQLDialect.DERBY);
|
||||
|
||||
@ -110,9 +110,6 @@ public class H2Factory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public H2Factory() {
|
||||
super(SQLDialect.H2);
|
||||
|
||||
@ -110,9 +110,6 @@ public class HSQLDBFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public HSQLDBFactory() {
|
||||
super(SQLDialect.HSQLDB);
|
||||
|
||||
@ -110,9 +110,6 @@ public class IngresFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public IngresFactory() {
|
||||
super(SQLDialect.INGRES);
|
||||
|
||||
@ -112,9 +112,6 @@ public class MySQLFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public MySQLFactory() {
|
||||
super(SQLDialect.MYSQL);
|
||||
|
||||
@ -112,9 +112,6 @@ public class OracleFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public OracleFactory() {
|
||||
super(SQLDialect.ORACLE);
|
||||
|
||||
@ -110,9 +110,6 @@ public class PostgresFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public PostgresFactory() {
|
||||
super(SQLDialect.POSTGRES);
|
||||
|
||||
@ -111,9 +111,6 @@ public class SQLiteFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public SQLiteFactory() {
|
||||
super(SQLDialect.SQLITE);
|
||||
|
||||
@ -110,9 +110,6 @@ public class SQLServerFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public SQLServerFactory() {
|
||||
super(SQLDialect.SQLSERVER);
|
||||
|
||||
@ -105,9 +105,6 @@ public class SybaseFactory extends Factory {
|
||||
* <p>
|
||||
* Without a connection, this factory cannot execute queries. Use it to
|
||||
* render SQL only.
|
||||
*
|
||||
* @param connection The connection to use with objects created from this
|
||||
* factory
|
||||
*/
|
||||
public SybaseFactory() {
|
||||
super(SQLDialect.SYBASE);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user