Click here to Skip to main content
15,902,276 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Execute one instance of application per system Pin
Hamid_RT11-Jan-09 1:58
Hamid_RT11-Jan-09 1:58 
QuestionSetWindowText function error Pin
KARFER11-Jan-09 1:50
KARFER11-Jan-09 1:50 
AnswerRe: SetWindowText function error Pin
Hamid_RT11-Jan-09 1:53
Hamid_RT11-Jan-09 1:53 
GeneralRe: SetWindowText function error Pin
KARFER11-Jan-09 9:44
KARFER11-Jan-09 9:44 
AnswerRe: SetWindowText function error Pin
Stephen Hewitt11-Jan-09 4:11
Stephen Hewitt11-Jan-09 4:11 
QuestionFind All databases in a SQL Server Instance using VC++ 6.0 Pin
unniks10-Jan-09 16:53
unniks10-Jan-09 16:53 
AnswerRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
Hamid_RT11-Jan-09 2:01
Hamid_RT11-Jan-09 2:01 
GeneralRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
unniks11-Jan-09 5:06
unniks11-Jan-09 5:06 
Thanks.
I thought that's obsolete technology.

I think this is possible using OLEDB. After googling i got some hints but don't know how to proceed.
I'm looking for a code snippet. Something like this - but don't know how to proceed


HRESULT hResult;
hResult = ::CoInitialize(0);
if (SUCCEEDED(hResult)){
CDataSource dataSource;
hResult = dataSource.OpenFromInitializationString(OLESTR("Provider=SQLNCLI.1;Integrated Security=SSPI;Persist Security Info=False;User ID=sa;Data Source=NEWCOMPUTER\\SQLEXPRESS"), false);
if (SUCCEEDED(hResult)){
CSession session;
hResult = session.Open(dataSource);
if (SUCCEEDED(hResult)){


// now get the list of database using CSchemata or something like that
// dont know what to do


session.Close();
printf("Success");
}
dataSource.Close();
}
::CoUninitialize();
}

Thanks,
Unni
AnswerRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
David Crow12-Jan-09 3:27
David Crow12-Jan-09 3:27 
AnswerRe: Find All databases in a SQL Server Instance using VC++ 6.0 Pin
Member 8157212-Jan-09 22:19
Member 8157212-Jan-09 22:19 
QuestionQuestion about Inject DLL Redirect wsock Pin
VB_Crazy10-Jan-09 16:42
VB_Crazy10-Jan-09 16:42 
AnswerRe: Question about Inject DLL Redirect wsock Pin
Code-o-mat11-Jan-09 8:48
Code-o-mat11-Jan-09 8:48 
GeneralRe: Question about Inject DLL Redirect wsock Pin
VB_Crazy12-Jan-09 0:26
VB_Crazy12-Jan-09 0:26 
GeneralRe: Question about Inject DLL Redirect wsock Pin
Code-o-mat12-Jan-09 0:38
Code-o-mat12-Jan-09 0:38 
AnswerRe: Question about Inject DLL Redirect wsock Pin
VB_Crazy12-Jan-09 22:42
VB_Crazy12-Jan-09 22:42 
QuestionList control ignores FindItem? Pin
nobaq10-Jan-09 10:12
nobaq10-Jan-09 10:12 
AnswerRe: List control ignores FindItem? Pin
Stuart Dootson10-Jan-09 13:52
professionalStuart Dootson10-Jan-09 13:52 
QuestionRe: List control ignores FindItem? Pin
nobaq11-Jan-09 4:41
nobaq11-Jan-09 4:41 
QuestionRe: List control ignores FindItem? Pin
nobaq11-Jan-09 4:50
nobaq11-Jan-09 4:50 
AnswerRe: List control ignores FindItem? Pin
Stuart Dootson11-Jan-09 5:11
professionalStuart Dootson11-Jan-09 5:11 
QuestionPNG on button Pin
kiranin10-Jan-09 6:29
kiranin10-Jan-09 6:29 
AnswerRe: PNG on button Pin
Richard Andrew x6410-Jan-09 6:42
professionalRichard Andrew x6410-Jan-09 6:42 
GeneralRe: PNG on button Pin
kiranin10-Jan-09 7:18
kiranin10-Jan-09 7:18 
AnswerRe: PNG on button Pin
Hamid_RT10-Jan-09 7:50
Hamid_RT10-Jan-09 7:50 
AnswerRe: PNG on button Pin
CPallini10-Jan-09 10:48
mveCPallini10-Jan-09 10:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.