做乙個資料庫登入執行頁面

2021-06-23 04:01:05 字數 1801 閱讀 9277



目標:做乙個和資料可一樣的登入介面,首先連線資料庫,用

root,不是

root

進不去;進去之後可以輸入資料庫語句,實現增刪改查。

首先使用者舒勇的東西是動態的,用乙個

request.getparameter

去動態的接收;接受之後就與

root做比較,對就進入資料庫環境可以進行增刪改查,還螚點

logout

退出;

<

body

>denglu.jsp

<

form

action

="login.jsp"

>

使用者 <

input

type

="text"id=

"user"

name

="user"

> 密碼

<

input

type

="text"id=

"passwd"

name

="passwd"

>

<

input

type

="submit"

value

="登陸"

>

form

>

body

>

login.jsp

trycatch

(exception e) 

%>

in.jsp

<

form

action

="in.jsp"

>

<

inputid=

"a"name

="a"

size

="100"

>

<

input

type

="submit"

value

="執行"

>

<

ahref

="logout.jsp"

>

logout

a>

form

>

<%

class.forname(

"com.mysql.jdbc.driver");

connection a = drivermanager.getconnection(

"jdbc:mysql://localhost:3306/nba"

, "root"

, "");

system.out.println(

"netstat -ano");

statement b = a.createstatement();

string sql = request.getparameter(

"a");

try

out.println(

"");

intline=0;

while

(rs.next()) 

out.println(

"");

line++; }

} else

} catch

(exception e) 

a.close();

logout.jsp

<%

session.setattribute(

"ab"

,"false");

response.sendredirect(

"denlu.html");

乙個登入頁面

登入頁面寫起來很簡單,但寫多了每次都重新寫乙個的話還是覺得很費事的,所以寫了個模板放這裡,以後需要的話直接用這個改。登入 title style login login title line line input line a line span log submit style head body...

vue做乙個簡單的登入頁面,input校驗

立即登入 備註 1.使用此方法前檢查prop一定必須要寫在上面,寫在裡面的input上或者其他任何地方都不行 el form item prop屬性繫結 2.el form rules,model屬性繫結,ref標識.3.this.refs formname validate 這個是在點選登入按鈕後...

如何用乙個資料庫的資料去更新另乙個資料庫的內容

愚翁 如何用乙個資料庫的資料去更新另乙個資料庫的內容 上次寫了乙個簡單資料庫之間資料交換的程式,但是考慮到如果資料量大的情況,我所使用的 dataadatper dataset 方法,在效能上就有很大的劣勢。不過,要想在資料量大的資料庫之間能高效地交換,就需要捨棄原先的方法,而改用 dbcomman...