How to insert images into database table by using JDBC? To know about these topic follow the below lines, Before going to write a JDBC program for inserting images into database table, we need to create a specific table for inserting images column datatype. For creating the database table, execute the below command in MySQL command prompt. 1 2 3 4 CREATE TABLE ` images ` ( ` image_id ` int ( 11 ) NOT NULL AUTO_INCREMENT, ` image_flag ` int ( 11 ) NOT NULL , ` image ` longblob NOT NULL , PRIMARY KEY ( ` image_id ` )); After executing the above query in MySQL command prompt, execute the below query to know weather the above table query is created or not. 1 Show tables; When you have executed the above query that will show you the list of table which all exists in the current database. Current tab...
Blog for Java Technology