Lines Matching defs:database
32 * A simple database driver that interfaces to a PostgreSQL database. This
34 * connection to the database per zone, which is inefficient. It also may
46 char *database;
57 * Canonicalize a string before writing it to the database.
74 * Connect to the database.
78 dbi->conn = PQsetdbLogin(dbi->host, NULL, NULL, NULL, dbi->database,
100 * This database operates on absolute names.
175 * Issue an SQL query to return all nodes in the database and fill the
230 * Create a connection to the database and save any necessary information
233 * argv[0] is the name of the database
256 dbi->database = NULL;
271 STRDUP_OR_FAIL(dbi->database, argv[0]);
293 * Close the connection to the database.
304 if (dbi->database != NULL)
305 isc_mem_free(ns_g_mctx, dbi->database);
314 if (dbi->database != NULL)
315 isc_mem_free(ns_g_mctx, dbi->database);
320 * Since the SQL database corresponds to a zone, the authority data should