Copy table from ODBC to SQL in .NET - TechRepublic
Question
October 1, 2009 at 02:48 PM
kwengiel

Copy table from ODBC to SQL in .NET

by kwengiel . Updated 16 years, 9 months ago

I need help to create a copy of a table from a ODBC database to an SQL database. I have successfully created an open connection to the SQL database, but it doesn’t copy the table from the ODBC database. I’m using the following code:

‘———————-
‘Open connection to SQL

Dim objSQLConn As ADODB.Connection = New ADODB.Connection
With objSQLConn
.ConnectionString = “Provider=SQLOLEDB;”
.Open(cnstSQLConnStr)
End With

strSQL = “SELECT * INTO [” + strTableName + “] FROM [” + strTableName + “] in ”[ODBC;DSN=MySystemDSNName];”

objSQLConn.Execute(strSQL)

I’ve been searching the web for help for days. Any help would be appreciated!!!
Many thanks in advance.

This discussion is locked

All Comments