A .NET wrapper to the SQLite database

SQLiteClient.Quote Method 

Escapes a string to allow it to be safely used in an SQL query. It will double up single quotes, and return the supplied string wrapped in single quotes. Eg the string "Steve's a guy" will be returned as "'Steve''s a guy'". Binary characters are not handled.

[Visual Basic]
Public Shared Function Quote( _
   ByVal input As String _
) As String
[C#]
public static string Quote(
   string input
);

Return Value

Resulting string

See Also

SQLiteClient Class | SQLite.NET Namespace