SQLType

ldbc.sql.SQLType
trait SQLType[F[_]]

An object that is used to identify a generic SQL type, called a JDBC type or a vendor specific data type.

Type parameters

F

The effect type

Attributes

Source
SQLType.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def getName(): F[String]

Returns the SQLType name that represents a SQL data type.

Returns the SQLType name that represents a SQL data type.

Attributes

Returns

The name of this SQLType.

Source
SQLType.scala
def getVendor(): F[String]

Returns the name of the vendor that supports this data type. The value returned typically is the package name for this vendor.

Returns the name of the vendor that supports this data type. The value returned typically is the package name for this vendor.

Attributes

Returns

The name of the vendor for this data type

Source
SQLType.scala

Returns the vendor specific type number for the data type.

Returns the vendor specific type number for the data type.

Attributes

Returns

An Integer representing the vendor specific data type

Source
SQLType.scala