Hi,
I have an Int column in a sql 2000 database which states if the row is locked or not. if the row is not locked the column equals zero (0).
Otherwise, if the row is considered locked I have been asked to set a checksum value for the column.
I was thinking of using all the other columns in the row appended together to create a string as the key. (One of the columns in the row is an auto-incrementing id.)
from this point I am not sure what kind of encryption algorithm to use to give me an int32 value based on the key to assign to the locked column.
any examples or ideas are appreciated.
MrPeds
I have an Int column in a sql 2000 database which states if the row is locked or not. if the row is not locked the column equals zero (0).
Otherwise, if the row is considered locked I have been asked to set a checksum value for the column.
I was thinking of using all the other columns in the row appended together to create a string as the key. (One of the columns in the row is an auto-incrementing id.)
from this point I am not sure what kind of encryption algorithm to use to give me an int32 value based on the key to assign to the locked column.
any examples or ideas are appreciated.
MrPeds