I am attempting to create a prepared insert
statement in Sequel and I am as far as
db[:registration].prepare(:insert)
=> <Sequel::Mysql2::Dataset/PreparedStatement "INSERT INTO `registration` () VALUES ()">
How do I create a statement that is something like the following:
INSERT INTO `registration` (`name`, `email`) VALUES (?, ?)
The documentation is a little bit obtuse and I can't find any examples online.