since those excel(File.xls) records are already there in login table as well. Now I would like to I would like extend program to use PrepareStatement to build my query by supplying the parameters based on spreadsheet data.
Any ideas, suggestions, sample code, links, source code highly appreciated. Thanks in advance
You should divide that task into smaller pieces. Look for POI which I have never used, but people say it can access spreadsheets.
sai rama krishna
Ranch Hand
Joined: May 29, 2009
Posts: 133
posted
0
I modified my program as below.
If there are missing records in excel compared to database it is sending to hashmap and printing to console. Instead I want to generate output excel report and email to user. Please advise on how can i do it.
sai rama krishna wrote:I would like to use PrepareStatement to build my query by supplying the parameters based on spreadsheet data on mysql database. How can i achieve it.
I think the others have covered the semantic part, but I'd question the design. Seems to me that storing a spreadsheet in a database is the height of redundancy; and I suspect it'll cause you problems in the future (if it hasn't already).
Winston
Isn't it funny how there's always time and money enough to do it WRONG?
sai rama krishna
Ranch Hand
Joined: May 29, 2009
Posts: 133
posted
0
Sorry for not communicating properly. I am not storing excel in database. I am reading username and password informationf from File.xls and then check if the database has those username password information. If any username and password is there in excel but not in the database, then i need to generate missaingRecord excel report. Please advise