전체 글
-
-
-
-
Murphy's law독백 2006. 7. 10. 22:56
"Whatever can go wrong, will go wrong" 요즘.. 완전 제대로 군... 되는 일이 없네..
-
Oracle BLOB컴퓨터/JAVA 2006. 7. 5. 13:21
Oracle에 접속해서 BLOB 타입의 데이터를 가져와 파일로 저장한다.package database;import java.io.*; import java.sql.*;import oracle.sql.*; /** * Database:Oracle * IP: 127.0.0.1:1521 * SID: o10g * USER: scott * PASS: tiger * @author hikasiru * */ public class OracleTest { public static void main(String[] args) throws SQLException, ClassNotFoundException, IOException { Connection con; Statement stmt = null; ResultSet rst ..