Connecting to an Access 2000 .mdb database with visual C++ ADO commands

  • Context: C/C++ 
  • Thread starter Thread starter CFDFEAGURU
  • Start date Start date
  • Tags Tags
    C++ Database Visual
Click For Summary

Discussion Overview

The discussion revolves around connecting to an Access 2000 .mdb database using Visual C++ ADO commands. Participants are troubleshooting issues related to code execution, error handling, and proper object instantiation within the context of database connectivity.

Discussion Character

  • Technical explanation
  • Debate/contested

Main Points Raised

  • One participant describes their attempt to connect to the Northwind sample database using a provided example, noting that the code compiles but fails to execute.
  • Another participant asks for the specific exception thrown to help diagnose the issue, suggesting the use of the Visual Studio debugger to inspect the value of the variable 'hr' after the connection attempt.
  • The original poster reports an unhandled exception similar to accessing out-of-bounds memory, with the debugger indicating an issue with the machine name in the connection string.
  • A participant questions whether the method used to create the ADO connection object is correct, suggesting an alternative instantiation method that includes creating an instance of the connection explicitly.
  • The original poster encounters a new error regarding the number of arguments passed to the connection's Open method, indicating a mismatch in expected parameters.
  • Another participant clarifies the distinction between opening a connection and opening a recordset, suggesting that the original code was close to correct but needed proper object creation.

Areas of Agreement / Disagreement

Participants express differing views on the correct method for creating and opening ADO connection objects, and there is no consensus on the best approach to resolve the exceptions being encountered.

Contextual Notes

There are unresolved issues regarding the correct parameters for the connection and recordset opening methods, as well as potential misunderstandings about the object instantiation process in ADO.

CFDFEAGURU
Messages
781
Reaction score
10
Hello all,

I am trying to connect to an Access database, the Northwind sample database, by following this example,

http://msdn.microsoft.com/en-us/library/cc811599.aspx

I am using a Windows XP OS with Visual C++ 2008 Express for the compiler and IDE. The program is a console application. This example is specified for Access 2007 .accdb file types and doesn't specify if a .mdb file type will cause errors.

Once I get it running correctly I will switch the path name, queries, and table names to my database.

The code compiles correctly, but fails to execute.

Here is the code

Code:
#include <fstream>
#include <cmath>
#include <complex>
#include <iostream>
#include <iomanip>
#include <vector>
#include <limits>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <fcntl.h>
#include <string.h>
#include <ctype.h>
#include <icrsint.h>

using namespace std;

#import <C:\\Program Files\\Common Files\\system\\ado\\msado15.dll> rename( "EOF", "AdoNSEOF")

_bstr_t bstrConnect = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Program Files\\Microsoft Office\\Office\\Samples\\Northwind.mdb;";

HRESULT hr;

int main()
{
	::CoInitialize(NULL);
	const char* DAM = "ADO";
	ADODB::_ConnectionPtr pConn("ADODB.Connection");
	hr = pConn->Open(bstrConnect, "admin", "", ADODB::adConnectUnspecified);
	if(SUCCEEDED(hr))
	{
		cout<<DAM<<": Successfully connected to database. Data source name:\n  "
			<<pConn->GetConnectionString()<<endl;

		// Prepare SQL query
		_bstr_t query = "SELECT Customers.[Company], Customers.[First Name] FROM Customers;";
		cout <<DAM<<": SQL query \n  "<<query<<endl;

		// Execute
		ADODB::_RecordsetPtr pRS("ADODB.Recordset");
		hr = pRS->Open(query,
			_variant_t((IDispatch *) pConn, true),
			ADODB::adOpenUnspecified,
			ADODB::adLockUnspecified,
			ADODB::adCmdText);
		if(SUCCEEDED(hr))
		{
			cout<<DAM<<": Retrieve schema info for the given result set: "<< endl;
			ADODB::Fields* pFields = NULL;
			hr = pRS->get_Fields(&pFields);
			if(SUCCEEDED(hr) && pFields && pFields->GetCount() > 0)
			{
				for(long nIndex=0; nIndex < pFields->GetCount(); nIndex++)
				{
					cout << " | "<<_bstr_t(pFields->GetItem(nIndex)->GetName());
				}
				cout << endl;
			}
			else
			{
				cout<<DAM<<": Error: Number of fields in the result is set to zero." << endl;
			}
			cout<<DAM<<": Fetch the actual data: " << endl;
			int rowCount = 0;
			while (!pRS->AdoNSEOF)
			{
				for(long nIndex=0; nIndex < pFields->GetCount(); nIndex++)
				{
					cout<<" | "<<_bstr_t(pFields->GetItem(nIndex)->GetValue());
				}
				cout<< endl;
				pRS->MoveNext();
				rowCount++;
			}
			cout<<DAM<<": Total Row Count:  " << rowCount << endl;
		}
		pRS->Close();
		pConn->Close();
		cout<<DAM<<": Cleanup Done" << endl;
	}
	else
	{
		cout<<DAM<<" : Unable to connect to data source: "<<bstrConnect<<endl;
	}
	::CoUninitialize();
	return 0;
}

The error is with the hr statement. It has an unhandled exception.

I don't know what is causing this.

Any help would be appreciated.

Thanks
Matt
 
Technology news on Phys.org
What's the exception that is thrown? That will give you a clue as to what the problem is.

Do you know how to use the Visual Studio debugger? The value stored in hr after Open returns will give you an idea as to what's the problem.
 
The exception that is thrown is;

Unhandled exception at memory location ...

The same error you would get if tried to access information outside the boundaries of an array.

Yes, I know how to use the debugger. The value in the Open statement says IUknown in the location for the machine name. I have tried numerous names other than "admin" and still get the same error.

Thanks
Matt
 
Are you sure that:

ADODB::_ConnectionPtr pConn("ADODB.Connection");

Actually creates an ADODB::Connection object?

I have just checked some of my code and it creates a connection like this:

ADODB::_ConnectionPtr _DC;
hr = _DC.CreateInstance( __uuidof(ADODB::Connection) );
_DC->Open( _ConnectionString.c(), L"", L"", ADODB::adAsyncConnect );

That is for connecting async to SQL server with the username and password in the connection string itself.
 
silverfrost:

Thanks. I had added your code but now I have a new error.

The error is;

:error C2660: 'ADODB::Connection15::Open' : function does not take 5 arguments

So I am trying to pass too many arguments.

Here is the code block where that occurs.

Code:
ADODB::_RecordsetPtr pRS("ADODB.Recordset");
		hr = _DC->Open(query,
			_variant_t((IDispatch *) _DC, true),
			ADODB::adOpenUnspecified,
			ADODB::adLockUnspecified,
			ADODB::adCmdText);

The adCmdText is the line that the debugger points to.

If I change the _DC->Open line to _DC->Open(query,"admin","",ADODB::adOpenUnspecified"

The code compiles but, I get this error

Unhandled exception at 0x7c812afb in Database Connection 2.exe: Microsoft C++ exception: _com_error at memory location 0x0012fbcc..

The debugger directs me to this snippet of code located in the msado15.tli file.

Code:
inline HRESULT Connection15::Open ( _bstr_t ConnectionString, _bstr_t UserID, _bstr_t Password, long Options ) {
    HRESULT _hr = raw_Open(ConnectionString, UserID, Password, Options);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

Any help would be greatly appreciated.

Thanks
Matt
 
Last edited:
I think you are confusing the Recordset open with the Connection open. The connection open opens the connection and once it is open you can open a recordset from it. Your original code was about right, you just didn't create an object.
 

Similar threads

  • · Replies 15 ·
Replies
15
Views
3K