?? conn.jsp
字號(hào):
<%
String host="localhost";
String user="root"; //mysql用戶名
String pw="54858520"; //mysql密碼
String db="jspmo"; //留言本的數(shù)據(jù)庫(kù)名
String tab="jspmo"; //留言本表名
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://"+host+"/"+db;
Connection con=DriverManager.getConnection(url,user,pw);
Statement st=con.createStatement();
%>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -