Help for this page

Select Code to Download


  1. or download this
    create table IMAGES(
     ID int(4) primary key auto_increment,
    ...
     name char(10),
     description char(10)
    );
    
  2. or download this
    insert into IMAGES(data,name,width,height) values(?,?,?,?)