Reputation: 147
I'm trying to fill a table called book
, in particular I need to insert an image in the field image
of that table. This is the structure:
CREATE TABLE IF NOT EXISTS `ods`.`books` (
`id` INT NOT NULL,
`name` VARCHAR(255) NOT NULL,
`site` VARCHAR(255) NOT NULL,
`image` BLOB NOT NULL,
PRIMARY KEY (`id`))
ENGINE = InnoDB;
this is the window of the software:
How can I add an image using the inserts
windows of MySqlWorkbench
?
Thanks.
Upvotes: 1
Views: 4754