HomeSort by: relevance | last modified time | path
    Searched refs:database (Results 1 - 25 of 219) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/bsd/kyua-cli/dist/utils/sqlite/
c_gate.hpp 43 class database;
46 /// Gateway to the raw C database of SQLite 3.
48 /// This class provides a mechanism to muck with the internals of the database
57 /// The C++ database that this class wraps.
58 database& _database;
61 database_c_gate(database&);
64 static database connect(::sqlite3*);
transaction.hpp 41 class database;
54 explicit transaction(database&);
55 friend class database;
database.hpp 29 /// \file utils/sqlite/database.hpp
30 /// Wrapper classes and utilities for the SQLite database state.
33 /// representing the database, and lightweight.
56 /// Constant for the database::open flags: open in read-only mode.
58 /// Constant for the database::open flags: open in read-write mode.
60 /// Constant for the database::open flags: create on open.
64 /// A RAII model for the SQLite 3 database.
66 /// This class holds the database of the SQLite 3 interface during its existence
68 /// on such database.
71 /// implicit database hold by the class, they use C++ types where appropriat
78 class database { class in namespace:utils::sqlite
    [all...]
c_gate.cpp 31 #include "utils/sqlite/database.hpp"
36 /// Creates a new gateway to an existing C++ SQLite database.
38 /// \param database_ The database to connect to. This object must remain alive
40 sqlite::database_c_gate::database_c_gate(database& database_) :
49 /// database. Only the corresponding database object controls when the SQLite 3
50 /// database is closed.
56 /// Creates a C++ database for a C SQLite 3 database.
58 /// \warning The created database object does NOT own the C database. You mus
    [all...]
database.cpp 29 #include "utils/sqlite/database.hpp"
47 /// Internal implementation for sqlite::database.
48 struct utils::sqlite::database::impl {
49 /// The SQLite 3 internal database.
52 /// Whether we own the database or not (to decide if we close it).
57 /// \param db_ The SQLite internal database.
82 /// \param file The path to the database file to be opened.
85 /// \return The opened database.
88 /// database.
89 /// \throw api_error If there is any problem opening the database
131 sqlite::database::database(void* db_, const bool owned_) : function in class:sqlite::database
    [all...]
c_gate_test.cpp 34 #include "utils/sqlite/database.hpp"
48 sqlite::database database = sqlite::database_c_gate::connect(raw_db); local
49 create_test_table(raw(database));
51 // If the wrapper object has closed the SQLite 3 database, we will misbehave
61 sqlite::database db = sqlite::database::in_memory();
database_test.cpp 29 #include "utils/sqlite/database.hpp"
46 sqlite::database db = sqlite::database::in_memory();
65 sqlite::database db = sqlite::database::open(fs::path("test.db"),
76 sqlite::database::open(fs::path("missing.db"), sqlite::open_readonly));
85 sqlite::database db = sqlite::database::open(fs::path("test.db"),
109 sqlite::database::open(fs::path("protected/test.db"),
120 // unconditionally write the temporary database to disk (even wit
    [all...]
transaction_test.cpp 34 #include "utils/sqlite/database.hpp"
46 /// \param db The SQLite database.
54 check_in_table(sqlite::database& db, const char* table_name,
74 sqlite::database db = sqlite::database::in_memory();
89 sqlite::database db = sqlite::database::in_memory();
105 sqlite::database db = sqlite::database::in_memory();
121 sqlite::database db = sqlite::database::in_memory()
    [all...]
  /src/external/bsd/openldap/dist/tests/data/
slapd-config-undo.conf 6 database @BACKEND@
14 database monitor
16 database config
slapd-dnssrv.conf 27 # database definitions
30 database monitor
32 database dnssrv
slapd-relay.conf 36 # database definitions
39 database @BACKEND@
47 database @RELAY@
73 database @RELAY@
76 ### which causes the target database to be selected after DN massaging
87 database @RELAY@
101 database monitor
slapd-2db.conf 28 # database definitions
31 database @BACKEND@
38 database @BACKEND@
46 database monitor
slapd-deref.conf 30 # database definitions
33 database @BACKEND@
43 database config
46 database monitor
slapd-config-naked.conf 9 database monitor
11 database config
slapd-glue.conf 28 # database definitions
31 database @BACKEND@
40 database @BACKEND@
49 database @BACKEND@
58 database monitor
slapd-ldapglue.conf 31 # database definitions
49 database ldap
58 database ldap
67 database @BACKEND@
75 database monitor
  /src/external/mpl/bind/dist/bin/tests/system/dlzexternal/ns1/
named.conf.j2 41 database "dlopen ../driver/.libs/dlzexternal.so example.nil";
45 database "dlopen ../driver/.libs/dlzexternal.so alternate.nil";
49 database "dlopen ../driver/.libs/dlzexternal.so example.org";
54 database "dlopen ../driver/.libs/dlzexternal.so 123456789.123456789.123456789.123456789.123456789.example.foo";
58 database "dlopen ../driver/.libs/dlzexternal.so other.nil";
63 database "dlopen ../driver/.libs/dlzexternal.so zone.nil";
68 database "dlopen ../driver/.libs/dlzexternal.so .";
  /src/external/bsd/openldap/dist/servers/slapd/
slapd.conf 49 # config database definitions
51 database config
58 # MDB database definitions
61 database mdb
69 # The database directory MUST exist prior to running slapd AND
77 # monitor database definitions
79 database monitor
  /src/external/bsd/openldap/dist/servers/slapd/back-sock/
searchexample.conf 21 database sock
  /src/external/bsd/openldap/dist/tests/data/regressions/its6794/
slapd-glue.conf 28 # database definitions
31 database @BACKEND@
42 database @BACKEND@
53 database @BACKEND@
64 database monitor
  /src/external/bsd/openldap/dist/tests/data/regressions/its9468/
slapd-proxy.conf 25 # database definitions
37 database @BACKEND@
44 database ldap
53 database ldap
62 database ldap
72 database ldap
81 database monito
  /src/external/bsd/kyua-cli/dist/store/
backend.hpp 30 /// Interface to the backend database.
42 class database;
60 metadata initialize(utils::sqlite::database&);
70 /// Public interface to the database store.
87 utils::sqlite::database& database(void);
metadata.hpp 30 /// Representation of the database metadata.
37 #include "utils/sqlite/database.hpp"
42 /// Representation of the database metadata.
44 /// Current version of the database schema.
47 /// Timestamp of the last metadata entry in the database.
56 static metadata fetch_latest(utils::sqlite::database&);
  /src/external/bsd/openldap/dist/tests/data/regressions/its8427/
slapd.conf 28 database monitor
30 database config
  /src/external/bsd/openldap/dist/tests/data/regressions/its8721/
slapd-backend.conf 25 # database definitions
31 # here the proxy is not only acting as a proxy, but it also has a local database dc=local,dc=com"
32 database @BACKEND@
38 database monitor

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 9