I have a file called scripts.sql
which contains a huge amount of sql queries, here is the first few lines of the file:
alter table companies change ...... ;
insert into addresses values (.....);
update users set blabla = 'blabla'......;
I want to know if in some way I can execute all the queries in this file with java.
I am using MySQL database.