I want to execute an SQL script file in Java without reading all file content into a big query and executing it. Is there any standard way?
|
There is no portable way of doing that. You can execute a native client as an external program to do that though:
|
|||
|
|
|
There is great way of executing SQL scripts from Java without reading them yourself as long as you don't mind having a runtime dependency on Ant. In my opinion such a dependency is very well justified in your case. Here is sample code, where SQLExec class lives in ant.jar:
|
|||
|
|
|
No, you must read the file, split it into separate queries and then execute them individually (or using the batch API of JDBC). One of the reasons is that every database defines their own way to separate SQL statements (some use |
|||
|
|
|
try this code:
|
|||||
|
|
JDBC does not support this option (although a specific DB driver may offer this). Anyway, there should not be a problem with loading all file contents into memory. |
|||
|
|
|
You cannot do using JDBC as it does not support . Work around would be including iBatis iBATIS is a persistence framework and call the Its not good to include a heavy weight persistence framework like ibatis in order to run a simple sql scripts any ways which you can do using command line
|
|||
|
|
|
Since JDBC doesn't support this option the best way to solve this question is executing command lines via the Java Program. Bellow is an example to postgresql:
|
|||
|
|
|
The below tutorial helps to execute sql. http://www.mkyong.com/jdbc/how-to-run-a-mysql-script-using-java/ |
|||
|
|


