give me a java code snippet to connect Microsoft excel
through.... I am trying alot... plz help me.
Answer Posted / vijay
import java.io.*;
import java.net.*;
import java.sql.*;
import java.util.*;
public class EmployeeReader1 {
public static void main(String[] args) {
Connection connection = null;
try {
Class.forName
("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager
.getConnection
("jdbc:odbc:friends_exl");
Statement st = con.createStatement
();
ResultSet rs = st.executeQuery
("Select * from [Sheet1$]");
ResultSetMetaData rsmd =
rs.getMetaData();
int numberOfColumns =
rsmd.getColumnCount();
System.out.println("No of cols " +
numberOfColumns);
while (rs.next()) {
for (int i = 1; i <=
numberOfColumns; i++) {
if (i > 1)
System.out.print(", ");
String columnValue
= rs.getString(i);
System.out.print
(columnValue);
}
System.out.println("");
}
rs.close();
st.close();
} catch (Exception ex) {
System.err.print("Exception: ");
System.err.println(ex.getMessage());
}
}
}
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
What does adapter class provide?
Explain jdbc savepoint?
What are dml and ddl?
What is metadata in java programming?
How do I start debugging problems related to the JDBC API?
Explain what should be done when a SQL exception is raised?
What is db client?
Is odbc an api?
Which is best database for java?
What is resultset in jdbc with example?
Explain the life cycle of jdbc.
What is the function of setautocommit?
What is meant by dao?
Where is jdbc url mysql?
What should be done for auto generating primary key id in a table ?