Hello,
I have been trying to use ADO inside a C++ win32 static DLL but am having no luck. Almost all the documentation says the same thing: type in this #import "..... msado15.dll" and then they ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20174572.html
Zones:
C++Date Answered: 02/10/2002 Grade: A Views: 0
Hello,
I am using VC++ 6.o and trying to call oracle stored procedures with ADO.
I have attached the below code which is executed after establishing a connection with the database using a ODBC dr...
http://www.experts-exchange.com/Database/Oracle/Q_20183213.html
Zones:
OracleDate Answered: 06/05/2002 Grade: A Views: 8
What i'm trying to do is, creating a linked list using the STL which contains recordsets.
Can you please send me a code sample of how to do it?
Here is what i have been trying to do on my mai...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20310685.html
Zones:
C++Date Answered: 06/13/2002 Grade: C Views: 0
Hi All, Coding in unmanaged C++, VS.NET 2005
I'm using an xml file as my database.
I know how to find a single record:
"rstPtr->Find( ("FieldName = 'searchString'"), NULL, ADODB::adSearchFor...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_CPP/Q_22402034.html
Hi all, coding unmanaged C++ in VS.NET 2005
I've exported a table to an xml file and now I am working with this xml file.
When I use the delete method in the _recordsetPtr it just flags the rec...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_CPP/Q_22406313.html
Hi
I am connecting with the MSSQL server and using the code attached. Whenever I get the RecordsetPtr , should I close like (pRdSet ->Close() ) within the function when done?
I am keeping the "...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_22974898.htm...
Zones:
Windows MFCDate Answered: 12/09/2007 Grade: B Views: 0
Can anyone tell me why this code throws
an exception?
bool CFMDatabase::Update(LPCTSTR tn, CArray<SNameValue, SNameValue&>& nva)
{
if(FAILED(CoInitialize(NULL)))
return false;
ADODB:...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/VB_DB/Q_11606618.html
Zones:
VB DBDate Answered: 10/20/2000 Grade: B Views: 0
what's wrong with the following code?
in idl:
HRESULT readdata([out,retval] VARIANT* varData);
in cpp:
......
_RecordsetPtr m_pRecordset;
_variant_t avarRecords;
......
avarRecords = m_pR...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20227392.html
Zones:
C++Date Answered: 04/01/2002 Grade: A Views: 0
okay, I'm a beginner in c++, ado and all that jazz. I created a dll to deal with ado, so I can use it in vb. Why? Its required. The Dll compiles just fine. When I use it in vb, vb will shut down s...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20506102.html
Zones:
C++Date Answered: 05/13/2003 Grade: A Views: 0
I have the following situation where I create an ADO recordset in memory
crudely
ADO::_RecordsetPtr rs;
..
rs->Fields->Add("IntField",...);
rs->Fields->Add("TextField",...);
rs->Open();
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21991783.html
Zones:
C++Date Answered: 09/21/2006 Grade: A Views: 34