Tells whether the statement is empty (no SQL statement).
auto db = Database(":memory:"); auto statement = db.prepare(" ; "); assert(statement.empty);
See Implementation
Tells whether the statement is empty (no SQL statement).