The moose likes JDBC and the fly likes problem while loading data from excel to mysql Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "problem while loading data from excel to mysql " Watch "problem while loading data from excel to mysql " New topic
Author

problem while loading data from excel to mysql

abid shaikh
Greenhorn

Joined: Jan 28, 2008
Posts: 1
my code
try{ Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/stock","root","root");
Statement st=con.createStatement();
String filename1="C:\\cm01MAR2002bhav.csv";

st.executeQuery("LOAD DATA INFILE '"+filename1+"' INTO TABLE stock.stockdata FIELDS TERMINATED BY ','LINES TERMINATED BY '\n'(SYMBOL,SERIES,OPEN,HIGH,LOW,CLOSE,LAST,PREVCLOSE,TOTTRDQTY,TOTTRDVAL,TIMESTAMP)");
}catch(Exception e){System.out.println(e);}


error
java.sql.SQLException: File 'C:\ProgramData\MySQL\MySQL Server 5.5\Data\stock\cm01MAR2002bhav.csv' not found (Errcode: 2)
Philip Grove
Ranch Hand

Joined: Aug 18, 2009
Posts: 68

Your SQL statement is a "LOAD DATA INFILE" statement in which data is read from a text file by the server. If you want it to be read by the client it should be "LOAD DATA LOCAL INFILE". Using a server side statement like that requires a few things: the file must exists on the server and you need FILE privileges on the server. The client side statement is slower because it needs to send the data to the server but it does not require FILE privileges and the file only has to be on the client.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: problem while loading data from excel to mysql
 
Similar Threads
how to get mysql backup using java swing
Refresh chart in jsp according to MySQL database
MySQL Connector/J
developing jsp page using cewolf
Data type mapping issue