Revision 127, 1.6 KB
(checked in by andreu, 12 years ago)
|
Change copyright timestamp - Some correction on WEB Section
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | |
---|
22 | |
---|
23 | |
---|
24 | |
---|
25 | #ifndef MYSQL_MGMT_H |
---|
26 | #define MYSQL_MGMT_H |
---|
27 | |
---|
28 | #include <mysql/mysql.h> |
---|
29 | #include <stdio.h> |
---|
30 | #include <stdlib.h> |
---|
31 | #include <time.h> |
---|
32 | #include <stdlib.h> |
---|
33 | |
---|
34 | #define DB_HOST "0.0.0.0" |
---|
35 | #define DB_USER "admin" |
---|
36 | #define DB_NAME "collector_control" |
---|
37 | |
---|
38 | #define REQ_OUTPUT_TYPE "SELECT * FROM output_type" |
---|
39 | #define REQ_OUTPUT_TABLE "SELECT IDO, TYPE_ID, VALUE from output" |
---|
40 | #define REQ_FIELDS_TO_RECORD "SELECT IDR, V9_FIELDS from fields_to_record" |
---|
41 | #define REQ_FILTRES_TABLE "SELECT ID, IDR, IDO, BEGIN, END, Tests from filtres where STATUS='0'" |
---|
42 | |
---|
43 | char *get_dbpass(); |
---|
44 | MYSQL *init_connection(); |
---|
45 | void close_connection(MYSQL *); |
---|
46 | void get_info_bd(MYSQL *); |
---|
47 | p_rules get_rules(MYSQL *, p_rules); |
---|
48 | void get_fields_to_record(MYSQL *, unsigned short); |
---|
49 | void get_output(MYSQL *, unsigned short, p_rules); |
---|
50 | |
---|
51 | #endif |
---|