MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / write

Method write

src/sqlite.cpp:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85sqlite sqlite::write(const fs::path& p)
86{
87 sqlite r;
88 r.impl = std::make_shared<sqlite_impl>();
89 // Using '+' instead of bitwise '|' to avoid compilation warning
90 r.impl->open(p, SQLITE_OPEN_READWRITE + SQLITE_OPEN_CREATE);
91 return r;
92}
93
94std::vector<std::unordered_map<std::string, std::string>> sqlite::execute(const std::string& s)
95{

Callers 13

parseFunction · 0.45
mainFunction · 0.45
api.pyFile · 0.45
api_generateFunction · 0.45
te_generateFunction · 0.45
stamp_fileFunction · 0.45
te.pyFile · 0.45
update_yearFunction · 0.45
downloadFunction · 0.45
TEST_CASEFunction · 0.45
write_bufferFunction · 0.45
wrapper_writeMethod · 0.45

Calls 1

openMethod · 0.80

Tested by 1

TEST_CASEFunction · 0.36