vote up 0 vote down star

I want to cache large HTML pages in an SQLite database as blobs, but the HTML pages may ofcourse contain lots of characters which will corrupt the SQL statement.

I'm not too happy with performing search/replace to escape all characters messing up the SQL statement, and encoding the HTML to a format accepted by SQL seems like an expensive step, afterall I'm caching pages to speed things up.

Is there any other alternative for this?

I'm using the SQLite.NET provider

flag

Could you do something simple like base-64 encode the HTML, or gzip it before storing it? – Cory Larson Sep 23 at 13:13

1 Answer

vote up 2 vote down check

I would expect that if you used a named parameter to do the insert, the query engine would take care of escaping the necessary characters for you; eg(note, I've never used Sqlite, so this is a contrived sample):

var myCommand = SqliteCommand("INSERT INTO HtmlPages(PageName, PageText) VALUES(@PageName, @PageText)");
myCommand.Parameters.AddWithValue("@PageName", "asdf");
myCommand.Parameters.AddWithValue("@PageText", "<html>...</html>");
link|flag

Your Answer

Get an OpenID
or

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