Parameters in the TableAdapter are not accepted

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

+3
source share
1 answer

Look at here:

A practical guide. Creating parameterized queries on a targeting table

, . , OleDb '?' , WHERE : WHERE City =?.

@? , .

+3

Source: https://habr.com/ru/post/1756139/


All Articles