Files
erlang-sqlite3/include/sqlite3.hrl
Alexey Romanov 3f2ea22ca3 Documentation fix
2010-10-12 11:23:46 +04:00

11 lines
375 B
Erlang

-define(NULL_ATOM, null).
-type(sql_value() :: number() | ?NULL_ATOM | iodata()).
%%--------------------------------------------------------------------
%% @type sql_value() :: number() | 'null' | iodata().
%%
%% Values accepted in SQL statements include numbers, atom 'null',
%% and iodata().
%% @end
%%--------------------------------------------------------------------