aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/sqlite/sqlstatementbuilder.cpp
diff options
context:
space:
mode:
authorKai Koehne <[email protected]>2018-09-21 13:52:37 +0200
committerKai Koehne <[email protected]>2018-09-21 12:02:54 +0000
commitac9ab687403a2bbd4689ac14da3fc6f6594da7a1 (patch)
treedfd627f95e6e4729d0087075c9c0a3be9589902f /src/libs/sqlite/sqlstatementbuilder.cpp
parent6ab3a02c28f07940f0feecd853da6462838fd580 (diff)
Fix incorrect grammar in 'does not exists'
Change-Id: I790d9bbdfc170808ff66e70be0f81d1c292c0bcb Reviewed-by: Eike Ziller <[email protected]> Reviewed-by: Marco Bubke <[email protected]>
Diffstat (limited to 'src/libs/sqlite/sqlstatementbuilder.cpp')
-rw-r--r--src/libs/sqlite/sqlstatementbuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/sqlite/sqlstatementbuilder.cpp b/src/libs/sqlite/sqlstatementbuilder.cpp
index cfa08a2b7b3..3ead80b8d40 100644
--- a/src/libs/sqlite/sqlstatementbuilder.cpp
+++ b/src/libs/sqlite/sqlstatementbuilder.cpp
@@ -226,7 +226,7 @@ void SqlStatementBuilder::clearSqlStatement()
void SqlStatementBuilder::checkIfPlaceHolderExists(Utils::SmallStringView name) const
{
if (name.size() < 2 || !name.startsWith('$') || !m_sqlTemplate.contains(name))
- throwException("SqlStatementBuilder::bind: placeholder name does not exists!", name.data());
+ throwException("SqlStatementBuilder::bind: placeholder name does not exist!", name.data());
}
void SqlStatementBuilder::checkIfNoPlaceHoldersAynmoreExists() const