P
Peace
Hi I attempted in a database update to autoincrement the primary key this
way:
Dim i As Integer = 1
Dspostings1.Postings.PostIDColumn.AutoIncrement = True
Dspostings1.Postings.PostIDColumn.AutoIncrementSeed = -1
Dspostings1.Postings.PostIDColumn.AutoIncrementStep = -1
but the value returned as -1
Also there is hold over data (highest number 54) in the database that was
imported. My hope was it would use the next number (55) when creating the
record.
What did I do wrong? This did work in access.
way:
Dim i As Integer = 1
Dspostings1.Postings.PostIDColumn.AutoIncrement = True
Dspostings1.Postings.PostIDColumn.AutoIncrementSeed = -1
Dspostings1.Postings.PostIDColumn.AutoIncrementStep = -1
but the value returned as -1
Also there is hold over data (highest number 54) in the database that was
imported. My hope was it would use the next number (55) when creating the
record.
What did I do wrong? This did work in access.