ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   VBA Insert Stement for SQLServer (https://www.excelbanter.com/excel-programming/344456-vba-insert-stement-sqlserver.html)

marcmc

VBA Insert Stement for SQLServer
 
I have data as follows on EXCEL:

ColA ColB
MARC 123
marc1234 234
marc1235 555/0

I have a SQL table with the same structure. I want to insert the range.
I tried:

Dim cName1, cName2 As Variant
cName1 = Range("A")
cName2 = Range("B")

sq = "Insert into marc_temp_excel (ColA, ColB) values (cName1, cName2)"
Set r = c.Execute(sq)
c.Close

MsgBox ("marc_temp_excel Table Successfully Updated.")

End Sub

marcmc

VBA Insert Stement for SQLServer
 
got iot but have a syntax error as in 'VBA Syntax' thread above.

"marcmc" wrote:

I have data as follows on EXCEL:

ColA ColB
MARC 123
marc1234 234
marc1235 555/0

I have a SQL table with the same structure. I want to insert the range.
I tried:

Dim cName1, cName2 As Variant
cName1 = Range("A")
cName2 = Range("B")

sq = "Insert into marc_temp_excel (ColA, ColB) values (cName1, cName2)"
Set r = c.Execute(sq)
c.Close

MsgBox ("marc_temp_excel Table Successfully Updated.")

End Sub



All times are GMT +1. The time now is 08:01 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com