I want to insert image into a table like
CREATE TABLE XX_SAMPLE(ID INT ,IMAGE BLOB);
So can you help out form how t
Please try below code
INSERT INTO xx_BLOB(ID,IMAGE) VALUES(1,LOAD_FILE('E:/Images/jack.jpg'));