aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/statement.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-12 17:24:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-12 17:24:44 +0200
commit9126281b53722115b2e8624632f2dd616f0c26a0 (patch)
tree2c901cd17dc2b09c7f344d1dd21ce1c83f9dab2b /odb/mysql/statement.cxx
parentc0af27a770b1505ad6a1226f57f90642ce395296 (diff)
Completion of prepared query support
Diffstat (limited to 'odb/mysql/statement.cxx')
-rw-r--r--odb/mysql/statement.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/odb/mysql/statement.cxx b/odb/mysql/statement.cxx
index 647ec96..b1c156d 100644
--- a/odb/mysql/statement.cxx
+++ b/odb/mysql/statement.cxx
@@ -23,14 +23,14 @@ namespace odb
//
statement::
- statement (connection& conn, const string& text)
+ statement (connection_type& conn, const string& text)
: conn_ (conn), text_copy_ (text), text_ (text_copy_.c_str ())
{
init (text_copy_.size ());
}
statement::
- statement (connection& conn, const char* text, bool copy)
+ statement (connection_type& conn, const char* text, bool copy)
: conn_ (conn)
{
size_t n;
@@ -108,7 +108,7 @@ namespace odb
}
select_statement::
- select_statement (connection& conn,
+ select_statement (connection_type& conn,
const string& t,
binding& param,
binding& result)
@@ -125,7 +125,7 @@ namespace odb
}
select_statement::
- select_statement (connection& conn,
+ select_statement (connection_type& conn,
const char* t,
binding& param,
binding& result,
@@ -143,7 +143,7 @@ namespace odb
}
select_statement::
- select_statement (connection& conn, const string& t, binding& result)
+ select_statement (connection_type& conn, const string& t, binding& result)
: statement (conn, t),
end_ (false),
cached_ (false),
@@ -156,7 +156,7 @@ namespace odb
}
select_statement::
- select_statement (connection& conn,
+ select_statement (connection_type& conn,
const char* t,
binding& result,
bool ct)
@@ -338,13 +338,13 @@ namespace odb
}
insert_statement::
- insert_statement (connection& conn, const string& t, binding& param)
+ insert_statement (connection_type& conn, const string& t, binding& param)
: statement (conn, t), param_ (param), param_version_ (0)
{
}
insert_statement::
- insert_statement (connection& conn,
+ insert_statement (connection_type& conn,
const char* t,
binding& param,
bool ct)
@@ -402,13 +402,13 @@ namespace odb
}
update_statement::
- update_statement (connection& conn, const string& t, binding& param)
+ update_statement (connection_type& conn, const string& t, binding& param)
: statement (conn, t), param_ (param), param_version_ (0)
{
}
update_statement::
- update_statement (connection& conn,
+ update_statement (connection_type& conn,
const char* t,
binding& param,
bool ct)
@@ -460,13 +460,13 @@ namespace odb
}
delete_statement::
- delete_statement (connection& conn, const string& t, binding& param)
+ delete_statement (connection_type& conn, const string& t, binding& param)
: statement (conn, t), param_ (param), param_version_ (0)
{
}
delete_statement::
- delete_statement (connection& conn,
+ delete_statement (connection_type& conn,
const char* t,
binding& param,
bool ct)