Click here to Skip to main content
15,921,697 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: release version help pls Pin
BadKarma26-Oct-05 8:35
BadKarma26-Oct-05 8:35 
AnswerRe: release version help pls Pin
John R. Shaw26-Oct-05 15:56
John R. Shaw26-Oct-05 15:56 
QuestionCompile time warning in C++ Pin
AnkurGupta_198126-Oct-05 2:06
AnkurGupta_198126-Oct-05 2:06 
AnswerRe: Compile time warning in C++ Pin
toxcct26-Oct-05 2:55
toxcct26-Oct-05 2:55 
GeneralRe: Compile time warning in C++ -- Not working Pin
AnkurGupta_198126-Oct-05 6:16
AnkurGupta_198126-Oct-05 6:16 
GeneralRe: Compile time warning in C++ -- Not working Pin
toxcct26-Oct-05 6:20
toxcct26-Oct-05 6:20 
QuestionAbout Doc/View relation : Vc++ _Plz Help Pin
parims26-Oct-05 1:57
parims26-Oct-05 1:57 
AnswerRe: About Doc/View relation : Vc++ _Plz Help Pin
toxcct26-Oct-05 2:30
toxcct26-Oct-05 2:30 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
Maximilien26-Oct-05 2:42
Maximilien26-Oct-05 2:42 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
toxcct26-Oct-05 3:03
toxcct26-Oct-05 3:03 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
Eytukan26-Oct-05 3:10
Eytukan26-Oct-05 3:10 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
Eytukan26-Oct-05 3:05
Eytukan26-Oct-05 3:05 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
Blake Miller26-Oct-05 6:52
Blake Miller26-Oct-05 6:52 
AnswerRe: About Doc/View relation : Vc++ _Plz Help Pin
georgemarios26-Oct-05 2:51
georgemarios26-Oct-05 2:51 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
Cedric Moonen26-Oct-05 3:40
Cedric Moonen26-Oct-05 3:40 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
georgemarios26-Oct-05 6:59
georgemarios26-Oct-05 6:59 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
John R. Shaw26-Oct-05 16:12
John R. Shaw26-Oct-05 16:12 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
georgemarios26-Oct-05 16:35
georgemarios26-Oct-05 16:35 
GeneralRe: About Doc/View relation : Vc++ _Plz Help Pin
John R. Shaw26-Oct-05 18:44
John R. Shaw26-Oct-05 18:44 
AnswerRe: About Doc/View relation : Vc++ _Plz Help Pin
Eytukan26-Oct-05 3:54
Eytukan26-Oct-05 3:54 
QuestionProblem in using stored procedure with ADO Pin
snprani26-Oct-05 1:41
snprani26-Oct-05 1:41 
Hi to all,

I am having one table having 2 BLOB fields and one varchar2 field in Oracle. i am implementing my code vc++ using ADO to connect to Oracle. i am using Stored procedure to retrieve BLOB data from Oracle.

I am able to store BLOB data with Insert Command. but there is problem while using stored procedure to retrive image data.
This is my code how i am using ADO

paramUserid= pCommand->CreateParameter("p_UserID",adVarChar,adParamInput,50,_bstr_t(userid));
pCommand->Parameters->Append(paramUserid);

paramLICODE= pCommand->CreateParameter("leftcode",adLongVarBinary,adParamOutput,retLsize+5);
pCommand->Parameters->Append(paramLICODE);

paramRICODE= pCommand->CreateParameter("rightcode",adLongVarBinary,adParamOutput,retRsize+5);
pCommand->Parameters->Append(paramRICODE);

pCommand->ActiveConnection=m_pConn;
pCommand->CommandType = adCmdText;
pCommand->CommandText="{ Call getIrisCodes(?,?,?) }";
pCommand->Execute(NULL,NULL,adCmdText);

It is giving error like "Syntax error or Access violation"

I have tried that stored procedure in Oracle. it works fine. because i am able to get the length of the images. but unable to get the image data.

What should i do. Can anybody help me. Its very urgent. My whole project depends on this only.

Thanks in advance.
QuestiontHow to restrict Edit control in MFC Pin
aloktambi26-Oct-05 1:16
aloktambi26-Oct-05 1:16 
AnswerRe: tHow to restrict Edit control in MFC Pin
Chris Losinger26-Oct-05 1:28
professionalChris Losinger26-Oct-05 1:28 
AnswerRe: tHow to restrict Edit control in MFC Pin
Eytukan26-Oct-05 1:54
Eytukan26-Oct-05 1:54 
QuestionRe: tHow to restrict Edit control in MFC Pin
David Crow26-Oct-05 3:05
David Crow26-Oct-05 3:05 

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.