mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Sql: SqlSelect::ForUpdate generates nothing for sqlite3
git-svn-id: svn://ultimatepp.org/upp/trunk@7437 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
8fe8385db5
commit
efa4d19177
1 changed files with 3 additions and 3 deletions
|
|
@ -93,10 +93,10 @@ SqlSelect& SqlSelect::OrderBy(const SqlSet& set) {
|
|||
}
|
||||
|
||||
SqlSelect& SqlSelect::ForUpdate() {
|
||||
text << " for update";
|
||||
return *this;
|
||||
text << SqlCase(SQLITE3, "")(" for update");
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
SqlSelect& SqlSelect::NoWait() {
|
||||
text << " nowait";
|
||||
return *this;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue