In Visual studio 2005, I'm setting up a dataset for a Access database driven website.
I'm trying to add a method to a Table Adapter and trying to create the following query using the Query Builder. But it complains about the '@' symbol.
SELECT Arch_ID, Surname, Firstname, Gender, Date_of_Birth, Date_of_Death, Biography, Sources
FROM Architects
WHERE Arch_ID = @Arch_ID
Can figure out whats wrong with it. I want this query to get only Architects based on supplied @Arch_ID.
I'm trying to add a method to a Table Adapter and trying to create the following query using the Query Builder. But it complains about the '@' symbol.
SELECT Arch_ID, Surname, Firstname, Gender, Date_of_Birth, Date_of_Death, Biography, Sources
FROM Architects
WHERE Arch_ID = @Arch_ID
Can figure out whats wrong with it. I want this query to get only Architects based on supplied @Arch_ID.