pscan: add DROP DATABASE

This commit is contained in:
Jeff Garzik
2019-01-05 09:38:54 -05:00
parent de88152e89
commit 20164e984d
5 changed files with 16 additions and 7 deletions

4
tst-create-table.sql Normal file
View File

@ -0,0 +1,4 @@
create table if not exists tester (
name varchar(100) primary key,
age int not null
);