Connection.exec

// FIXME: BROKEN ATM Executes the given string directly

Throws on fatal query errors like bad syntax

struct Connection
exec
(
string command
)

Examples

Connection conn; // An established connection

conn.exec("CREATE TABLE IF NOT EXISTS test_table");

Meta