I can't believe this is the first time this has come up. I have a script that looks like this:
drop table if exists Recipients
drop table if exists Messages
create table Recipients (
Id INTEGER not null,
Name TEXT,
Email TEXT,
primary key (Id)
)
create table Messages (
Id INTEGER not null,
Subject TEXT,
Contents TEXT,
SentOn DATETIME,
primary key (Id)
)
and I just want to run it against a SQLite connection in my server explorer but the only way I can find of executing SQL is against the silly query builder.
I don't need a visual anything. I just need a pad that I can hit "Execute" on and it will run the script.