Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
538 views

select rows from dataTable - Issue with the values which have singlequote

I have a .net datatable...from which I am filtering rows using datatable' select function Assume the datatable as below Id | Name | Description | 1 | Anish| "sachin's centuary" | If ...
1
vote
5answers
1k views

TSQL varchar string manipulation problem

I have a variable which contains the following string: AL,CA,TN,VA,NY I have no control over what I get in that variable (comes from reporting services) I need to make it look like this: ...
0
votes
2answers
28 views

php 5.x and ignoring <xml> tags?

Here is a snippet of the code I'm trying to understand; in my web design class, I learned that php single quotes ' ' interpret everything literally, as a string. However, in this code: $kml = ...
0
votes
6answers
2k views

Question about mysql_real_escape_string and single quote

I'm quite frustrated. I want to be able to insert into my database names with single quotes - for example, O'Connor. So, when inserting into the DB, I do: $lname = ...