Module: TableQuery
- Defined in:
- lib/table-query.rb,
lib/table-query/type.rb,
lib/table-query/field.rb,
lib/table-query/query.rb,
lib/table-query/table.rb,
lib/table-query/version.rb,
lib/table-query/query-schema.rb,
lib/table-query/table-schema.rb,
lib/table-query/schema-loader.rb
Overview
TableQuery provides table definition schema and the query. You can get table data by easy way.
Defined Under Namespace
Classes: Field, Query, QuerySchema, SchemaLoader, Table, TableSchema, Type
Constant Summary collapse
- STANDARD_TYPES =
standard type list that includes
-
bool
-
int
-
float
-
string
-
symbol
-
time
-
date
-
[ Type::BOOL, Type::INT, Type::FLOAT, Type::STRING, Type::SYMBOL, Type::TIME, Type::DATE ]
- VERSION =
version number
"0.1.0"
Class Method Summary collapse
-
.table(path, options = {}) ⇒ Table
Create a table.