For context, I'm converting a Protégé ontology into an SQLite-powered app. During the migration phase, I need to keep using Protégé until the new app is up and running. Therefore, I'm writing code that can take a .pins file and turn it into an SQLite script.
Why is that relevant to my question? I want a script to execute in a SQLite admin tool until the app is up and running. Therefore, I'm not using parametrized queries to load the data; I'm writing Insert-into statements.
Which brings me to my question: Are there characters that require special handling for SQLite, such as single quotes, backslashes, etc.? Are there ready-made encoders/decoders to/from SQLite into strings?
As always, I appreciate your input.