namespace PT renamed to pt
This commit is contained in:
@@ -55,7 +55,7 @@ public:
|
||||
virtual ~PostgreSQLConnector();
|
||||
|
||||
|
||||
bool query(const PT::TextStream & stream, QueryResult & query_result);
|
||||
bool query(const pt::TextStream & stream, QueryResult & query_result);
|
||||
bool query(const char * query_str, QueryResult & query_result);
|
||||
bool query(const std::string & query_str, QueryResult & query_result);
|
||||
|
||||
@@ -64,10 +64,10 @@ public:
|
||||
bool query_insert(const char * query_str, QueryResult & query_result);
|
||||
bool query_remove(const char * query_str, QueryResult & query_result);
|
||||
|
||||
bool query_select(const PT::TextStream & stream, QueryResult & query_result);
|
||||
bool query_update(const PT::TextStream & stream, QueryResult & query_result);
|
||||
bool query_insert(const PT::TextStream & stream, QueryResult & query_result);
|
||||
bool query_remove(const PT::TextStream & stream, QueryResult & query_result);
|
||||
bool query_select(const pt::TextStream & stream, QueryResult & query_result);
|
||||
bool query_update(const pt::TextStream & stream, QueryResult & query_result);
|
||||
bool query_insert(const pt::TextStream & stream, QueryResult & query_result);
|
||||
bool query_remove(const pt::TextStream & stream, QueryResult & query_result);
|
||||
|
||||
|
||||
virtual void set_conn_param(const std::wstring & database, const std::wstring & user, const std::wstring & pass);
|
||||
@@ -85,7 +85,7 @@ public:
|
||||
protected:
|
||||
|
||||
PGconn * pg_conn;
|
||||
PT::TextStream stream;
|
||||
pt::TextStream stream;
|
||||
std::string query_str;
|
||||
|
||||
std::wstring db_database;
|
||||
@@ -94,7 +94,7 @@ protected:
|
||||
|
||||
virtual bool do_query(const char * query_str, PostgreSQLQueryResult * psql_result);
|
||||
virtual void allocate_default_expression();
|
||||
virtual void overwrite(PT::TextStream & stream);
|
||||
virtual void overwrite(pt::TextStream & stream);
|
||||
virtual const char * query_last_sequence(const wchar_t * sequence_table_name);
|
||||
virtual QueryResult * create_query_result();
|
||||
|
||||
|
Reference in New Issue
Block a user