Forum: JSP May 9th, 2007 |
| Replies: 9 Views: 3,611 That solved the problem with it not being able to read from the database anyways ....but when I try to call <jsp:getProperty name ="update" property="benchpress" />Im recieving an error: Cannot find... |
Forum: JSP May 9th, 2007 |
| Replies: 9 Views: 3,611 Hey buddy Il try that now. Thanks:) |
Forum: JSP May 9th, 2007 |
| Replies: 9 Views: 3,611 Thanks for the advice ...my DBConnect class is
/*******************************************************
This class is used to open a connection to the mysql
database. The database connection... |
Forum: JSP May 8th, 2007 |
| Replies: 9 Views: 3,611 My connection is to a MySQL database.
I use a jdbc:mysql connection with Netbeans. I can access the data base with other classes.
I use a standard way of adding/retrieving throughout but... |
Forum: JSP May 7th, 2007 |
| Replies: 9 Views: 3,611 Hi there Im having a problem with my database connection...other instances of nearly the same code works but I cant understand why this isn't working
My class which retrieves info from the data base... |
Forum: JSP May 7th, 2007 |
| Replies: 2 Views: 1,101 Hi there,
I have a class that returns a value based on a calculation with in the class
2 of the variables are called from a database, which is working however when I try to output the result on... |
Forum: JSP Feb 3rd, 2007 |
| Replies: 4 Views: 4,067 Thanks for your advice jwenting,
I got it working using this code
[code]
<%@ page import="javax.servlet.*" %>
<%@ page import="javax.servlet.http.*" %>
<%@ page import="java.sql.*" %>
<% |
Forum: JSP Feb 2nd, 2007 |
| Replies: 4 Views: 4,067 Hi,
Im new to JSP and I am trying to add data from a simple registration page using JSP to a table in mysql,
My code seems to be working OK howerver when I check the table in MySQL Control... |