Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

iwant to initialize the database using sql extension file.But i am getting a SQL exception. "Initializing Database.....java.sql.SQLException: Invalid SQL type"

         public class DbInitializer 
         {
        public static void main(String[] args) {
        try{
            System.out.print("Initializing Database.....");
            FileInputStream fin=new FileInputStream("C:\.........\db.sql");
            byte data[]=new byte[fin.available()];
            fin.read();
            String quries=new String(data);
            StringTokenizer st=new  StringTokenizer(quries,"/");

Connection con=ConnectionProvider.getConnection(); Statement stmt=con.createStatement(); while(st.hasMoreElements()){ String query=st.nextElement().toString(); stmt.execute(query); } con.close(); System.out.print("Database successfully initialized."); }catch(Exception e) {System.out.print(e);} }}

db.sql--> CREATE TABLE EMP (ID NUMBER(10,0) NOT NULL PRIMARY KEY ENABLE,NAME VARCHAR2(25 char),JOB VARCHAR2(25 char),SALARY NUMBER(10,0) ) / create or replace function SUM ( n1 IN number, n2 IN number ) return number is retNum number(8); begin retNum :=n1+n2; return retNum; end;

share|improve this question
Most likely the statement you are executing is not valid. Try to isolate that query and execute it by hand. – Mark Rotteveel Jan 18 at 11:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.