码迷,mamicode.com
首页 > 数据库 > 详细

java关键字查询数据库

时间:2017-07-08 23:01:05      阅读:399      评论:0      收藏:0      [点我收藏+]

标签:ext   pack   声明   throw   tin   creat   rgs   system   style   

 1 package com.ningmeng;
 2 
 3 import java.sql.*;
 4 
 5 public class Test07 {
 6 
 7     public static void main(String[] args) throws Exception {
 8             Class.forName("com.mysql.jdbc.Driver");//加载数据库驱动
 9             System.out.println("加载数据库驱动成功");
10             String url="jdbc:mysql://localhost:3306/mldn";//声明自己的数据库test的url
11             String user="root";//自己的数据库用户名
12             String pass="root";//自己的数据库密码
13             //建立数据库连接,获得连接的对象conn
14             Connection conn=DriverManager.getConnection(url,user,pass);
15             System.out.println("连接数据库驱动成功");
16             Statement stmt=conn.createStatement();//创建一个Statement对象
17             String sql="select * from emp where empno like ‘%123%‘ ";//生成sql语句
18             ResultSet rs=stmt.executeQuery(sql);//执行sql语句
19             
20             int empno;
21             String ename,job;
22             java.util.Date hiredate;
23             float sal;
24             System.out.println("empno\t ename\t job");
25             while(rs.next()){
26                 empno=rs.getInt("empno");
27                 ename=rs.getString(2);
28                 job=rs.getString("job");
29                 hiredate=rs.getDate(4);
30                 sal=rs.getFloat(5);
31                 System.out.println(empno + "\t" + ename + "\t" + job + 
32                         "\t" +hiredate + "\t" + sal);//输出查询结果
33             }
34             System.out.println("模糊查询成功");
35             conn.close();//关闭数据库连接
36             System.out.println("关闭数据库连接成功");
37         
38         
39     }
40 }

 

java关键字查询数据库

标签:ext   pack   声明   throw   tin   creat   rgs   system   style   

原文地址:http://www.cnblogs.com/XuGuobao/p/7138453.html

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