Testare campo tipo Autoincrement (MDB)

di il
9 risposte

Testare campo tipo Autoincrement (MDB)

Ciao a tutti,
avrei la necessità di individuare quando un campo di un DB Access (mdb) sia di tipo "Numerazione Automatica".
Ho provato con questo codice, ma mi ritorna sempre False:

Dim xc As New OleDb.OleDbConnection(se_StrConn & DBName)
xc.Open()
Dim Command As New OleDb.OleDbCommand
Command.Connection = xc
Command.CommandType = CommandType.Text
Command.CommandText = "Select * from [" & NomeTabella & "]"
Tabella.Load(Command.ExecuteReader)

For Each C as datacolumn in Tabella.columns
       if  c.Autoincrement = true then

       ......

       else

      .......

       end if
Next
Leggendo sul web mi sembra che la proprietà da controllare si Autoincrement ma forse sbaglio? Le altre proprietà le leggo tranquillamente.

Grazie

9 Risposte

Devi accedere o registrarti per scrivere nel forum
9 risposte