mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-07 22:13:15 +00:00
merge Data changes (ODBC Sybase, PostgreSQL etc)
This commit is contained in:
@@ -302,11 +302,10 @@ std::size_t SQLiteStatementImpl::columnsReturned() const
|
||||
}
|
||||
|
||||
|
||||
const MetaColumn& SQLiteStatementImpl::metaColumn(std::size_t pos) const
|
||||
const MetaColumn& SQLiteStatementImpl::metaColumn(std::size_t pos, std::size_t dataSet) const
|
||||
{
|
||||
std::size_t curDataSet = currentDataSet();
|
||||
poco_assert (pos >= 0 && pos <= _columns[curDataSet].size());
|
||||
return _columns[curDataSet][pos];
|
||||
poco_assert (pos >= 0 && pos <= _columns[dataSet].size());
|
||||
return _columns[dataSet][pos];
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user