Hi kulrom, for my proj the user need to key in the keyword like "the" and it will retrieve related keyword like "the ring", "lord of the ring". I had tired this sentance:
Dim enter AsString
enter = TextBox1.Text
Dim strSQL AsString = "SELECT * FROM movieDet WHERE title = '" + %enter% + "' "
Dim cmd AsNew OleDbCommand(strSQL, New OleDbConnection(strConn))
cmd.Connection.Open()
For this % character it says that it is a invalid character. But this is something i learn in sql statement. Is there any improve statement to solve this problem? Or is there another way to do the search engine? thankx
Regards,
tiffany