fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string q1 = "SELECT Replace(fldItem,'\"','''') FROM Table";
  8. string q2 = @"SELECT Replace(fldItem,'""','''') FROM Table";
  9. Console.WriteLine(q1);
  10. Console.WriteLine(q2);
  11. }
  12. }
Success #stdin #stdout 0.03s 23872KB
stdin
Standard input is empty
stdout
SELECT Replace(fldItem,'"','''') FROM Table
SELECT Replace(fldItem,'"','''') FROM Table