enum
CQL::Adapter
Overview
Represents a database adapter module.
Defined in:
cql.crEnum Members
-
SQLite =
0
-
MySql =
1
-
Postgres =
2
Instance Method Summary
- #dialect
-
#my_sql?
Returns
true
if this enum value equalsMySql
-
#postgres?
Returns
true
if this enum value equalsPostgres
-
#sq_lite?
Returns
true
if this enum value equalsSQLite
-
#sql_type(type) : String
Returns the SQL type for the given type.
Instance Method Detail
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"