Searched refs:DbConnectInf (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/dbbrowse/
H A Dbrowsedb.cpp26 wxDbConnectInf DbConnectInf; variable
115 DbConnectInf.AllocHenv();
141 DbConnectInf.SetDsn(ODBCSource); // ODBC data source name (created with ODBC Administrator under Win95/NT)
142 DbConnectInf.SetUserID(UserName); // database username - must already exist in the data source
143 DbConnectInf.SetPassword(Password); // password database username
144 db_BrowserDB = wxDbGetConnection(&DbConnectInf);
148 DbConnectInf.SetDsn(wxEmptyString);
149 DbConnectInf.SetUserID(wxEmptyString);
150 DbConnectInf.SetPassword(wxEmptyString);
156 DbConnectInf
[all...]
H A Ddoc.cpp30 extern wxDbConnectInf DbConnectInf;
160 if (!DbConnectInf.AllocHenv())
173 while (wxDbGetDataSource(DbConnectInf.GetHenv(), Dsn, SQL_MAX_DSN_LENGTH, DsDesc, 254))
208 DbConnectInf.FreeHenv();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/db/
H A Ddbtest.cpp638 DbConnectInf = NULL;
689 // method ::FreeHenv() or delete the DbConnectInf.
690 DbConnectInf = new wxDbConnectInf(NULL, params.ODBCSource, params.UserName,
693 if (!DbConnectInf || !DbConnectInf->GetHenv())
696 wxDELETE(DbConnectInf);
704 wxDELETE(DbConnectInf);
708 DbConnectInf->SetDsn(params.ODBCSource);
709 DbConnectInf->SetUserID(params.UserName);
710 DbConnectInf
[all...]
H A Ddbtest.h234 wxDbConnectInf *DbConnectInf; member in class:DatabaseDemoApp
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtdb.tex386 wxDbConnectInf DbConnectInf;
387 DbConnectInf.SetDsn("MyDSN");
388 DbConnectInf.SetUserID("MyUserName");
389 DbConnectInf.SetPassword("MyPassword");
390 DbConnectInf.SetDefaultDir("");
398 if (DbConnectInf.AllocHenv())
414 wxDbConnectInf *DbConnectInf;
416 DbConnectInf = new wxDbConnectInf(NULL, "MyDSN", "MyUserName",
432 wxDb *db = new wxDb(DbConnectInf->GetHenv());
434 opened = db->Open(DbConnectInf);
[all...]
H A Ddb.tex378 while (wxDbGetDataSource(DbConnectInf.GetHenv(), Dsn, SQL_MAX_DSN_LENGTH+1, DsDesc, 255))
1311 wxDb sampleDB(DbConnectInf.GetHenv());
1811 wxDbConnectInf *DbConnectInf;
1813 DbConnectInf = new wxDbConnectInf(0,"MY_DSN", "MY_USER", "MY_PASSWORD");
1817 delete DbConnectInf;

Completed in 93 milliseconds