[#456] Add runtime support for PRECISION, SCALE, and LENGTH attributes -
Removed generic type parameter <T> from [SQLDialect]DataType
This commit is contained in:
parent
a50307089d
commit
899c76280e
@ -47,7 +47,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @see <a href="http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc36271.1550/html/blocks/X31825.htm">http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc36271.1550/html/blocks/X31825.htm</a>
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
public class ASEDataType<T> {
|
||||
public class ASEDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -52,7 +52,7 @@ import org.jooq.impl.SQLDataType;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
public class CUBRIDDataType<T> {
|
||||
public class CUBRIDDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -51,7 +51,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @see <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.apdv.java.doc/doc/rjvjdata.htm">http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.apdv.java.doc/doc/rjvjdata.htm</a>
|
||||
* @author Espen Stromsnes
|
||||
*/
|
||||
public class DB2DataType<T> {
|
||||
public class DB2DataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -53,7 +53,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @author Lukas Eder
|
||||
* @see <a href="http://db.apache.org/derby/docs/10.7/ref/crefsqlj31068.html">http://db.apache.org/derby/docs/10.7/ref/crefsqlj31068.html</a>
|
||||
*/
|
||||
public class DerbyDataType<T> {
|
||||
public class DerbyDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -54,7 +54,7 @@ import org.jooq.types.YearToMonth;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
public class FirebirdDataType<T> {
|
||||
public class FirebirdDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -54,7 +54,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @author Lukas Eder
|
||||
* @see <a href="http://www.h2database.com/html/datatypes.html">http://www.h2database.com/html/datatypes.html</a>
|
||||
*/
|
||||
public class H2DataType<T> {
|
||||
public class H2DataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -58,7 +58,7 @@ import org.jooq.types.YearToMonth;
|
||||
* @see <a href="http://hsqldb.org/doc/guide/ch09.html#datatypes-section">http://hsqldb.org/doc/guide/ch09.html#datatypes-section</a>
|
||||
* @see <a href="http://hsqldb.org/doc/2.0/guide/sqlgeneral-chapt.html#sqlgeneral_types_ops-sect">http://hsqldb.org/doc/2.0/guide/sqlgeneral-chapt.html#sqlgeneral_types_ops-sect</a>
|
||||
*/
|
||||
public class HSQLDBDataType<T> {
|
||||
public class HSQLDBDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -54,7 +54,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @see <a href="http://docs.ingres.com/ingres/9.3/quel-reference-guide/1240-data-types">http://docs.ingres.com/ingres/9.3/quel-reference-guide/1240-data-types</a>
|
||||
* @see <a href="http://docs.ingres.com/ingres/10.0/sql-reference-guide/2638-storage-formats-of-data-types">http://docs.ingres.com/ingres/10.0/sql-reference-guide/2638-storage-formats-of-data-types</a>
|
||||
*/
|
||||
public class IngresDataType<T> {
|
||||
public class IngresDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -58,7 +58,7 @@ import org.jooq.types.UShort;
|
||||
* @see <a href="http://dev.mysql.com/doc/refman/5.5/en/data-types.html">http://dev.mysql.com/doc/refman/5.5/en/data-types.html</a>
|
||||
* @see <a href="http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html#function_cast">http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html#function_cast</a>
|
||||
*/
|
||||
public class MySQLDataType<T> {
|
||||
public class MySQLDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -57,7 +57,7 @@ import org.jooq.types.YearToMonth;
|
||||
* @see <a href="http://www.techonthenet.com/oracle/datatypes.php">http://www.techonthenet.com/oracle/datatypes.php</a>
|
||||
* @see <a href="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/datatypes.htm">http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/datatypes.htm</a>
|
||||
*/
|
||||
public class OracleDataType<T> {
|
||||
public class OracleDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -57,7 +57,7 @@ import org.jooq.types.YearToMonth;
|
||||
* @author Lukas Eder
|
||||
* @see <a href="http://www.postgresql.org/docs/9.0/interactive/datatype.html">http://www.postgresql.org/docs/9.0/interactive/datatype.html</a>
|
||||
*/
|
||||
public class PostgresDataType<T> {
|
||||
public class PostgresDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -52,7 +52,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @author Lukas Eder
|
||||
* @see <a href="http://www.sqlite.org/datatype3.html">http://www.sqlite.org/datatype3.html</a>
|
||||
*/
|
||||
public class SQLiteDataType<T> {
|
||||
public class SQLiteDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -52,7 +52,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @author Lukas Eder
|
||||
* @see <a href="http://msdn.microsoft.com/en-us/library/aa258271%28v=sql.80%29.aspx">http://msdn.microsoft.com/en-us/library/aa258271%28v=sql.80%29.aspx</a>
|
||||
*/
|
||||
public class SQLServerDataType<T> {
|
||||
public class SQLServerDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
@ -47,7 +47,7 @@ import org.jooq.impl.SQLDataType;
|
||||
* @see <a href="http://infocenter.sybase.com/help/topic/com.sybase.help.sqlanywhere.12.0.0/dbreference/rf-datatypes.html">http://infocenter.sybase.com/help/topic/com.sybase.help.sqlanywhere.12.0.0/dbreference/rf-datatypes.html</a>
|
||||
* @author Espen Stromsnes
|
||||
*/
|
||||
public class SybaseDataType<T> {
|
||||
public class SybaseDataType {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Default SQL data types and synonyms thereof
|
||||
|
||||
Loading…
Reference in New Issue
Block a user