博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库连接及操作实例
阅读量:6263 次
发布时间:2019-06-22

本文共 2871 字,大约阅读时间需要 9 分钟。

hot3.png

1、以下数据库连接及操作实例

package properties;import java.io.FileWriter;import java.io.IOException;import java.io.InputStream;import java.net.URL;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.Properties;public class test {public static void main(String[] args) {	/*FileWriter fw;		fw = new FileWriter("tt.txt",true);//加上 true参数,代表是往这个文件中添加 内容,不是覆盖原文件的内容		fw.write("this is my");		fw.write("stu");		fw.write("dent");		fw.write(".");		fw.write("txt");		fw.write("这是我的文件");		fw.close();*/	/*URL aurl=new URL("http://www.googel.com:80");	System.out.println("protocol="+aurl.getProtocol());	System.out.println("Authority="+aurl.getAuthority());	System.out.println("Host="+aurl.getHost());	System.out.println("Port="+aurl.getPort());*/	add_update_del("update t_Accepted_Cert_Info t set t.custname='颜丽' where t.mobileno ='13536703748'");	query("select * from t_Accepted_Cert_Info info where info.mobileno ='13536703748'");}public static Properties getProperties() {	Properties prop = new Properties();//Properties 类表示了一个持久的属性集。Properties 可保存在流中或从流中加载。属性列表中每个键及其对应值都是一个字符串	try {		// /加载属性列表		//InputStream in = new BufferedInputStream(new FileInputStream(				//"D:\\myselenium\\config.properties"));		//读取当前工程下的配置文件		  InputStream in =test.class.getResourceAsStream("/properties/config.properties");// getResourceAsStream查找具有给定名称的资源,返回一个InputStream对象		prop.load(in);//从流中加载		return prop;	} catch (Exception e) {		e.printStackTrace();		return null;	}	}public static Connection getConnection(){	Connection conn=null;	String driverName=getProperties().getProperty("orcal.driverName");	String url=getProperties().getProperty("PA18dburl");	String username=getProperties().getProperty("PA18dbuser");	String pwd=getProperties().getProperty("PA18sdbpsw");	try {		Class.forName(driverName);		conn=DriverManager.getConnection(url,username,pwd);				if (conn!=null){			System.out.println("数据库连接成功");					}		return conn;	} catch (Exception e) {		// TODO Auto-generated catch block		e.printStackTrace();		return null;	}	}public static void add_update_del(String sql){	Connection conn=getConnection();		int x;	try {		Statement st=conn.createStatement();		x = st.executeUpdate(sql);		System.out.println("操作成功"+x);	} catch (SQLException e) {		// TODO Auto-generated catch block		e.printStackTrace();	}	}public static void query(String sql){	try{		Connection conn=getConnection();		Statement st=conn.createStatement();		ResultSet rs=st.executeQuery(sql);		//当返回的结果集不为空时,并且还有记录时		while(rs!=null && rs.next()){			int id=rs.getInt(1);//获取当前记录的第一个字段的值			String name=rs.getString("custname");			String addr=rs.getString("addr");			System.out.println("id"+id+"\t"+"name"+name+"\t"+"addr"+addr+"\t");					}		}catch(Exception e){			e.printStackTrace();	}		}}

 

转载于:https://my.oschina.net/u/3563297/blog/1573545

你可能感兴趣的文章
Linux性能测试 netstat命令
查看>>
参加SAP之所想
查看>>
Objective-C征途:BOOL Party
查看>>
ICA algorithm
查看>>
CSS 浮动
查看>>
JS —时间类
查看>>
pgpool-II的conn_info 指针的结构
查看>>
JAVA的CALLBACK
查看>>
转:Tomcat 启动报错The APR based Apache Tomcat Native l...
查看>>
MyFirefox v2.6.2 - 打造自己的 Firefox 便携版
查看>>
各大类库的类工厂
查看>>
asp.net关于上传文件修改文件名的方法
查看>>
敏捷结果30天之第九天:使用必须、应该、可以来确定每天事情的优先级
查看>>
NFS在redhat中的一些简易应用
查看>>
mysqlbinlog查看编码问题
查看>>
进程通信(VC_Win32)
查看>>
MVP福利--利用Azure虚拟机玩Windows Server 2012
查看>>
Mac中将delete键定义为删除键
查看>>
python 函数关键参数
查看>>
ubuntu一键安装lamp
查看>>