We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code can be updated to use the update or create query in SQLite
private class Sql { // ... public const string UpdateDbVersion = "update settings set s_value = '{0}' where lower(s_key) = 'db_version'"; // ... }
Here's an example:
INSERT INTO settings (s_key, s_value) VALUES ('db_version', '{0}') ON CONFLICT(s_key) DO UPDATE SET s_value = '{0}' WHERE lower(s_key) = 'db_version';
The text was updated successfully, but these errors were encountered:
jibedoubleve
No branches or pull requests
Refactoring
This code can be updated to use the update or create query in SQLite
How to
Here's an example:
The text was updated successfully, but these errors were encountered: