Merge branch 'master' into expose-backup-api

This commit is contained in:
Maas-Maarten Zeeman
2022-01-07 13:45:51 +01:00
3 changed files with 7 additions and 10 deletions

View File

@@ -58,5 +58,8 @@ CFlags =
race_conditions, race_conditions,
underspecs underspecs
]} ]}
]} ]},
{hex, [{doc, edoc}]}
]. ].

View File

@@ -1,9 +1,6 @@
%% @author Maas-Maarten Zeeman <mmzeeman@xs4all.nl> %% @author Maas-Maarten Zeeman <mmzeeman@xs4all.nl>
%% @copyright 2011 - 2017 Maas-Maarten Zeeman %% @copyright 2011 - 2022 Maas-Maarten Zeeman
%% @doc Erlang API for sqlite3 databases %% @doc Erlang API for sqlite3 databases
%% Copyright 2011 - 2017 Maas-Maarten Zeeman
%% %%
%% Licensed under the Apache License, Version 2.0 (the "License"); %% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License. %% you may not use this file except in compliance with the License.
@@ -422,7 +419,6 @@ last_insert_rowid(#connection{raw_connection=RawConnection}, Timeout) ->
ok = esqlite3_nif:last_insert_rowid(RawConnection, Ref, self()), ok = esqlite3_nif:last_insert_rowid(RawConnection, Ref, self()),
receive_answer(RawConnection, Ref, Timeout). receive_answer(RawConnection, Ref, Timeout).
%% @doc Get autocommit
%% @doc Check if the connection is in auto-commit mode. %% @doc Check if the connection is in auto-commit mode.
%% See: [https://sqlite.org/c3ref/get_autocommit.html] for more details. %% See: [https://sqlite.org/c3ref/get_autocommit.html] for more details.
%% %%

View File

@@ -1,9 +1,7 @@
%% @author Maas-Maarten Zeeman <mmzeeman@xs4all.nl> %% @author Maas-Maarten Zeeman <mmzeeman@xs4all.nl>
%% @copyright 2011 - 2017 Maas-Maarten Zeeman %% @copyright 2011 - 2022 Maas-Maarten Zeeman
%%
%% @doc Low level erlang API for sqlite3 databases %% @doc Low level erlang API for sqlite3 databases
%% Copyright 2011 - 2017 Maas-Maarten Zeeman
%% %%
%% Licensed under the Apache License, Version 2.0 (the "License"); %% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License. %% you may not use this file except in compliance with the License.