how can i store my sound file wav,mp3 in database sql2005 and access using java.
java
Collapse
X
-
Tags: None
-
those files are binary files.so, you will take field name BLOB in oracle.
in ResultSet interface there is a method getBinaryStream ()
by using this method you can store data into database and access the data from database. so, you have to refere ResultSet interface into JDBC concept.
if you want to code I will provide the code.
Comment