summaryrefslogtreecommitdiff
path: root/src/glibext/glinecursor.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-05-08 09:28:58 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-05-08 09:28:58 (GMT)
commit86ba53836168bcc591f532f2419fa290de601572 (patch)
tree91c96614d6f7e3fd75800a52c0166c91c7f8ef31 /src/glibext/glinecursor.c
parent28e53c2498903090182ebeb128347fcd92896cd9 (diff)
Updated the core functions dealing with SQLite databases.
Diffstat (limited to 'src/glibext/glinecursor.c')
-rw-r--r--src/glibext/glinecursor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glibext/glinecursor.c b/src/glibext/glinecursor.c
index 64521f4..bef9cb6 100644
--- a/src/glibext/glinecursor.c
+++ b/src/glibext/glinecursor.c
@@ -356,7 +356,7 @@ bool g_line_cursor_setup_load(const GLineCursor *cursor, const char *base, bound
{
bool result; /* Bilan à renvoyer */
- result = G_LINE_CURSOR_GET_CLASS(cursor)->setup_load(base, values, count);
+ result = G_LINE_CURSOR_GET_CLASS(cursor)->store(NULL, base, values, count);
return result;
@@ -404,11 +404,11 @@ bool g_line_cursor_load(GLineCursor *cursor, const char *base, const bound_value
* *
******************************************************************************/
-bool g_line_cursor_prepare_db_statement(const GLineCursor *cursor, const char *base, bound_value **values, size_t *count)
+bool g_line_cursor_store(const GLineCursor *cursor, const char *base, bound_value **values, size_t *count)
{
bool result; /* Bilan à renvoyer */
- result = G_LINE_CURSOR_GET_CLASS(cursor)->prepare(cursor, base, values, count);
+ result = G_LINE_CURSOR_GET_CLASS(cursor)->store(cursor, base, values, count);
return result;