@@ -143,7 +143,7 @@ bool Extractor::extract(std::size_t pos, char& val)
143143bool Extractor::extract (std::size_t pos, std::string& val)
144144{
145145 if (_metadata.columnsReturned () <= pos)
146- throw MySQLException (" Extractor: attempt to extract more paremeters , than query result contain" );
146+ throw MySQLException (" Extractor: attempt to extract more parameters , than query result contain" );
147147
148148 if (_metadata.isNull (static_cast <Poco::UInt32>(pos)))
149149 return false ;
@@ -161,7 +161,7 @@ bool Extractor::extract(std::size_t pos, std::string& val)
161161bool Extractor::extract (std::size_t pos, Poco::Data::BLOB& val)
162162{
163163 if (_metadata.columnsReturned () <= pos)
164- throw MySQLException (" Extractor: attempt to extract more paremeters , than query result contain" );
164+ throw MySQLException (" Extractor: attempt to extract more parameters , than query result contain" );
165165
166166 if (_metadata.isNull (static_cast <Poco::UInt32>(pos)))
167167 return false ;
@@ -177,7 +177,7 @@ bool Extractor::extract(std::size_t pos, Poco::Data::BLOB& val)
177177bool Extractor::extract (std::size_t pos, Poco::Data::CLOB& val)
178178{
179179 if (_metadata.columnsReturned () <= pos)
180- throw MySQLException (" Extractor: attempt to extract more paremeters , than query result contain" );
180+ throw MySQLException (" Extractor: attempt to extract more parameters , than query result contain" );
181181
182182 if (_metadata.isNull (static_cast <Poco::UInt32>(pos)))
183183 return false ;
@@ -243,7 +243,7 @@ bool Extractor::isNull(std::size_t col, std::size_t row)
243243 poco_assert (row == POCO_DATA_INVALID_ROW);
244244
245245 if (_metadata.columnsReturned () <= col)
246- throw MySQLException (" Extractor: attempt to extract more paremeters , than query result contain" );
246+ throw MySQLException (" Extractor: attempt to extract more parameters , than query result contain" );
247247
248248 if (_metadata.isNull (static_cast <Poco::UInt32>(col)))
249249 return true ;
0 commit comments