Moved documentation for sql_value() type to correct place

This commit is contained in:
Alexey Romanov
2010-10-12 11:42:23 +04:00
parent 3f2ea22ca3
commit 7629e1f38c
3 changed files with 28 additions and 24 deletions

View File

@@ -605,3 +605,10 @@ build_table_info([[ColName, ColType] | Tl], Acc) ->
build_table_info([[ColName, ColType, "PRIMARY", "KEY"] | Tl], Acc) ->
build_table_info(Tl, [{list_to_atom(ColName), primary_key} | Acc]).
%%--------------------------------------------------------------------
%% @type sql_value() = number() | 'null' | iodata().
%%
%% Values accepted in SQL statements include numbers, atom 'null',
%% and io:iolist().
%% @end
%%--------------------------------------------------------------------