Hi,
You can add items using an SQL query like the one below and autonumber will be generated for you:
Example
For the Table below
ID Name
1 Joe
2 John
SQL QUERY
INSERT INTO myTestTable ([Name]) VALUES ('Mary');
I hope this helps.
Sincerely,
Feroz
National Instruments