Tagged Questions

3
votes
3answers
2k views

Add apostrophe to last name search

I created a proc that will return a list of applicants by lastname. I have a problem searching Applicants with last name that has apostrophe (Example O'Connor). Could you please help finding those ...
1
vote
4answers
112 views

Error with encoding apostrophe to and from database

I have an html string that is dynamically created server side. strHTML = "<td><a href""google.com"" onclick=""SaveToDatabase('" + arrString(0) + "','" + arrString(1) + "')"" The value ...
1
vote
1answer
352 views

Multiple rows for insert command - Apostrophe problem

I'm trying to insert multiple rows using SqlCommand from C# to SQL Server. I'm forming a simple query as below: Insert into temp(field1, field2) values (1, 'test'), (2, 'test1'), (3, 'test2') and so ...
0
votes
6answers
113 views

How do I search for names with apostrophe in SQL Server?

SELECT * FROM Header WHERE (userID LIKE [%'%])
0
votes
3answers
1k views

Apostrophes and SQL Server FT search

I have setup FT search in SQL Server 2005 but I cant seem to find a way to match "Lias" keyword to a record with "Lia's". What I basically want is to allow people to search without the apostrophe. I ...