码迷,mamicode.com
首页 > 编程语言 > 详细

javaweb

时间:2017-10-22 23:25:36      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:username   code   .sql   com   rman   select   mylog   get   resultset   

<%@ page language="java" import="java.util.*" import="java.sql.*" pageEncoding="UTF-8"%> <% String driverName="com.mysql.jdbc.Driver"; String dbName="MyLogin"; String userName="root"; String userPwd="5201314"; String url1="jdbc:mysql://localhost:3306/MyLogin"; String url2="?user=root&password=5201314"; String url3="&useUnicode=true&characterEncoding=UTF-8"; String url=url1+url2+url3; Class.forName(driverName); Connection conn=DriverManager.getConnection(url); int Cname=Integer.parseInt(request.getParameter("idhao")); int Cpassword=Integer.parseInt(request.getParameter("userpassword")); String Cn="select num from checklog where id=‘"+Cname+"‘"; Statement stmt=conn.createStatement(); ResultSet rs=stmt.executeQuery(Cn); if(rs.first()){%>

javaweb

标签:username   code   .sql   com   rman   select   mylog   get   resultset   

原文地址:http://www.cnblogs.com/jgrs/p/7712263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!