T
Thomas H. Lanier
Does anyone know how to rename an Access table in VB.Net with OleDb?
For instance, this does NOT work:
cn = New OleDbConnection(ConnectionString)
cn.Open()
sql = "ALTER TABLE Test1 RENAME Test2"
cmd = New OleDbCommand(sql, cn)
cmd.ExecuteNonQuery()
Thanks,
Tommy
For instance, this does NOT work:
cn = New OleDbConnection(ConnectionString)
cn.Open()
sql = "ALTER TABLE Test1 RENAME Test2"
cmd = New OleDbCommand(sql, cn)
cmd.ExecuteNonQuery()
Thanks,
Tommy