求JSP + MYSQL 数据库编程资料

maxwelling 2004-09-02 04:41:14
求JSP + MYSQL 数据库编程资料,

maxwelling@tom.com
...全文
179 12 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
zhang2000 2004-09-04
  • 打赏
  • 举报
回复
对不起,回来晚了。
已发送至如下E-mail,望查收。
sunmourenren@163.com
maxwelling@tom.com
qiyan_dai@126.com
carl_hunter@163.com
jspdev@163.com
gmy525412@hit.edu.cn
hi-fi-flight@21cn.com


步行人 2004-09-03
  • 打赏
  • 举报
回复
我也要 hi-fi-flight@21cn.com 谢谢了!!!!!!
wuyexinling 2004-09-03
  • 打赏
  • 举报
回复
gmy525412@hit.edu.cn
谢谢了
xiangbo520 2004-09-03
  • 打赏
  • 举报
回复
jspdev@163.com
先行谢过!!
carlhunter 2004-09-03
  • 打赏
  • 举报
回复
carl_hunter@163.com 谢了
cainiao2004 2004-09-02
  • 打赏
  • 举报
回复
楼上的兄弟,给我发一份吧,谢谢啦!!qiyan_dai@126.com
maxwelling 2004-09-02
  • 打赏
  • 举报
回复
maxwelling@tom.com

或者QQ:61182831。火急中!
opencsdn 2004-09-02
  • 打赏
  • 举报
回复
我也要,
sunmourenren@163.com
Fanny13 2004-09-02
  • 打赏
  • 举报
回复
我也有电子稿,其实网上很多的,可以下载啊!!
ccaipn 2004-09-02
  • 打赏
  • 举报
回复
谢谢,我也想要,ccaipn@126.com
zhang2000 2004-09-02
  • 打赏
  • 举报
回复
我有一本电子书<<MySQL And Java Developer Guide>>(PDF),大小3.33M,怎么给你
tianwaifeixue001 2004-09-02
  • 打赏
  • 举报
回复
用什么数据库,操作基本都一样的;
这是和MySql连接的程序:
import java.sql.*;

public class DataConnection
{
Connection con=null;
public DataConnection()
{

String url01="jdbc:mysql://192.168.0.9/bbs?user=root&password=&useUnicode=true&characterEndcoding=8859_1";
try
{
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
con=DriverManager.getConnection(url01);
}
catch(Exception e)
{
System.err.println(e);
}
}


public void dataClose()
{
try
{
con.close();
}
catch(Exception e)
{
System.err.println("无法关闭数据库,发生异常:"+e);
}
}

public Connection getConnect()
{
return con;
}
}

81,122

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧