summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/IDBKey.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/IDBKey.h')
-rw-r--r--WebCore/storage/IDBKey.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/WebCore/storage/IDBKey.h b/WebCore/storage/IDBKey.h
index b9a0be7..3175e7e 100644
--- a/WebCore/storage/IDBKey.h
+++ b/WebCore/storage/IDBKey.h
@@ -73,8 +73,12 @@ public:
return m_number;
}
+ static PassRefPtr<IDBKey> fromQuery(SQLiteStatement& query, int baseColumn);
+
bool isEqual(IDBKey* other);
- String whereSyntax() const;
+ String whereSyntax(String qualifiedTableName = "") const;
+ String leftCursorWhereFragment(String comparisonOperator, String qualifiedTableName = "");
+ String rightCursorWhereFragment(String comparisonOperator, String qualifiedTableName = "");
int bind(SQLiteStatement& query, int column) const;
void bindWithNulls(SQLiteStatement& query, int baseColumn) const;