Skip to content
Commits on Source (2)
build/
debug/
release/
zero-pinyin-service/
#include "sqlite3_util.h"
/**
* execute sql on sqlite3 db using sqlite3_exec().
*
* Returns: TRUE on success, FALSE otherwise. if FALSE, errmsg will be printed
* with g_warning().
*/
gboolean
sqlite3_exec_simple (sqlite3 *db, const char *sql)
{
......
......@@ -9,8 +9,14 @@ extern "C"
{
#endif
/**
* execute sql on sqlite3 db using sqlite3_exec().
*
* Returns: TRUE on success, FALSE otherwise. if FALSE, errmsg will be printed
* with g_warning().
*/
gboolean sqlite3_exec_simple (sqlite3 *db, const char *sql);
/**
* copy src_dbname to dest_dbname using sqlite3_backup_step().
*
......