Okay, I need to add somehow these rows to my dataset...
It's asking for something in the first column... being the auto number.. I can not just add i because it might not be the first row...

How can I add something so the DB will give it the auto number?
Or is there a way to empty the dataset so I can add everything from 1 to XX


Code:
For i As Integer = 0 To records.Length - 1
            ScreenSaverDataSet.Photos.Rows.Add("", records(i))
        Next
Input string was not in a correct format.Couldn't store <> in PhotoID Column. Expected type is Int32.