| create/1 | Create a SQL view from a textual specification. |
| create/2 | Create a SQL view from a textual specification. |
| create_empty_table/1 | |
| create_table_with_values/2 | Insert in a SQL table the given rows. |
| get_value/2 | Given a SQL table and a list of rows, return the values of those rows. |
| insert_row/2 |
create(Specification) -> any()
Create a SQL view from a textual specification.
create(OutputId, Specification) -> any()
Create a SQL view from a textual specification.
create_empty_table(TableName) -> any()
create_table_with_values(TableName, Args) -> any()
Insert in a SQL table the given rows.
get_value(TableName, Rows) -> any()
Given a SQL table and a list of rows, return the values of those rows.
insert_row(TableName, Row) -> any()
Generated by EDoc