1. How do I make a Java ResultSet available in my jsp? stackoverflow.comI'd like to swap out an sql:query for some Java code that builds a complex query with several parameters. The current sql is a simple select. <sql:query var="result" ... |
2. Populate JSP dropdown with database info stackoverflow.comI'm looking for the way to populate a JSP dropdown. I want that when the JSP loads it fills the dropdown with the info that I have in a database table. I'm ... |
3. values fetched from database not being displayed stackoverflow.comIam trying to get the values from a table in postgres Database and display in a JSP page. Iam using JSTL to fetch the data. The values in each cell of ... |
4. JSTL: How to avoid scriptlet for JDBC connection close? coderanch.com |
5. JSTL, JDBC, and Result Set coderanch.comIt's an empty blank page. Here is part of my servlet code. protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { HttpSession session = request.getSession(false); if(session != null) { aSqlBean = (abc.DB.sql_Bean)session.getAttribute("the_Sql"); } if(aSqlBean == null) { //servlet didn't get a handle to the bean object //either the session is new or the jsp that created the bean ... |
6. How to use JSTL instead of scriptlet.This is about JDBC. coderanch.comJSTL does provide a set of SQL tags but many of us consider it a mistake to have created them. JSTL and EL were meant to give JSP developers just enough capability to work with the results of operations performed in the controller and model tiers in order to mark up the pages. No more. The SQL tags were added for ... |
7. JSTL SQL and MYSQL connection help. coderanch.com |
8. jstl access "sql:update" problem coderanch.com |
9. JSP Connecting to MS SQL SERVER 2000 using JDBC java-forums.org |
10. problem with jdbc in jsp java-forums.org
|
11. java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver java-forums.orgHi All, Can any boady please help me. I am new to java. I am facing a problem when i am trying to connect oracle DB with jsp. I set my class path as :C:\Program Files\Java\jdk1.6.0_14\lib;C:\Program Files\Tomcat 6.0\lib\servlet-api.jar;C:\Program Files\Java\jdk1.6.0_14\lib\ojdbc14.jar;. the error is as below: org.apache.jasper.JasperException: javax.servlet.ServletException: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver org.apache.jasper.servlet.JspServletWrapper.handle JspException(JspServletWrapper.java:522) org.apache.jasper.servlet.JspServletWrapper.servic e(JspServletWrapper.java:398) org.apache.jasper.servlet.JspServlet.serviceJspFil e(JspServlet.java:342) org.apache.jasper.servlet.JspServlet.service(JspSe rvlet.java:267) javax.servlet.http.HttpServlet.service(HttpServlet .java:717) root cause javax.servlet.ServletException: ... |
12. SQL Server 2005 Jdbc connection java-forums.org |
13. need help to attach resumes to access 2007 using jdbc java-forums.orgHi everyone I would like to insert word file to access database. I've a html file with fields username, Attach file (input type="file"). I created a table with fields name of text datatype and resumes of attachment datatype. When i'm trying to insert these values the following error is coming [Microsoft][ODBC Microsoft Access Driver] An INSERT INTO query cannot contain a ... |