Commit 417e0a37 authored by Pavel Vainerman's avatar Pavel Vainerman

minor fix:

parent dcabbb21
...@@ -207,7 +207,7 @@ PostgreSQLResult::PostgreSQLResult( const pqxx::result& res ) ...@@ -207,7 +207,7 @@ PostgreSQLResult::PostgreSQLResult( const pqxx::result& res )
{ {
COL col; COL col;
for( auto i = 0; i < c.size(); i++ ) for( pqxx::result::tuple::size_type i = 0; i < c.size(); i++ )
col.push_back( c[i].as<string>() ); col.push_back( c[i].as<string>() );
row.push_back(col); row.push_back(col);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment