Poco::UInt32 => std::size_t

This commit is contained in:
Aleksandar Fabijanic
2009-02-16 15:12:03 +00:00
parent 142c248754
commit 0f98824311
2 changed files with 5 additions and 5 deletions

View File

@@ -58,10 +58,10 @@ public:
void init(MYSQL_STMT* stmt);
/// Initializes the metadata.
Poco::UInt32 columnsReturned() const;
std::size_t columnsReturned() const;
/// Returns the number of columns in resultset.
const MetaColumn& metaColumn(Poco::UInt32 pos) const;
const MetaColumn& metaColumn(std::size_t pos) const;
/// Returns the reference to the specified metacolumn.
MYSQL_BIND* row();