Hi , Good day
Inserting an Image into the DataBase :
File image = new File( filename );
FileInputStream fis = new FileInputStream( image );
ps.setBinaryStream( 3, fis, ( int )image.length() )
The above code is for inserting an Image into DataBase , Now the qestion is that how can i pass this till the DAO Layer ?