Replies: 3 comments
-
|
@ReneMuala Does it work with Poco 1.14? |
Beta Was this translation helpful? Give feedback.
-
|
same issue with 1.14.2 |
Beta Was this translation helpful? Give feedback.
-
AnalysisThe exception is thrown at Poco::Data::StatementImpl::Ptr SessionImpl::createStatementImpl()
{
poco_check_ptr (_pDB); // Throws NullPointerException if _pDB is null
return new SQLiteStatementImpl(*this, _pDB);
}POCO's test suite passes on the same code path: This indicates the POCO source code is correct. Likely Cause: xmake Package ConfigurationBoth reporters use xmake to build. The xmake POCO package has some configuration that may cause issues:
Questions for reporters@ReneMuala @HardwayLinka Could you please provide:
This appears to be a build configuration issue rather than a POCO bug. We need more information about your xmake setup to confirm. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
Poco is raising a null pointer exception when trying to execute a query on a session.
To Reproduce
perform any operation on a sqlite3 session
Expected behavior
the respective query should be executed
Logs
stdout
Screenshots
Please add relevant environment information:
Additional context
Im using xmake to get the depencency
Beta Was this translation helpful? Give feedback.
All reactions