SQL escape with sqlite in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:42:44Z http://stackoverflow.com/feeds/question/633245 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/633245/sql-escape-with-sqlite-in-c 2 SQL escape with sqlite in C# acidzombie24 2009-03-11T03:36:49Z 2009-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#633254 5 Answer by bstoney for SQL escape with sqlite in C# bstoney 2009-03-11T03:43:44Z 2009-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 -3 Answer by peiklk for SQL escape with sqlite in C# peiklk 2009-03-11T03:54:42Z 2009-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>