Skip to main content
Module

x/mandarinets/mod.ts>SQLTypes

Mandarine.TS is a typescript, decorator-driven framework that allows you to create server-side applications. Mandarine.TS provides a range of built-in solutions such as Dependency Injection, Components, ORM and more. Under its umbrella, Mandarine.TS has 4 modules: Core, Data, Security and MVC, these modules will offer you the requirements to build a Mandarine-powered application.
Latest
enum SQLTypes
import { SQLTypes } from "https://deno.land/x/mandarinets@v2.3.2/mod.ts";

Enum to define the SQL Types of every Column. The majority of this file is from the Java source code Part of this file has been written by Mandarine Collaborators

Members

ARRAY = 2003

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type ARRAY.

BIGINT

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BIGINT.

BIGSERIAL = 2019

BigSerial

BINARY

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BINARY.

BIT

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BIT.

BLOB = 2004

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BLOB.

BOOLEAN = 16

The constant in the Java programming language, somtimes referred to as a type code, that identifies the generic SQL type BOOLEAN.

CHAR = 1

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type CHAR.

CLOB = 2005

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type CLOB.

DATE = 91

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DATE.

DECIMAL = 3

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DECIMAL.

DISTINCT = 2001

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DISTINCT.

DOUBLE = 8

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DOUBLE.

FLOAT = 6

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type FLOAT.

INCREMENTS = 2018

Refers to an incremental type of value

INTEGER = 4

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type INTEGER.

JSON = 2015

Refers to a JSON object in the database

JSONB = 2017

Refers to a JSON Binary Object in the database

LONGNVARCHAR

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGNVARCHAR.

LONGVARBINARY

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGVARBINARY.

LONGVARCHAR

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGVARCHAR.

NCHAR

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NCHAR

NCLOB = 2011

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NCLOB.

NULL = 0

The constant in the Java programming language that identifies the generic SQL value NULL.

NUMERIC = 2

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NUMERIC.

NVARCHAR

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NVARCHAR.

OTHER = 1111

The constant in the Java programming language that indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.

REAL = 7

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REAL.

REF = 2006

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REF.

REF_CURSOR = 2012

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type {@code REF CURSOR}.

ROWID

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type ROWID

SMALLINT = 5

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type SMALLINT.

SQLXML = 2009

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type XML.

STRUCT = 2002

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type STRUCT.

TEXT = 2020

Refers to a big text type in the database

TIME = 92

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIME.

TIME_WITH_TIMEZONE = 2013

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type {@code TIME WITH TIMEZONE}.

TIMESTAMP = 93

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIMESTAMP.

TIMESTAMP_WITH_TIMEZONE = 2014

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type {@code TIMESTAMP WITH TIMEZONE}.

TINYINT

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TINYINT.

UUID = 2016

Refers to an UUID value, generated by Mandarine

VARBINARY

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type VARBINARY.

VARCHAR = 12

The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type VARCHAR.