I am currently trying to set up my TableAdapters, but this does not allow me to use parameters (which makes it completely useless). When I create a new request
SELECT users.*
FROM users
WHERE name LIKE @name
He tells me that there is an SQL error about '@'...
I am using VS08 with C # and Access database using OleDB-Driver
source
share