Statement.empty

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

struct Statement
bool
empty
@property nothrow
(
)

Examples

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

Meta