
If you have a SQL script file and you want to run it using Java code, you can do that using JDBC,
Script File: sqlScript.sqlSelect * from students;
Select * from students where student_name="Mike";
Select * from students where student_address="Ohio";
Example:
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.List;
public class JDBCReadScriptExample {
public static void main(String[] args) throws ClassNotFoundException, SQLException, IOException {
String url ="jdbc:mysql://localhost:3306/my_uat";
String userName="root";
String password ="root123";
Connection connection = DriverManager.getConnection(url,userName,password);
Statement statement = connection.createStatement();
Path sqlScriptPath = Paths.get("/Users/code2care/my-projects-22/java-examples/sqlScript.sql");
List<String> sqlScript = Files.readAllLines(sqlScriptPath);
for(String script: sqlScript) {
ResultSet resultSet = statement.executeQuery(script);
System.out.println("Query: " + script);
while(resultSet.next()) {
System.out.println(resultSet.getInt(1)+"\t"+
resultSet.getString(2)+"\t"+
resultSet.getString(3)+"\t"+
resultSet.getString(4));
}
System.out.println("");
}
}
}
Output:
Query: Select * from students;
1 Mike 2001-07-22 00:00:00 New York City
2 Alex 2002-08-13 00:00:00 Chicago
3 Sam 2022-01-25 00:00:00 Ohio
4 Andy 2001-10-10 00:00:00 Japan
5 Andrew 1999-07-21 00:00:00 Ohio
6 Chris 1998-11-18 10:20:10 Ohio
7 Huge 2022-09-06 18:59:47 Ohio
Query: Select * from students where student_name="Mike";
1 Mike 2001-07-22 00:00:00 New York City
Query: Select * from students where student_address="Ohio";
3 Sam 2022-01-25 00:00:00 Ohio
5 Andrew 1999-07-21 00:00:00 Ohio
6 Chris 1998-11-18 10:20:10 Ohio
7 Huge 2022-09-06 18:59:47 Ohio
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!