jsp+mysql使用原生jdbc步驟:
1.首先載入驅動。
drivermanager.registerdriver(new com.mysql.jdbc.driver());
2.獲取connection鏈結
//unicode=true&&encoding=utf-8"指定訪問資料時字元編碼格式
connection conn=drivermanager.getconnection("jdbc:mysql://localhost:3306/login?unicode=true&&characterencoding=utf-8","root","123456");
3.由connection獲取preparedstatement或statement
string sql=「select * from tb_user where userid=?";int id=request.getparament("id");
preparedstatement stmt=conn.preparestatement(sql);
stmt.setint(1,id); //設定sql語句的第乙個?引數為id
4.執行sql語句獲得結果集,將結果集進行邏輯處理或展示
resultset rs=stmt.excutequery();...deal....
...
5.關閉相關鏈結。注意鏈結使用後一定關閉鏈結
if(conn!=null)
catch
(sqlexception e)
}if(stmt!=null)
catch
(exception e)
}if(rs!=null)
catch
(exception e)
}
mac使用原生php fpm
mac os x 10.9已經自帶有php fpm,對於有乾淨系統強迫症的人,或者原裝控來說,用brewhome重灌一遍總感覺心裡會有小兔子,下面把原裝的php fpm配置起來。直接執行,有報錯找不到配置檔案。php fpm 11 jan 2014 16 03 03 error failed to ...
php原生類使用
類就是用 包著的 物件也可以說是函式,乙個大類包著多個物件 函式 看列子 宣告類的方法,我們用class來宣告我們的類.class 類名 注 這裡的 this是值當前的類 class test function age 引用類 new方法 all new test a all a 宣告a,因a沒有值...
Django ORM 使用原生 SQL
raw row方法 摻雜著原生sql和orm來執行的操作 res cookbook.objects.raw select id as nid from epos cookbook where id s params 1,print res.columns nid print type res 在se...