Computer Science, asked by PrinceEdward9260, 1 year ago

How can we retrieve file from database using JDBC?

Answers

Answered by khushi769
0

The example to retrieve the file from the Oracle database is given below.

import java.io.*;

import java.sql.*;

public class RetrieveFile {

public static void main(String[] args) {

try{

Class.forName("oracle.jdbc.driver.OracleDriver");

Connection con=DriverManager.getConnection(

Similar questions