当前位置: 代码迷 >> Java相关 >> [求助] JBuilder的使用问题
  详细解决方案

[求助] JBuilder的使用问题

热度:344   发布时间:2006-06-22 11:47:55.0
[求助] JBuilder的使用问题

我用的是 JBuilder 2005 没想到 连接数据库还的用那3个jar文件 就是不知道在哪里到入 只知道右键项目 选Properties...
Paths里 选 Requirde Libraries 里的add.. 后面具体就不知道了
我曾试者在里面吓到入结果无济于事 还望大哥们 给予指教

搜索更多相关的解决方案: JBuilder  

----------------解决方案--------------------------------------------------------

html:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>

</head>

<body>
<form id="form1" name="form1" method="post" action="/loginWeb/houtai.jsp">
<table width="248" border="1">
<tr>
<td width="44">ming</td>
<td width="188"><label>
<input name="tname" type="text" id="tname" />
</label></td>
</tr>
<tr>
<td>ma</td>
<td><label>
<input name="tpwd" type="text" id="tpwd" />
</label></td>
</tr>
</table>
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>


java Bean1:
import java.sql.*;
public class sqlBean {

public sqlBean() {
}
Connection con;

//得到con
public Connection getCon() throws ClassNotFoundException,
IllegalAccessException, InstantiationException
{
try {
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").
newInstance();
con = DriverManager.getConnection(
"jdbc:microsoft:sqlserver://localhost:1433;databasename=werkers","sa", "");
} catch (Exception ex) {
ex.printStackTrace();
}
return con;
}

}

java Bean2:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.sql.*" %>
<jsp:useBean id="bean0" scope="session" class="sqlBean" />

<%
Connection conn;
Statement stm;
ResulSet rs;
String name=request.getParameter("tname");
String pwd =request.getParameter("tpwd");

conn=bean0.getCon();
stm=conn.createStatement();
stm.executeUpdate("insert into employee(name,password)values('"+name+"','"+pwd+"')");
stm.close();
conn.close();


%>
java Bean2 make出错:
"houtai.jsp": cannot find symbol; symbol : class sqlBean, location: class org.apache.jsp.houtai_jsp
"houtai.jsp": cannot find symbol; symbol : class sqlBean, location: class org.apache.jsp.houtai_jsp
"houtai.jsp": cannot find symbol; symbol : class sqlBean, location: class org.apache.jsp.houtai_jsp
"houtai.jsp": cannot find symbol; symbol : class ResulSet, location: class org.apache.jsp.houtai_jsp

我用JBuider作的 请各位老大指点一下 谢了


----------------解决方案--------------------------------------------------------

是不是用JDBC连接数据库时用到的那三个文件??


----------------解决方案--------------------------------------------------------

是 就是不知道在JBuilder 2005里怎么陪进去


----------------解决方案--------------------------------------------------------
最近我也碰到这个问题,但我是用JC的,JB我就不知道怎么设置了.初学者最好不好用JB吧!
----------------解决方案--------------------------------------------------------

直接用JDBC:ODBC就好了
先设置一个数据源,然后调用SUN的默认驱动就可以用了


----------------解决方案--------------------------------------------------------
我之前也是用这个连的,但是连不上,现在改用JDBC连,还是连不上,郁闷死了!
----------------解决方案--------------------------------------------------------
用SUN的驱动是一定连得上的
只要你数据源配置好了
----------------解决方案--------------------------------------------------------
JBuilder 比JC好?我看好多人都用这个嘛  那我也去装个
----------------解决方案--------------------------------------------------------
不要装,我从来没有用过这个,用这个只会让人变懒
Eclipse挺好用的,又免费,
并且JC一直都不错,
----------------解决方案--------------------------------------------------------