Timofey Turenko 8c6ca38a8a add tests
2017-05-23 21:09:30 +03:00

5 lines
136 B
SQL

CREATE DATABASE IF NOT EXISTS test;
USE test;
DROP TABLE IF EXISTS test_bind_fetch;
CREATE TABLE test_bind_fetch(c1 char(10), c2 text);