Statement.empty

Tells whether the statement is empty (no SQL statement).

struct Statement
@property
bool
empty
()

Examples

auto db = Database(":memory:");
auto statement = db.prepare(" ; ");
assert(statement.empty);

Meta