enum Cql::Adapter

Overview

Represents a database adapter module.

Defined in:

cql.cr

Enum Members

Sqlite = 0
MySql = 1
Postgres = 2

Instance Method Summary

Instance Method Detail

def my_sql? #

[View source]
def postgres? #

[View source]
def sql_type(type) : String #

Returns the SQL type for the given type. @param type [Type] the type @return [String] the SQL type Example Getting the SQL type

Cql::Adapter::Sqlite.sql_type(Int32) # => "INTEGER"

[View source]
def sqlite? #

[View source]