Setting a DataSet's Primary Key
-
Hi Everyone: Thanks to Guffa and Dave Kreskowiak, the light of understanding finally broke through the fog in my head about the mechanics of the DataSet. While exploring the internet trying to find some examples on the use of datasets and so forth I came across an artical saying to set the Autoincrement seed to zero and set the AutoincrementStep to minus one. As I understand it records written to the dataset from the database will have positive numbering and new records added to the dataset will have negitive numbering. So if I understand this right data returned from the database will look like: 1 Record 1 2 Record 2 3 Record 3 . . . And new records appended to the dataset will look like: -1 Record 4 -2 Record 5 -3 Record 6 . . . Does anyone know the link to this artical? I spent a few hours yesterday afternoon trying to locate the artical, but I couldn't find it. Thanks, Quecumber256