Home
last modified time | relevance | path

Searched refs:sql (Results 1 – 25 of 75) sorted by relevance

123

/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/
H A DREADME3 Back-sql can be tested with sql-test000-read; it requires a bit of work
7 a quick'n'dirty installation of back-sql and of the related RDBMS
19 1) slapd must be compiled with back-sql support, i.e. configure
20 with --enable-sql switch. This requires an implementation of the ODBC
36 Description = Example for OpenLDAP's back-sql
65 Description = Example for OpenLDAP's back-sql
113 [root@localhost]# cd $SOURCES/servers/slapd/back-sql/rdbms_depend/pgsql/
116 [root@localhost]# psql -U manager example < backsql_create.sql
117 [root@localhost]# psql -U manager example < testdb_create.sql
118 [root@localhost]# psql -U manager example < testdb_data.sql
[all …]
/netbsd-src/external/bsd/openldap/dist/tests/
H A DMakefile.in31 @$(MAKE) sql
42 sql test-sql: sql-$(BUILD_SQL)
43 sql-no:
46 sql-yes sql-mod: FORCE
48 @$(RUN) -b sql sql-all
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/docs/
H A Dinstall5 To build slapd with back-sql under Unix you need to build and install
9 "configure <other options you need> --enable-sql", then "make" -
10 this should build back-sql-enabled slapd, provided that you have iODBC/unixODBC
13 Administrators Guide, adding --enable-sql option to configure, and
16 Under Win32/MSVC++, I modified the workspace so that back-sql is built into
25 with help of back-sql. Assuming that you have your data in some SQL-compliant
30 See samples provided in "back-sql/RDBMS_DEPENDENT/" subdirectory.
52 3. Creating and using back-sql metatables
61 Execute "backsql_create.sql" from that subdirectory (or edited one),
65 "mysql < xxx.sql" for mySQL, Query Analyzer+Open query file for MS SQL,
[all …]
H A Dconcept1 The SQL backend is described in the slapd-sql(5) manual page.
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/timesten/
H A Dttcreate_schema.sh1 ttIsql -connStr "DSN=ldap_tt;Overwrite=1" -f backsql_create.sql
2 ttIsql -connStr "DSN=ldap_tt" -f tttestdb_create.sql
3 ttIsql -connStr "DSN=ldap_tt" -f tttestdb_data.sql
4 ttIsql -connStr "DSN=ldap_tt" -f tttestdb_metadata.sql
H A Dcreate_schema.sh1 ttIsql -connStr "DSN=ldap_tt;Overwrite=1" -f backsql_create.sql
2 ttIsql -connStr "DSN=ldap_tt" -f testdb_create.sql
3 ttIsql -connStr "DSN=ldap_tt" -f testdb_data.sql
4 ttIsql -connStr "DSN=ldap_tt" -f testdb_metadata.sql
H A Dslapd.conf23 database sql
/netbsd-src/external/bsd/kyua-cli/dist/utils/sqlite/
H A Ddatabase.cpp246 sqlite::database::exec(const std::string& sql) in exec() argument
248 const int error = ::sqlite3_exec(_pimpl->db, sql.c_str(), NULL, NULL, NULL); in exec()
273 sqlite::database::create_statement(const std::string& sql) in create_statement() argument
275 LD(F("Creating statement: %s") % sql); in create_statement()
277 const int error = ::sqlite3_prepare_v2(_pimpl->db, sql.c_str(), in create_statement()
278 sql.length() + 1, &stmt, NULL); in create_statement()
/netbsd-src/external/bsd/kyua-cli/tests/kyua-cli/store/
H A DMakefile25 FILES= schema_v1.sql \
26 testdata_v1.sql \
27 testdata_v2.sql
/netbsd-src/external/bsd/kyua-cli/share/kyua-cli/store/
H A DMakefile10 FILES= migrate_v1_v2.sql \
11 schema_v2.sql
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dbackends.sdf476 H3: back-sql Configuration
480 OpenLDAP source and can be found in {{F: servers/slapd/back-sql/rdbms_depend/README}}
487 > Description = Example for OpenLDAP's back-sql
517 database you've just created with the following files, as found in {{F: servers/slapd/back-sql/rdbm…
519 > backsql_create.sql, testdb_create.sql, testdb_data.sql, testdb_metadata.sql
524 > [root@localhost]# SLAPD_USE_SQL=pgsql ./run sql-test000
529 > Running ./scripts/sql-test000-read...
546 There is another test, sql-test900-write, which is currently enabled
549 Using {{F: sql-test000}}, files in {{F: servers/slapd/back-sql/rdbms_depend/pgsql/}}
556 {{slapd-sql}}(5) and {{F: servers/slapd/back-sql/rdbms_depend/README}}
H A Dappendix-upgrading.sdf50 H2: perl and sql backends
52 The {{slapd-perl}}(5) and {{slapd-sql}}(5) backends are now deprecated and no longer automatically …
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/
H A DMakefile.in17 entry-id.c schema-map.c sql-wrap.c modify.c util.c \
20 entry-id.lo schema-map.lo sql-wrap.lo modify.lo util.lo \
/netbsd-src/lib/lua/sqlite/
H A Dsqlite.c137 const char *sql; in db_prepare() local
141 sql = luaL_checkstring(L, 2); in db_prepare()
142 lua_pushinteger(L, sqlite3_prepare_v2(*db, sql, in db_prepare()
143 (int)strlen(sql) + 1, stmt, NULL)); in db_prepare()
/netbsd-src/external/bsd/openldap/dist/tests/scripts/
H A Ddefines.sh92 SQLCONCURRENCYDIR=$DATADIR/sql-concurrency
143 SQLCONF=$DATADIR/slapd-sql.conf
144 SQLSRPROVIDERCONF=$DATADIR/slapd-sql-syncrepl-provider.conf
330 SQLADD=$DATADIR/sql-add.ldif
437 SQLREAD=$DATADIR/sql-read.out
438 SQLWRITE=$DATADIR/sql-write.out
H A Dsql-all49 for CMD in $SRCDIR/scripts/sql-test*; do
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/mssql/
H A Dslapd.conf23 database sql
/netbsd-src/share/examples/puffs/pgfs/
H A DREADME12 # psql -f newfs.sql hoge
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/mysql/
H A Dslapd.conf23 database sql
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/oracle/
H A Dslapd.conf23 database sql
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/ibmdb2/
H A Dslapd.conf23 database sql
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/pgsql/
H A Dslapd.conf23 database sql
/netbsd-src/external/bsd/openldap/dist/tests/data/
H A Dslapd-sql.conf44 database sql
H A Dslapd-sql-syncrepl-provider.conf46 database sql
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3ext.h76 int (*complete)(const char*sql);
77 int (*complete16)(const void*sql);
207 const char *(*sql)(sqlite3_stmt*); member
557 #define sqlite3_sql sqlite3_api->sql

123