OpenVPN
customer_database.c
Go to the documentation of this file.
1 /*
2  * Copyright 2008 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <stddef.h>
17 #include <stdio.h>
18 #include <database.h>
19 #ifdef _WIN32
20 #define snprintf _snprintf
21 #endif /* _WIN32 */
22 
24 unsigned int get_customer_id_by_name(
25  DatabaseConnection * const connection,
26  const char * const customer_name);
27 
28 /* Connect to the database containing customer information. */
30  return connect_to_database("customers.abcd.org", 321);
31 }
32 
33 /* Find the ID of a customer by his/her name returning a value > 0 if
34  * successful, 0 otherwise. */
36  DatabaseConnection * const connection,
37  const char * const customer_name) {
38  char query_string[256];
39  int number_of_results;
40  void **results;
41  snprintf(query_string, sizeof(query_string),
42  "SELECT ID FROM CUSTOMERS WHERE NAME = %s", customer_name);
43  number_of_results = connection->query_database(connection, query_string,
44  &results);
45 
46  if (number_of_results != 1) {
47  return -1;
48  }
49 
50  return (unsigned int)*((int *)results);
51 }
DatabaseConnection * connect_to_database(const char *const database_url, const unsigned int port)
#define snprintf
unsigned int get_customer_id_by_name(DatabaseConnection *const connection, const char *const customer_name)
QueryDatabase query_database
Definition: database.h:31
DatabaseConnection * connect_to_customer_database(void)