mikedaruke
Technical User
Any way to run a sql script from JAVA.
I use this right now:
stmnt = conn.prepareStatement("select * from table where field ='abc'");
But I have a big script that is like a page long. How do I enter it? Also I have like 4 values that I am getting from a from that I need to insert into it.
Any help appreciated.
I use this right now:
stmnt = conn.prepareStatement("select * from table where field ='abc'");
But I have a big script that is like a page long. How do I enter it? Also I have like 4 values that I am getting from a from that I need to insert into it.
Any help appreciated.