Click here to Skip to main content
15,919,121 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CPoint's x and y has large value Pin
nayeemkhan1-Apr-09 23:22
nayeemkhan1-Apr-09 23:22 
GeneralRe: CPoint's x and y has large value Pin
Niklas L2-Apr-09 3:02
Niklas L2-Apr-09 3:02 
GeneralRe: CPoint's x and y has large value Pin
David Crow2-Apr-09 3:47
David Crow2-Apr-09 3:47 
AnswerRe: CPoint's x and y has large value Pin
Code-o-mat1-Apr-09 22:42
Code-o-mat1-Apr-09 22:42 
AnswerRe: CPoint's x and y has large value Pin
krmed2-Apr-09 0:43
krmed2-Apr-09 0:43 
QuestionRe: CPoint's x and y has large value Pin
David Crow2-Apr-09 3:45
David Crow2-Apr-09 3:45 
QuestionHow to create a secure database with the MS-Jet ODBC driver [modified] Pin
pani681-Apr-09 20:35
pani681-Apr-09 20:35 
AnswerRe: How to create a secure database with the MS-Jet ODBC driver [modified] Pin
Stuart Dootson1-Apr-09 22:43
professionalStuart Dootson1-Apr-09 22:43 
[edit]Looks like that Format call is your problem - once I realised I'd not converted one of your strings to Unicode, I was able to run your code all the way through with no exceptions (I commented out the FillData call, as that's not available)[/edit]

One issue you might have - this line:

strConfig.Format("CREATE_DB=\"%s\"\0SystemDB=my workgroup.mdw"
							"\0UID=Pani\0\0",m_fileName);


Won't produce what you expect - CString::Format won't look beyond your first NULL character, so the string will end up as

CREATE_DB="whatever m_fileName is"


If you use some code like this:

std::basic_string<TCHAR> s;
s = _T("CREATE_DB=\""); s+= m_fileName ; s += _T("\"");
s += TCHAR(0);
s += _T("SystemDB=my workgroup.mdw");
s += TCHAR(0);
s += _T("UID=Pani");
s += TCHAR(0);
s += TCHAR(0);
s += TCHAR(0);


then the string will be created with all the bits in correctly, as std::string doesn't care about nulls as much as CString. You can pass s.c_str() to your call to SQLConfigDataSource to access the string content.

Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

modified on Thursday, April 2, 2009 4:51 AM

GeneralRe: How to create a secure database with the MS-Jet ODBC driver Pin
pani682-Apr-09 2:20
pani682-Apr-09 2:20 
GeneralRe: How to create a secure database with the MS-Jet ODBC driver Pin
Stuart Dootson2-Apr-09 2:22
professionalStuart Dootson2-Apr-09 2:22 
QuestionHow to convert const void* to CString? Pin
g_satish1-Apr-09 20:26
g_satish1-Apr-09 20:26 
AnswerRe: How to convert const void* to CString? Pin
«_Superman_»1-Apr-09 20:30
professional«_Superman_»1-Apr-09 20:30 
AnswerRe: How to convert const void* to CString? Pin
Stuart Dootson1-Apr-09 21:56
professionalStuart Dootson1-Apr-09 21:56 
QuestionHow to capture "Enter Key"? Pin
gothic_coder1-Apr-09 20:25
gothic_coder1-Apr-09 20:25 
AnswerRe: How to capture "Enter Key"? Pin
«_Superman_»1-Apr-09 20:32
professional«_Superman_»1-Apr-09 20:32 
GeneralRe: How to capture "Enter Key"? Pin
gothic_coder1-Apr-09 20:36
gothic_coder1-Apr-09 20:36 
AnswerRe: How to capture "Enter Key"? Pin
Code-o-mat1-Apr-09 22:32
Code-o-mat1-Apr-09 22:32 
GeneralRe: How to capture "Enter Key"? Pin
gothic_coder1-Apr-09 23:29
gothic_coder1-Apr-09 23:29 
GeneralRe: How to capture "Enter Key"? Pin
Code-o-mat1-Apr-09 23:33
Code-o-mat1-Apr-09 23:33 
GeneralRe: How to capture "Enter Key"? Pin
gothic_coder1-Apr-09 23:59
gothic_coder1-Apr-09 23:59 
GeneralRe: How to capture "Enter Key"? Pin
Code-o-mat2-Apr-09 0:20
Code-o-mat2-Apr-09 0:20 
GeneralRe: How to capture "Enter Key"? Pin
gothic_coder2-Apr-09 1:31
gothic_coder2-Apr-09 1:31 
GeneralRe: How to capture "Enter Key"? Pin
Code-o-mat2-Apr-09 1:34
Code-o-mat2-Apr-09 1:34 
QuestionCMainwindow Pin
p_19601-Apr-09 20:20
p_19601-Apr-09 20:20 
AnswerRe: CMainwindow Pin
Stuart Dootson1-Apr-09 22:01
professionalStuart Dootson1-Apr-09 22:01 

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.