Samchon Framework for CPP  1.0.0
TSQLStatement.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/library/SQLStatement.hpp>
5 
6 namespace samchon
7 {
8 namespace library
9 {
10  class SQLi;
11 
21  class SAMCHON_FRAMEWORK_API TSQLStatement
22  : public SQLStatement
23  {
24  friend class TSQLi;
25 
26  private:
27  typedef SQLStatement super;
28 
29  protected:
30  TSQLStatement(SQLi *sqli);
31 
32  public:
33  virtual ~TSQLStatement();
34 
43  virtual auto toXML() const -> std::shared_ptr<XML> override;
44  };
45 };
46 };
A SQL interface for T-SQL.
Definition: TSQLi.hpp:19
A SQL interface; DBMS connector.
Definition: SQLi.hpp:42
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7