Link to home
Start Free TrialLog in
Avatar of vxlbag
vxlbag

asked on

Databse Connection using JSP.

How can I connect to Database using JSP?
Where will I put the JSP files?How will I create Bean component to connect to database?
Avatar of shaveri
shaveri

Database reference.......
 
                http://java.sun.com/products/jdk/1.1/docs/guide/jdbc/index.html 
                http://java.sun.com/products/jdbc/index.html 
                http://java.sun.com/docs/books/jdbc/intro.html 
                http://java.sun.com/products/jdbc/faq.html 

                Silicaon Valley Java SIG JDBC Talk Page
                http://www.hooked.net/~gturner/JDBCTalk.html 

                Java how-to DB section
                http://tactika.com/realhome/javaht/java-d1.html 

                articles from Oracle:
                http://technet.oracle.com/tech/java/sqlj_jdbc/index.htm 

                JDBC 2.0 New Features
                http://java.sun.com/products/jdk/1.3/docs/guide/jdbc/getstart/appendixA.html#1006294

                http://java.sun.com/docs/books/tutorial/jdbc/jdbc2dot0/index.html 


                MS bridge
                http://www.microsoft.com/Java/sdk/relnotes/JDBCrel.htm 

                Drivers:
                http://java.sun.com/products/jdbc/drivers.html 
                http://www.idssoftware.com/jdriver.htm 

                Books online
                http://www.itknowledge.com/reference/standard/1576100561/book-index.html 
                Java Database Programming with JDBC
                http://www.itknowledge.com/reference/standard/1576100561/book-index.html 
                Java 1.2 Unleashed : Connecting to Databases with the java.sql Package
                http://www.itknowledge.com/reference/standard/1575213893/ch44/ch44.htm 

                and some useful DB stuff:
                InstantDB
                http://208.234.21.207/ 

                WebLogic JDBC (30 day trial)
                http://www.beasys.com/download/weblogic.html 

                http://www.thoughtinc.com/cocofree/doc/index.html 

                http://www.agave.com/html/products/jdbc_dwnld.htm 

                --
                Multilingual Databases and Global Internet Integration
                http://www.chg.ru/inet97/A8/A8_2.HTM 

Avatar of vxlbag

ASKER

If I get the code on how to do it will be helpful
Don't be frightened of the long book list. to access database with JSP, you need to know 2 things:
1. who to write JSP, and how to use Java object(Bean) in jsp file.(i guess you already know that?)

2. in the java bean object, use JDBC to access a database. shaveri's first serveal bookmark are enough.

ASKER CERTIFIED SOLUTION
Avatar of vladi21
vladi21

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial