Maybe it will seems a bit stupid but i have to ask it
i gave a query:
string sqlString = "SELECT ID,Title,Abstract,Body FROM Articles WHERE Title LIKE '" + searchstring +"' ";
//Title example: How are you today
if i search with the keyword how it produces a table but in the title cell i only see the "How" and not all the title.
if i search with this query
string sqlString = "SELECT ID,Title,Abstract,Body FROM Articles WHERE Title LIKE '" + %searchstring +"' ";
it doesnt like that % why?
Thank you in advanced
i gave a query:
string sqlString = "SELECT ID,Title,Abstract,Body FROM Articles WHERE Title LIKE '" + searchstring +"' ";
//Title example: How are you today
if i search with the keyword how it produces a table but in the title cell i only see the "How" and not all the title.
if i search with this query
string sqlString = "SELECT ID,Title,Abstract,Body FROM Articles WHERE Title LIKE '" + %searchstring +"' ";
it doesnt like that % why?
Thank you in advanced