On 25 Feb 2016, at 6:01am, <admin at shuling.net> <admin at shuling.net> wrote:
> Does SQLite provide a good way to > encrypt the SQL query strings while does not affect the performance when > executing the queries? The source code for SQLite is available. There's no way to prevent a hacker reverse-engineering whatever calls you make and adding source code of their own to log your command before executing it. You can encrypt your database stored on disk, but not your interaction with the SQLite API. Simon.