Forum: JSP Dec 7th, 2005 |
| Replies: 13 Views: 19,460 the error message:
java.sql.SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '',ooo,ppp,Chemistry)'... |
Forum: JSP Dec 7th, 2005 |
| Replies: 13 Views: 19,460 sorry this is the correct code:
<%@ page import="java.sql.*" %>
<%@ page import="java.util.*" %>
<%
String connectionURL = "jdbc:mysql://localhost:3306/learningtest";
Connection connection =... |
Forum: JSP Dec 7th, 2005 |
| Replies: 13 Views: 19,460 this is the error message
: method executeUpdate(java.lang.String, java.lang.String) not found in interface java.sql.Statement
it seems there is a declaration problem. I am using the com.mysql,... |
Forum: JSP Dec 7th, 2005 |
| Replies: 13 Views: 19,460 I keep getting an error where the symbol cannot be resolved and the arrow pointing to where i have written statement.ExcecuteUpdate
Am not able to insert any data into my database, can anyone see... |