|
Functions |
alp_status_t | alp_sal_statement_initialize (AlpSALHandle sal, AlpSALStatement **stmt, const char *sql) |
alp_status_t | alp_sal_statement_set_text (AlpSALStatement *stmt, int16_t pos, const char *s, bool copy) |
alp_status_t | alp_sal_statement_set_int (AlpSALStatement *stmt, int16_t pos, int32_t n) |
alp_status_t | alp_sal_statement_set_int64 (AlpSALStatement *stmt, int16_t pos, int64_t n) |
alp_status_t | alp_sal_statement_set_blob (AlpSALStatement *stmt, int16_t pos, void *blob, int32_t size, bool copy) |
alp_status_t | alp_sal_statement_set_float (AlpSALStatement *stmt, int16_t pos, float f) |
alp_status_t | alp_sal_statement_execute (AlpSALStatement *stmt) |
alp_status_t | alp_sal_statement_destroy (AlpSALStatement *stmt) |
alp_status_t | alp_sal_statement_next_result (AlpSALStatement *stmt) |
int32_t | alp_sal_statement_get_int (AlpSALStatement *stmt, int pos) |
int64_t | alp_sal_statement_get_int64 (AlpSALStatement *stmt, int pos) |
char * | alp_sal_statement_get_text (AlpSALStatement *stmt, int pos, bool copy) |
void * | alp_sal_statement_get_blob (AlpSALStatement *stmt, int pos, int32_t *size, bool copy) |
float | alp_sal_statement_get_float (AlpSALStatement *stmt, int pos) |
bool | alp_sal_statement_is_null (AlpSALStatement *stmt, int pos) |
alp_status_t | alp_sal_statement_reset (AlpSALStatement *stmt) |
AlpSALHandle | alp_sal_statement_get_handle (AlpSALStatement *stmt) |