M
Morten Snedker
A simplified example:
A table with three columns:
ID, UserID, Text
ID is autonumbered, adding 1 for each new row.
On a button:
INSERT INTO Table (UserID, Text) VALUES (1,'Text')
The button is pressed twice.
If after these two inserts, the table is opened with
SELECT * FROM Table WHERE UserID=1 ORDER BY ID ASC
, is it anyhow possible for the last INSERT not to have been given the
highest ID and thereby not being last in the recordset (given that no
same two userID's is ever using the database at the same time)..?
The question goes both for MDB and MS-SQL.
Regards /Snedker
A table with three columns:
ID, UserID, Text
ID is autonumbered, adding 1 for each new row.
On a button:
INSERT INTO Table (UserID, Text) VALUES (1,'Text')
The button is pressed twice.
If after these two inserts, the table is opened with
SELECT * FROM Table WHERE UserID=1 ORDER BY ID ASC
, is it anyhow possible for the last INSERT not to have been given the
highest ID and thereby not being last in the recordset (given that no
same two userID's is ever using the database at the same time)..?
The question goes both for MDB and MS-SQL.
Regards /Snedker