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

My application is extracting the data from excel sheet. I am storing the value and type of the data from the sheet into the ArrayList. ie., If my excel sheet consists of employee data, i will retrive [ Employee name, String] [ Employee id, number] and so on.. So i have to create a table with these names and with their respective data types. So how could i dynamically specify the data types for the attributes in the table. I am using JDBC,MS Access..

share|improve this question
Could you explain what you do with jdbc in this context? – Roalt Nov 18 '09 at 6:54
I am retriving the data from the Excel sheet using java-JExcel API and i am creating the table with the column names which i had retrived it from the first cell columns from the excel sheet. ie., Employee name,Employee id, salary etc., Then i have to specify its type which i had acquired from the JExcel API. – i2ijeya Nov 18 '09 at 7:05

2 Answers

up vote 1 down vote accepted

Well, you read your data in a String, and for every value do String.matches(regex) to find out the datatype. For example do value.matches("\d"), if it mathces, then instantiate an Integer like, new Integer(value). Now, you should be able to add this new integer object into your List.

I hope you will be able to see how to go further. Check the instanceof or something while creating the table in the database.

share|improve this answer

For each different data type, use a different class. You can either use the default java classes like String or Integer, or make your own depending on your further requirements. You can store all these classes in your ArrayList.

When retrieving your data, check which class is used and handle it appropriately.

share|improve this answer
That is ok, but i want to write a query to create a table with the dynamic data (Column name and type). – i2ijeya Nov 18 '09 at 7:14

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.