Home | History | Annotate | Download | only in sql

Lines Matching refs:key

59   // Set the given arbitrary key with the given data. Returns true on success.
60 bool SetValue(const char* key, const std::string& value);
61 bool SetValue(const char* key, int value);
62 bool SetValue(const char* key, int64 value);
64 // Retrieves the value associated with the given key. This will use sqlite's
66 bool GetValue(const char* key, std::string* value);
67 bool GetValue(const char* key, int* value);
68 bool GetValue(const char* key, int64* value);
73 bool PrepareSetStatement(Statement* statement, const char* key);
74 bool PrepareGetStatement(Statement* statement, const char* key);