microsoft.sql.Types Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mssql-jdbc Show documentation
Show all versions of mssql-jdbc Show documentation
Microsoft JDBC Driver for SQL Server.
/*
* Microsoft JDBC Driver for SQL Server
*
* Copyright(c) Microsoft Corporation All rights reserved.
*
* This program is made available under the terms of the MIT License. See the LICENSE file in the project root for more information.
*/
package microsoft.sql;
/**
* The class that defines the constants that are used to identify the SQL types that are specific to Microsoft SQL Server.
*
* This class is never instantiated.
*/
public final class Types extends Object {
private Types() {
// not reached
}
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type DATETIMEOFFSET.
*/
public static final int DATETIMEOFFSET = -155;
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type STRUCTURED.
*/
public static final int STRUCTURED = -153;
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type DATETIME.
*/
public static final int DATETIME = -151;
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type SMALLDATETIME.
*/
public static final int SMALLDATETIME = -150;
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type MONEY.
*/
public static final int MONEY = -148;
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type SMALLMONEY.
*/
public static final int SMALLMONEY = -146;
/*
* The constant in the Java programming language, sometimes referred to as a type code, that identifies the Microsoft SQL type GUID.
*/
public static final int GUID = -145;
}