I am using SQL Server 2008 Web Edition and it seems my SQL queries are automagically having the double quotes replaced with ' + CHAR(34) + '. I am trying to pin down why this is happening, I am using Delphi with ASP.NET and using the ADO.NET object for the SQL.

Has anyone come across this before?

link|improve this question

1  
Do you have a problem because of the replacement or are you just curious to where it happens? – Lieven Aug 23 '10 at 12:27
feedback

2 Answers

up vote 2 down vote accepted

It turns out that it isn't ASP.NET or Delphi causing the issue but is the editor I am using to allow the user to input data. It is replacing all the double quotes before spitting the content out to me.

link|improve this answer
feedback

You could try escape them: Result = System.Text.RegularExpressions.Regex.Replace(InputTxt, @"[\000\010\011\012\015\032\042\047\134\140]", "\\$0");

EDIT: sorry, didn't realize you were using delphi. I'm sure the theory still applies even if the code doesn't.

link|improve this answer
I am trying to not to hack it in some way if there is an option I am missing somewhere. No worries about the langauge, I have learned to use C# and VB since moving to ASP.NET, there isn't much resource for ASP.NET in delphi :) – webnoob Aug 23 '10 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.