Source Code : Accessing the table field in Database

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

Accessing the table field in Database


<%@ page import="java.sql.*" %>
<% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ; %>

<HTML>
    <HEAD>
        <TITLE>Accessing the tableName Database Table</TITLE>
    </HEAD>

    <BODY>
        <H1>Accessing the tableName Database Table</H1>

        <% 
            Connection connection = DriverManager.getConnection(
                "jdbc:odbc:data", "userName", "password");

                Statement statement = connection.createStatement() ;
                ResultSet resultset = 
                    statement.executeQuery("select name from tableName") ; 
        %>

        <TABLE BORDER="1">
            <TR>
                <TH>Name</TH>
            </TR>
            <% while(resultset.next()){ %>
                <TR>
                    <TD> 
                        <%= resultset.getString(1)%>  
                    </TD>
                </TR>
            <% } %>
        </TABLE>
    </BODY>
</HTML>
           
       

Thank with us