Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I have some VBA that programmatically writes a SQL query. When I paste the query into Access, it runs just fine. When I try to run it using ADO via Excel, it gives me the "too many parameters. x expected". The number that x represents is the number of values that I'm trying to pass in the values clause of my SQL. The field names and the order matches up and so do the value/field types. Please see the code and the SQL below. Thanks so much for your help! Mark ****VBA Code**** Sub Run_Query() Dim objConn As ADODB.Connection, objRes As ADODB.Recordset Dim objData As New DataObject Set objConn = New ADODB.Connection objConn.Open "st2000" objData.SetText strSQL objData.PutInClipboard Set objRes = objConn.Execute(strSQL) objConn.Close Set objRes = Nothing Set objConn = Nothing End Sub ***SQL Code*** INSERT INTO TABLE VALUES (62, "1", "2", "3", "4", "5", "6", "", "", "", "", "", "", "", "", "Other:", "", "", "", "", "", "", "", "", "", "", "", "Other:", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""); |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I format data from access to work in excel calculations? | Excel Worksheet Functions | |||
Excel to Access - formula does not work... | New Users to Excel | |||
Access query does not work in Excel | Excel Programming | |||
Excel Macros do not work with Outlook Web Access | Excel Programming | |||
Access data -work in Excel- save in Access | Excel Programming |