jsp資料庫項目
Ⅰ jsp開發的項目用到MySql資料庫,怎麼打包交作業
直接導出.sql文件就行了
Ⅱ 簡單的jsp+mysql項目
Ⅲ Java web 項目(通過jsp,mysql資料庫實現),提供源碼
JSP 根據資料庫判斷該顯示哪些
~~~~~~
Ⅳ java jsp mysql可以做哪些項目
如果沒有+入其它一些 後台管理框架 可以做一些簡單的web頁面項目管理。。。
Ⅳ 求一個jsp項目,包括資料庫,以及源代碼,基於BS架構的項目
我這里有多套基於jsp技術的代碼,現在jsp主要是用於mvc設計模式之中的view,資料庫用的是mysql
Ⅵ 求JSP項目!SqlServer資料庫的
已經發給樓主了...
祝樓主早日成功!
Ⅶ ASP和JSP動態資料庫開發是什麼
資料庫開發一般都是指對網站後台所用的資料庫進行設計及優化,對於access我不太明白
對於sql 一般就是編寫一些sql腳本來對資料庫進行一些維護什麼的
Ⅷ jsp資料庫連接的web項目
/*
*連庫Bean
*最後修改日期:2007-9-5
*/
package com.deepteach.;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class DBjdbcConnection
{
//資料庫名:deepteach_com 用戶名:deepteach_com 密碼:lvhaipeng
String sDBDriver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
//資料庫
String sConnStr = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=deepteach_com";
//資料庫用戶名
String user = "deepteach_com";
//資料庫用戶密碼
String password = "lvhaipeng";
Connection connect = null;
ResultSet rs = null;
int count = 0;
public DBjdbcConnection()
{
try
{
Class.forName(sDBDriver);
}
catch(java.lang.ClassNotFoundException e)
{
System.err.println( e.getMessage());
}
}
public ResultSet executeQuery(String sql)
{
rs = null;
try
{
connect = DriverManager.getConnection(sConnStr,user,password);
Statement stmt = connect.createStatement();
rs = stmt.executeQuery(sql);
}
catch(SQLException ex)
{
System.err.println(ex.getMessage());
}
return rs;
}
public int executeUpdate(String sql)
{
try
{
connect = DriverManager.getConnection(sConnStr,user,password);
Statement stmt = connect.createStatement();
count = stmt.executeUpdate(sql);
}
catch(SQLException ex)
{
System.err.println(ex.getMessage());
}
return count;
}
}
Ⅸ eclipse運行jsp項目報錯,項目代碼是正確的,但是無法從資料庫提取數據到jsp頁面!
那就是你資料庫連接問題唄, 看看 資料庫連接 獲取到了沒, 最直接 的 方法 寫個 單元測試
Class.forNname("com.mysql.jdbc.Driver");
DriverManager.getConnection("","",""); 看看獲取到 連接了沒 沒獲取到連接 肯定會出錯啦~ 檢查連接資料庫 配置文件