I am uploading data from Excel to SQL Server using the following structure: Private Sub ado_upload() Dim objConnection As New ADODB.Connection
Is it possible to have an ODBC connection and an ADO connection share the same underlying SQL Server connection, so that both are using the same SPID?
I need to write a BLOB to a varbinary column in a SQL Server database.Sounds easy except that I have to do it in C++.I\'ve been using ADO for the database operations (First question: is this the best
I have a Delphi 2007 app using ADO to connect t开发者_如何学编程o an Oracle database.I have found for the app to support Blob field types I need to use the OraOLEDB provider to connect.The connection
My question is very simple. I have a TClientDataSet that is linked to a TADOQuery via a TDataSetProvider. I can put data into the TClientDataSet from the TADOQuery, but how do I get data from the TCli
I have a VB script which connects to a local SQL database to retrieve a value. The exact same script runs on about 100 servers, but a few of the servers produce this error:
I have seen a couple of instances now where some legacy code I\'m working on exhibits what seems buggy behavior and I wonder if I just don\'t understand something.
I have written an application that allows a user to define a query, run it using a TADOQuery component, and save the report to their PC as an XML document (SaveAsFile passing in pfXML as the Format pa
I am creating a table during runtime. This is how I do it: AdoCommand1.Connec开发者_运维技巧tion:=AdoConnection1;
I need to compute a list of table names in a given database (MDB format), which have certain format (for example which contains DateTime field \"Date Applied\"开发者_开发问答). How can I do it?