hello,
I wonder if it's possible to correctly pass parameter to query:
when i put '00,01' into parameter it does not return anything of course,
becouse query goes like:
while correct query would be
if it's not possible then maybe you can tell me how to dynamicly modify sql statement in tableadapter before filling()?
thank you
Rafal
I wonder if it's possible to correctly pass parameter to query:
VB.NET:
select * from my_table where Field in (@parameter)
when i put '00,01' into parameter it does not return anything of course,
becouse query goes like:
VB.NET:
select * from my_table where Field in ('00,01')
while correct query would be
VB.NET:
select * from my_table where Field in ('00','01')
if it's not possible then maybe you can tell me how to dynamicly modify sql statement in tableadapter before filling()?
thank you
Rafal