#include "components/sqlite_proto/key_value_table.h"
#include <stdint.h>
#include "base/strings/stringprintf.h"
#include "third_party/protobuf/src/google/protobuf/message_lite.h"
namespace sqlite_proto {
namespace internal {
void BindDataToStatement(const std::string& key,
const google::protobuf::MessageLite& data,
sql::Statement* statement) { … }
std::string GetSelectAllSql(const std::string& table_name) { … }
std::string GetReplaceSql(const std::string& table_name) { … }
std::string GetDeleteSql(const std::string& table_name) { … }
std::string GetDeleteAllSql(const std::string& table_name) { … }
}
}