]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_glue.h
Revert to using LGPLv3 for simple scripts
[bacula/bacula] / bacula / src / cats / sql_glue.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2009-2014 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from many
7    others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    Bacula® is a registered trademark of Kern Sibbald.
15 */
16 #ifndef __SQL_GLUE_H_
17 #define __SQL_GLUE_H_ 1
18
19 /*
20  * Prototypes for entry points into the different backends.
21  */
22 bool db_match_database(B_DB *mdb, const char *db_driver, const char *db_name,
23                        const char *db_address, int db_port);
24 B_DB *db_clone_database_connection(B_DB *mdb, JCR *jcr, bool mult_db_connections);
25 int db_get_type_index(B_DB *mdb);
26 const char *db_get_type(B_DB *mdb);
27 B_DB *db_init_database(JCR *jcr, const char *db_driver, const char *db_name,
28               const char *db_user, const char *db_password,
29               const char *db_address, int db_port,
30               const char *db_socket, bool mult_db_connections, bool disable_batch_insert);
31 bool db_open_database(JCR *jcr, B_DB *mdb);
32 void db_close_database(JCR *jcr, B_DB *mdb);
33 void db_thread_cleanup(B_DB *mdb);
34 void db_escape_string(JCR *jcr, B_DB *mdb, char *snew, char *old, int len);
35 char *db_escape_object(JCR *jcr, B_DB *mdb, char *old, int len);
36 void db_unescape_object(JCR *jcr, B_DB *mdb,
37                         char *from, int32_t expected_len,
38                         POOLMEM **dest, int32_t *len);
39 void db_start_transaction(JCR *jcr, B_DB *mdb);
40 void db_end_transaction(JCR *jcr, B_DB *mdb);
41 bool db_sql_query(B_DB *mdb, const char *query, int flags=0);
42 bool db_sql_query(B_DB *mdb, const char *query, DB_RESULT_HANDLER *result_handler, void *ctx);
43 bool db_big_sql_query(B_DB *mdb, const char *query, DB_RESULT_HANDLER *result_handler, void *ctx);
44
45 #ifdef _BDB_PRIV_INTERFACE_
46 void sql_free_result(B_DB *mdb);
47 SQL_ROW sql_fetch_row(B_DB *mdb);
48 bool sql_query(B_DB *mdb, const char *query, int flags=0);
49 const char *sql_strerror(B_DB *mdb);
50 int sql_num_rows(B_DB *mdb);
51 void sql_data_seek(B_DB *mdb, int row);
52 int sql_affected_rows(B_DB *mdb);
53 uint64_t sql_insert_autokey_record(B_DB *mdb, const char *query, const char *table_name);
54 void sql_field_seek(B_DB *mdb, int field);
55 SQL_FIELD *sql_fetch_field(B_DB *mdb);
56 int sql_num_fields(B_DB *mdb);
57 bool sql_field_is_not_null(B_DB *mdb, int field_type);
58 bool sql_field_is_numeric(B_DB *mdb, int field_type);
59 bool sql_batch_start(JCR *jcr, B_DB *mdb);
60 bool sql_batch_end(JCR *jcr, B_DB *mdb, const char *error);
61 bool sql_batch_insert(JCR *jcr, B_DB *mdb, ATTR_DBR *ar);
62 #endif /* _BDB_PRIV_INTERFACE_ */
63 #endif /* __SQL_GLUE_H_ */