當前位置:首頁 » 參考文獻 » jsp資料庫項目

jsp資料庫項目

發布時間: 2021-03-26 14:56:51

Ⅰ 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("","",""); 看看獲取到 連接了沒 沒獲取到連接 肯定會出錯啦~ 檢查連接資料庫 配置文件

熱點內容
塗鴉論文 發布:2021-03-31 13:04:48 瀏覽:698
手機資料庫應用 發布:2021-03-31 13:04:28 瀏覽:353
版面217 發布:2021-03-31 13:04:18 瀏覽:587
知網不查的資源 發布:2021-03-31 13:03:43 瀏覽:713
基金贖回參考 發布:2021-03-31 13:02:08 瀏覽:489
懸疑故事範文 發布:2021-03-31 13:02:07 瀏覽:87
做簡單的自我介紹範文 發布:2021-03-31 13:01:48 瀏覽:537
戰略地圖參考 發布:2021-03-31 13:01:09 瀏覽:463
收支模板 發布:2021-03-31 13:00:43 瀏覽:17
電氣學術會議 發布:2021-03-31 13:00:32 瀏覽:731