Home
last modified time | relevance | path

Searched refs:_connectString (Results 1 – 17 of 17) sorted by relevance

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/client/
H A Dmongo_uri.h184 return _connectString.isValid(); in isValid()
188 return _connectString; in connectionString()
192 return _connectString.toString(); in toString()
196 return _connectString.getSetName(); in getSetName()
200 return _connectString.getServers(); in getServers()
225 return _connectString.type(); in type()
228 explicit MongoURI(const ConnectionString& connectString) : _connectString(connectString){}; in MongoURI()
243 : _connectString(std::move(connectString)), in MongoURI()
254 ConnectionString _connectString; variable
263 return ss << uri._connectString;
[all …]
H A Dmongo_uri_connect.cpp183 _connectString.connect(applicationName, errmsg, socketTimeoutSecs.value_or(0.0), this)); in connect()
H A Dmongo_uri.cpp531 const auto& servers = _connectString.getServers(); in canonicalizeURIAsString()
/dports/devel/poco/poco-1.10.1-all/Data/ODBC/testsuite/src/
H A DODBCPostgreSQLTest.cpp78 std::string ODBCPostgreSQLTest::_connectString = member in ODBCPostgreSQLTest
118 ODBCTest(name, _pSession, _pExecutor, _dsn, _uid, _pwd, _connectString) in ODBCPostgreSQLTest()
138 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_IMMEDIATE, SQLExecu… in testBareboneODBC()
139 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_IMMEDIATE, SQLExecu… in testBareboneODBC()
140 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_AT_EXEC, SQLExecuto… in testBareboneODBC()
141 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_AT_EXEC, SQLExecuto… in testBareboneODBC()
151 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_IMMEDIATE, SQLExecu… in testBareboneODBC()
152 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_IMMEDIATE, SQLExecu… in testBareboneODBC()
153 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_AT_EXEC, SQLExecuto… in testBareboneODBC()
154 …executor().bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_AT_EXEC, SQLExecuto… in testBareboneODBC()
[all …]
H A DODBCOracleTest.cpp59 std::string ODBCOracleTest::_connectString = "DRIVER={" ORACLE_ODBC_DRIVER "};" member in ODBCOracleTest
98 ODBCTest(name, _pSession, _pExecutor, _dsn, _uid, _pwd, _connectString) in ODBCOracleTest()
119 …_pExecutor->bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_IMMEDIATE, SQLExec… in testBarebone()
120 …_pExecutor->bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_AT_EXEC, SQLExecut… in testBarebone()
121 …_pExecutor->bareboneODBCTest(_connectString, tableCreateString, SQLExecutor::PB_AT_EXEC, SQLExecut… in testBarebone()
142 _pExecutor->bareboneODBCMultiResultTest(_connectString, in testBarebone()
148 _pExecutor->bareboneODBCMultiResultTest(_connectString, in testBarebone()
154 _pExecutor->bareboneODBCMultiResultTest(_connectString, in testBarebone()
160 _pExecutor->bareboneODBCMultiResultTest(_connectString, in testBarebone()
592 Session localSession("ODBC", _connectString); in testAutoTransaction()
[all …]
H A DODBCSQLiteTest.h61 static std::string _connectString; variable
H A DODBCPostgreSQLTest.h92 static std::string _connectString; variable
H A DODBCDB2Test.h69 static std::string _connectString; variable
H A DODBCSQLServerTest.h84 static std::string _connectString; variable
H A DODBCMySQLTest.h75 static std::string _connectString; variable
H A DODBCOracleTest.h80 static std::string _connectString; variable
H A DODBCSQLiteTest.cpp48 std::string ODBCSQLiteTest::_connectString = "Driver=" SQLITE_ODBC_DRIVER member in ODBCSQLiteTest
53 ODBCTest(name, _pSession, _pExecutor, _dsn, _uid, _pwd, _connectString) in ODBCSQLiteTest()
317 if ((_pSession = init(_driver, _dsn, _uid, _pwd, _connectString))) in suite()
H A DODBCMySQLTest.cpp57 std::string ODBCMySQLTest::_connectString = "DRIVER={" MYSQL_ODBC_DRIVER "};" member in ODBCMySQLTest
65 ODBCTest(name, _pSession, _pExecutor, _dsn, _uid, _pwd, _connectString) in ODBCMySQLTest()
415 if ((_pSession = init(_driver, _dsn, _uid, _pwd, _connectString, _db))) in suite()
H A DODBCDB2Test.cpp60 std::string ODBCDB2Test::_connectString = "Driver=" DB2_ODBC_DRIVER ";" member in ODBCDB2Test
70 ODBCTest(name, _pSession, _pExecutor, _dsn, _uid, _pwd, _connectString) in ODBCDB2Test()
588 if ((_pSession = init(_driver, _dsn, _uid, _pwd, _connectString))) in suite()
H A DODBCSQLServerTest.cpp97 std::string ODBCSQLServerTest::_connectString = "DRIVER=" MS_SQL_SERVER_ODBC_DRIVER ";" member in ODBCSQLServerTest
110 ODBCTest(name, _pSession, _pExecutor, _dsn, _uid, _pwd, _connectString) in ODBCSQLServerTest()
729 if ((_pSession = init(_driver, _dsn, _uid, _pwd, _connectString, _db))) in suite()
/dports/databases/mysql55-client/mysql-5.5.62/storage/ndb/src/kernel/vm/
H A DConfiguration.cpp160 _connectString = strdup(opt_connect_str); in init()
213 _connectString = 0; in Configuration()
227 free(_connectString); in ~Configuration()
537 return _connectString; in getConnectString()
542 if(_connectString != 0) in getConnectStringCopy()
543 return strdup(_connectString); in getConnectStringCopy()
H A DConfiguration.hpp107 char * _connectString; member in Configuration