Hoel
C Database abstraction library with json based language
|
Go to the documentation of this file.
52 #define HOEL_DB_TYPE_SQLITE 0
53 #define HOEL_DB_TYPE_MARIADB 1
54 #define HOEL_DB_TYPE_PGSQL 2
56 #define HOEL_COL_TYPE_INT 0
57 #define HOEL_COL_TYPE_DOUBLE 1
58 #define HOEL_COL_TYPE_TEXT 2
59 #define HOEL_COL_TYPE_DATE 3
60 #define HOEL_COL_TYPE_BLOB 4
61 #define HOEL_COL_TYPE_BOOL 5
62 #define HOEL_COL_TYPE_NULL 5
66 #define H_ERROR_PARAMS 2
67 #define H_ERROR_CONNECTION 3
68 #define H_ERROR_QUERY 4
69 #define H_ERROR_MEMORY 99
71 #define H_OPTION_NONE 0x0000
72 #define H_OPTION_SELECT 0x0001
73 #define H_OPTION_EXEC 0x0010
366 int h_select(
const struct _h_connection * conn,
const json_t * j_query, json_t ** j_result,
char ** generated_query);
594 struct _h_connection *
h_connect_mariadb(
const char * host,
const char * user,
const char * passwd,
const char * db,
const unsigned int port,
const char * unix_socket);
struct _h_data * h_query_last_insert_id(const struct _h_connection *conn)
Definition: hoel.c:321
struct _h_connection * h_connect_mariadb(const char *host, const char *user, const char *passwd, const char *db, const unsigned int port, const char *unix_socket)
Definition: hoel-mariadb.c:428
struct _h_data * h_get_mariadb_value(const char *value, const unsigned long length, const int m_type)
unsigned int nb_columns
Definition: hoel.h:142
struct _h_connection * h_connect_sqlite(const char *db_path)
Definition: hoel-sqlite.c:310
int h_clean_result(struct _h_result *result)
Definition: hoel.c:416
long long int value
Definition: hoel.h:96
int h_select_query_sqlite(const struct _h_connection *conn, const char *query, struct _h_result *result)
int h_query_delete(const struct _h_connection *conn, const char *query)
Definition: hoel.c:378
int h_clean_data_full(struct _h_data *data)
Definition: hoel.c:460
json_t * h_last_insert_id(const struct _h_connection *conn)
Definition: hoel-simple-json.c:662
int h_insert(const struct _h_connection *conn, const json_t *j_query, char **generated_query)
Definition: hoel-simple-json.c:592
void h_free(void *data)
Definition: hoel.c:32
int h_select(const struct _h_connection *conn, const json_t *j_query, json_t **j_result, char **generated_query)
Definition: hoel-simple-json.c:458
int h_query_insert(const struct _h_connection *conn, const char *query)
Definition: hoel.c:308
size_t length
Definition: hoel.h:125
int h_execute_query_pgsql(const struct _h_connection *conn, const char *query, struct _h_result *result)
int type
Definition: hoel.h:133
int type
Definition: hoel.h:88
char * h_escape_string(const struct _h_connection *conn, const char *unsafe)
Definition: hoel.c:72
size_t length
Definition: hoel.h:117
struct tm value
Definition: hoel.h:110
void * value
Definition: hoel.h:126
long long int h_last_insert_id_mariadb(const struct _h_connection *conn)
void h_close_mariadb(struct _h_connection *conn)
Definition: hoel-mariadb.c:439
unsigned int nb_rows
Definition: hoel.h:141
int h_exec_query_sqlite(const struct _h_connection *conn, const char *query)
char * h_escape_string_mariadb(const struct _h_connection *conn, const char *unsafe)
int h_update(const struct _h_connection *conn, const json_t *j_query, char **generated_query)
Definition: hoel-simple-json.c:700
long long int h_last_insert_id_sqlite(const struct _h_connection *conn)
int h_execute_query_json_mariadb(const struct _h_connection *conn, const char *query, json_t **j_result)
int h_execute_query_mariadb(const struct _h_connection *conn, const char *query, struct _h_result *result)
int h_delete(const struct _h_connection *conn, const json_t *j_query, char **generated_query)
Definition: hoel-simple-json.c:750
char * h_escape_string_with_quotes_mariadb(const struct _h_connection *conn, const char *unsafe)
int h_clean_connection(struct _h_connection *conn)
Definition: hoel.c:622
long long int h_last_insert_id_pgsql(const struct _h_connection *conn)
int h_execute_query(const struct _h_connection *conn, const char *query, struct _h_result *result, int options)
Definition: hoel.c:135
char * h_escape_string_with_quotes(const struct _h_connection *conn, const char *unsafe)
Definition: hoel.c:101
int h_clean_data(struct _h_data *data)
Definition: hoel.c:439
int h_query_select_json(const struct _h_connection *conn, const char *query, json_t **j_result)
Definition: hoel.c:404
struct _h_data ** data
Definition: hoel.h:143
int h_execute_query_json_pgsql(const struct _h_connection *conn, const char *query, json_t **j_result)
void * connection
Definition: hoel.h:89
int h_query_update(const struct _h_connection *conn, const char *query)
Definition: hoel.c:365
void * t_data
Definition: hoel.h:134
char * h_escape_string_with_quotes_sqlite(const struct _h_connection *conn, const char *unsafe)
char * h_escape_string_with_quotes_pgsql(const struct _h_connection *conn, const char *unsafe)
char * value
Definition: hoel.h:118
int h_query_select(const struct _h_connection *conn, const char *query, struct _h_result *result)
Definition: hoel.c:391
char * h_escape_string_pgsql(const struct _h_connection *conn, const char *unsafe)
void h_close_pgsql(struct _h_connection *conn)
Definition: hoel-pgsql.c:409
int h_execute_query_json(const struct _h_connection *conn, const char *query, json_t **j_result)
Definition: hoel.c:170
int h_execute_query_json_sqlite(const struct _h_connection *conn, const char *query, json_t **j_result)
struct _h_connection * h_connect_pgsql(const char *conninfo)
Definition: hoel-pgsql.c:403
char * h_escape_string_sqlite(const struct _h_connection *conn, const char *unsafe)
void h_close_sqlite(struct _h_connection *conn)
Definition: hoel-sqlite.c:316
int h_close_db(struct _h_connection *conn)
Definition: hoel.c:40