Samchon Framework for CPP
1.0.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
TSQLi.hpp
1
#pragma once
2
#include <samchon/API.hpp>
3
4
#include <samchon/library/SQLi.hpp>
5
6
namespace
samchon
7
{
8
namespace
library
9
{
10
class
SQLStatement;
11
19
class
TSQLi
20
:
public
SQLi
21
{
22
private
:
23
typedef
SQLi
super
;
24
25
public
:
31
TSQLi
(
int
port
= 1433)
32
: super(
"{SQL Server}"
,
port
)
33
{
34
};
35
virtual
~
TSQLi
() =
default
;
36
48
/*virtual auto createStatement() -> std::shared_ptr<SQLStatement>
49
{
50
return std::make_shared<TSQLStatement>(this);
51
};*/
52
};
53
};
54
};
samchon::library::TSQLi::TSQLi
TSQLi(int port=1433)
Construct from port.
Definition:
TSQLi.hpp:31
samchon::library::TSQLi
A SQL interface for T-SQL.
Definition:
TSQLi.hpp:19
samchon::library::SQLi::port
int port
Port number of DBMS.
Definition:
SQLi.hpp:65
samchon::library::SQLi
A SQL interface; DBMS connector.
Definition:
SQLi.hpp:42
samchon
Definition:
ByteArray.hpp:6
cpp
samchon
library
TSQLi.hpp
Generated by
1.8.11