Oracle and ADO
-
I need to access oracle through my VC++ program can I use ADO? if I can is there is any code or tutorial to explain that or any other ideas Thanks MR.Byte
I'm currently using ADO to access an Oracle database with VC++. Have you used ADO before? What are you trying to do? It is pretty much standard ADO stuff apart from a few gotchas with the Oracle stored procedures. Michael :-)
-
I'm currently using ADO to access an Oracle database with VC++. Have you used ADO before? What are you trying to do? It is pretty much standard ADO stuff apart from a few gotchas with the Oracle stored procedures. Michael :-)
-
I access my oracle database via an odbc connection using ADO. A good starting point for ADO is http://www.codeproject.com/database/caaadoclass1.asp This is the connection string I use for my oracle ADO connection object. sConnect = _T(" DRIVER={Microsoft ODBC for Oracle}; SERVER=servername; UID=user; PWD=password"); One additional thing, make sure you've got the latest version of MDAC installed. hope this helps, Michael :-)
-
I access my oracle database via an odbc connection using ADO. A good starting point for ADO is http://www.codeproject.com/database/caaadoclass1.asp This is the connection string I use for my oracle ADO connection object. sConnect = _T(" DRIVER={Microsoft ODBC for Oracle}; SERVER=servername; UID=user; PWD=password"); One additional thing, make sure you've got the latest version of MDAC installed. hope this helps, Michael :-)