diff options
Diffstat (limited to 'src/mysqlerl.hrl')
-rw-r--r-- | src/mysqlerl.hrl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mysqlerl.hrl b/src/mysqlerl.hrl index ab789ec..d378a52 100644 --- a/src/mysqlerl.hrl +++ b/src/mysqlerl.hrl @@ -1,3 +1,11 @@ -record(sql_query, {q}). +-record(sql_param_query, {q, params}). +-record(sql_select_count, {q}). +-record(sql_select, {q, pos, n}). +-record(sql_first, {}). +-record(sql_last, {}). +-record(sql_next, {}). +-record(sql_prev, {}). -record(sql_commit, {}). -record(sql_rollback, {}). +-record(sql_describe_table, {table}). |