B
Bob Day
Using VS 2003, VB.net, MSDE...
I need to create an arbitrary unique STRING index when I add a row from a
DataTable to its datasouce.
I have tried using DateTime, but don't see it working (it is not always
unique).
Question 1) Creating a GUID is unique, but is it unique when converted to a
string, such as the following:
Dim UniqueIdentifier1 As String = Guid.NewGuid.ToString
Question 2) Is there a (another) simply way of creating a unique string
index on the fly while adding a row?
Thanks
Bob
I need to create an arbitrary unique STRING index when I add a row from a
DataTable to its datasouce.
I have tried using DateTime, but don't see it working (it is not always
unique).
Question 1) Creating a GUID is unique, but is it unique when converted to a
string, such as the following:
Dim UniqueIdentifier1 As String = Guid.NewGuid.ToString
Question 2) Is there a (another) simply way of creating a unique string
index on the fly while adding a row?
Thanks
Bob