G
Guest
Dim oComm As New OleDb.OleDbCommand("SELECT * FROM " & _formattedtablename & " WHERE 1=-1", _Connection)
Dim oReader As OleDb.OleDbDataReader = oComm.ExecuteReader(CommandBehavior.SchemaOnly)
Dim oTable As Data.DataTable = oReader.GetSchemaTable
This:
oRow.Item("IsAutoIncrement")
Returns false even if the column is an Access autonumber field.
Any ideas?
Dim oReader As OleDb.OleDbDataReader = oComm.ExecuteReader(CommandBehavior.SchemaOnly)
Dim oTable As Data.DataTable = oReader.GetSchemaTable
This:
oRow.Item("IsAutoIncrement")
Returns false even if the column is an Access autonumber field.
Any ideas?