gshabtay
Nov 2nd, 2000, 03:32 PM
I write this SQL quary :
PARAMETERS Parametr Text ( 255 );
SELECT tbl1.code, tbl1.Desc
FROM tbl1
WHERE tbl1.Desc Like "*" & [Parametr] & "*";
it works very well in Access. but when I pass the parameter with VB I got an empty recordset , can you help me with it ?
PARAMETERS Parametr Text ( 255 );
SELECT tbl1.code, tbl1.Desc
FROM tbl1
WHERE tbl1.Desc Like "*" & [Parametr] & "*";
it works very well in Access. but when I pass the parameter with VB I got an empty recordset , can you help me with it ?