Hoel
C Database abstraction library with json based language
|
Functions | |
char * | h_escape_string (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_with_quotes (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_sqlite (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_with_quotes_sqlite (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_mariadb (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_with_quotes_mariadb (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_pgsql (const struct _h_connection *conn, const char *unsafe) |
char * | h_escape_string_with_quotes_pgsql (const struct _h_connection *conn, const char *unsafe) |
char* h_escape_string | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
h_escape_string Escapes a string
conn | the connection to the database |
unsafe | the string to escape |
h_escape_string Escapes a string returned value must be free'd after use
char* h_escape_string_mariadb | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
escape a string This is an internal function, you should use h_escape_string instead returned value must be h_free'd after use
conn | the connection to the database |
unsafe | the string to escape |
char* h_escape_string_pgsql | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
escape a string This is an internal function, you should use h_escape_string instead returned value must be h_free'd after use
conn | the connection to the database |
unsafe | the string to escape |
char* h_escape_string_sqlite | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
escape a string returned value must be h_free'd after use This is an internal function, you should use h_escape_string instead
conn | the connection to the database |
unsafe | the string to escape |
char* h_escape_string_with_quotes | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
h_escape_string_with_quotes Escapes a string and returns it ready to be inserted in the query
conn | the connection to the database |
unsafe | the string to escape |
h_escape_string_with_quotes Escapes a string and returns it ready to be inserted in the query returned value must be h_h_free'd after use
char* h_escape_string_with_quotes_mariadb | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
escape a string This is an internal function, you should use h_escape_string_with_quotes instead returned value must be h_free'd after use
conn | the connection to the database |
unsafe | the string to escape |
char* h_escape_string_with_quotes_pgsql | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
escape a string This is an internal function, you should use h_escape_string_with_quotes instead returned value must be h_free'd after use
conn | the connection to the database |
unsafe | the string to escape |
char* h_escape_string_with_quotes_sqlite | ( | const struct _h_connection * | conn, |
const char * | unsafe | ||
) |
escape a string returned value must be h_free'd after use This is an internal function, you should use h_escape_string_with_quotes instead
conn | the connection to the database |
unsafe | the string to escape |