SQL escape with sqlite in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T21:42:44Zhttp://stackoverflow.com/feeds/question/633245http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/633245/sql-escape-with-sqlite-in-c2SQL escape with sqlite in C#acidzombie242009-03-11T03:36:49Z2009-03-11T03:54:42Z
<p>I have a text field and its breaking my sql statement. How do i escape all the chars in that field? I am using sqlite with <a href="http://sqlite.phxsoftware.com/" rel="nofollow">http://sqlite.phxsoftware.com/</a> in C#</p>
http://stackoverflow.com/questions/633245/sql-escape-with-sqlite-in-c/633254#6332545Answer by bstoney for SQL escape with sqlite in C#bstoney2009-03-11T03:43:44Z2009-03-11T03:49:22Z<p>You should be using a parameter as in:</p>
<pre><code>SQLiteCommand cmd = _connection.CreateCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "SELECT * FROM MyTable WHERE MyColumn = @parameter";
cmd.Parameters.Add( new SQLiteParameter( "@parameter", textfield ) );
SQLiteDataReader reader = cmd.ExecuteReader();
</code></pre>
<p>Using a parametrised SQL will escape all input values and help protect you from SQL injection attacks.</p>
http://stackoverflow.com/questions/633245/sql-escape-with-sqlite-in-c/633271#633271-3Answer by peiklk for SQL escape with sqlite in C#peiklk2009-03-11T03:54:42Z2009-03-11T03:54:42Z<p>You can also replace all single quote delimiters with doubt single quotes (not ").</p>
<pre><code>sql = sql.Replace("'","''");
</code></pre>