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
orcas 在使用sqlite3+borm过程中发现一些差异:
INSERT IGNORE INTO
INSERT OR IGNORE INTO
FORCE INDEX(idx_name)
INDEXED BY idx_name
ON DUPLICATE KEY UPDATE field1=value1, field2=value2...
ON CONFLICT(field) DO UPDATE SET field1=value1, field2=value2...
*
?
GLOB(field, matcher)
UPDATE
DELETE
LIMIT
LIMIT 2,3
LIMIT 3 OFFSET 2
The text was updated successfully, but these errors were encountered:
https://github.com/orca-zhang/borm/tree/sqlite 分支已全部支持
Sorry, something went wrong.
No branches or pull requests
orcas 在使用sqlite3+borm过程中发现一些差异:
INSERT IGNORE INTO
->INSERT OR IGNORE INTO
FORCE INDEX(idx_name)
->INDEXED BY idx_name
ON DUPLICATE KEY UPDATE field1=value1, field2=value2...
->ON CONFLICT(field) DO UPDATE SET field1=value1, field2=value2...
*
和?
的模式匹配GLOB(field, matcher)
UPDATE
/DELETE
语句不能添加LIMIT
约束LIMIT 2,3
->LIMIT 3 OFFSET 2
The text was updated successfully, but these errors were encountered: