mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-14 02:27:38 -07:00
update controller image and some dependencies
This commit is contained in:
parent
c1384422c3
commit
183a9d7088
667 changed files with 173907 additions and 17 deletions
|
@ -0,0 +1,19 @@
|
|||
#include <pqxx/internal/callgate.hxx>
|
||||
|
||||
namespace pqxx::internal
|
||||
{
|
||||
class sql_cursor;
|
||||
}
|
||||
|
||||
|
||||
namespace pqxx::internal::gate
|
||||
{
|
||||
class PQXX_PRIVATE connection_sql_cursor : callgate<connection>
|
||||
{
|
||||
friend class pqxx::internal::sql_cursor;
|
||||
|
||||
connection_sql_cursor(reference x) : super(x) {}
|
||||
|
||||
result exec(char const query[]) { return home().exec(query); }
|
||||
};
|
||||
} // namespace pqxx::internal::gate
|
Loading…
Add table
Add a link
Reference in a new issue