SqliteModernCpp / sqlite_modern_cpp

The C++14 wrapper around sqlite library
MIT License
886 stars 154 forks source link

Ability to interrupt queries #207

Open Salamandar opened 4 years ago

Salamandar commented 4 years ago

Application may require queries to be interrupt. AFAIK, sqlitemoderncpp does not provide any way to do that.

For now, I'll try to use sqlite3_interrupt(m_db.connection().get());. But that would be great to have it in the API.