Samchon Framework for CPP  1.0.0
TSQLi.cpp
1 #include <samchon/library/TSQLi.hpp>
2 #include <samchon/library/TSQLStatement.hpp>
3 
4 using namespace std;
5 using namespace samchon;
6 using namespace samchon::library;
7 
8 TSQLi::TSQLi(int port)
9  : SQLi("{SQL Server}", port)
10 {}
11 TSQLi::~TSQLi() {}
12 
13 auto TSQLi::createStatement() -> shared_ptr<SQLStatement>
14 {
15  return shared_ptr<SQLStatement>(new TSQLStatement(this));
16 }
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84
A SQL interface; DBMS connector.
Definition: SQLi.hpp:42
virtual auto createStatement() -> std::shared_ptr< SQLStatement >
Factory method for creating T-SQL statement.
Definition: TSQLi.cpp:13
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7