enum Cql::Adapter
Overview
Represents a database adapter module.
Defined in:
cql.crEnum Members
-
Sqlite =
0
-
MySql =
1
-
Postgres =
2
Instance Method Summary
- #my_sql?
- #postgres?
-
#sql_type(type) : String
Returns the SQL type for the given type.
- #sqlite?
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"