i have the following Insert Statement: In my table ID is Primary Key...
INSERT INTO Student(Name,Family,Address);
I create other query in TableAdapter called SelectID
SELECT @@IDENTITY;
now back to my Code: i call Insert :
TableAdapter .Insert("Elli",Stuart","tt11");
Display("Record Added.....And Student ID is:" + TableAdapter .SelectID);
The problem is @@IDENTITY suppose to return me the ID but its not returning me anything here! What im doing wrong?!