2022-08-07 23:32:25 +08:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "rpc_h.h"
|
|
|
|
|
|
|
|
|
|
std::vector<std::wstring> GetDbNames();
|
2022-08-07 23:49:37 +08:00
|
|
|
|
std::vector<RpcTables_t> GetDbTables(std::wstring db);
|
2022-08-20 22:10:11 +08:00
|
|
|
|
std::vector<std::vector<RpcSqlResult_t>> ExecDbQuery(std::wstring db, std::wstring sql);
|