postgreSQL连接 java接口
1.下载PostgreSQL JDBC驱动:
http://jdbc.postgresql.org/download.html
2. 新建一个java项目,导入下载的jar包Add External JARs
3. 连接代码如下:
import java.sql.*;
import java.io.*;
import java.util.StringTokenizer;
import java.util.Properties;
import java.util.Random; /**
* Class <b>DBWrapper</b> contains
* wrapper routines for using JDBC
* to access the database.
*
* @author luwei
* @version 1.0
*/
public class DBWrapper
{ private static int CONNECTION_RETRIES = 10;
private static int QUERY_RETRIES = 10; private String dbUrl;
private String username;
private String password;
private String jdbcClassName;
private Connection dbCon; private boolean hasError = false;
private String errorString = null;
private static DBWrapper myInstance = null; /**
* DBWrapper constructor
*/
public DBWrapper() {} /**
* DBWrapper conscrutor
* @param inUrl String url of database
* @param inJdbcClassName String containing name of jdbc driver
* @param inUserName String containing database username
* @param inPassWord String containing database password
*/ public DBWrapper( String inUrl, String inJdbcClassName, String inUserName, String inPassWord )
throws Exception {
dbUrl = inUrl;
jdbcClassName = inJdbcClassName;
username = inUserName;
password = inPassWord;
connect();
} /**
* connectAsDefaultCteLibrary()
* Create a connection to the CTE library using the default connection parameters.
* @return void
*/
public void connectAsDefaultDatabase()
throws Exception {
myInstance.connect("jdbc:postgresql://localhost:5432/postgres",
"org.postgresql.Driver", "postgres", "741613551"); } /**
* closeConnections closes any currently open connections
* @return void
*/
private void closeConnections()
throws Exception {
if (dbCon!=null) {
dbCon.close();
}
} /**
* DBWrapper Instance()
* Get a singleton instance of the DBWrapper object.
* @return DBWrapper
*/
public static DBWrapper Instance()
throws Exception {
if (myInstance == null) {
myInstance = new DBWrapper();
myInstance.connectAsDefaultDatabase();
}
return myInstance;
} /**
* boolean connect()
* Connect to a database using the parameters supplied in the constructor.
* @return boolean
*/
private boolean connect()
throws Exception { boolean opened = false; DriverManager.registerDriver(new org.postgresql.Driver());
// Try to open a connection the database.
int retry = 0;
while(retry++ < CONNECTION_RETRIES){
Class.forName(jdbcClassName);
dbCon = DriverManager.getConnection(dbUrl,username,password);
break;
}
if(retry < CONNECTION_RETRIES)opened=true;
return opened;
} /**
* boolean connect()
* Connect to a JDBC datasource without using the parameters supplied in the constructor.
* @param inUrl String url of database
* @param inJdbcClassName String containing name of jdbc driver
* @param inUserName String containing database username
* @param inPassWord String containing database password
* @return boolean
*/
public boolean connect( String inUrl, String inJdbcClassName, String inUserName, String inPassWord )
throws Exception {
dbUrl = inUrl;
jdbcClassName = inJdbcClassName;
username = inUserName;
password = inPassWord;
closeConnections(); return connect();
} /**
* ResultSet runQuery()
* Executes a query and returns a resultset.
*
* @param String containing a SQL statement
* @return ResultSet
*/
public ResultSet runQuery( String sqlQuery )
throws Exception {
Statement statement=dbCon.createStatement();
ResultSet resultSet=statement.executeQuery(sqlQuery);
return resultSet;
} /**
* boolean runUpdate()
* Executes an update and returns true of successfully executed.
*
* @param String containing a SQL statement
* @return boolean
*/
public boolean runUpdate( String sqlQuery )
throws Exception {
Statement ps=dbCon.createStatement();
boolean wasExecuted = false;
int retry = 0;
while(retry++ < CONNECTION_RETRIES){
ps.executeUpdate(sqlQuery);
break;
}
if(retry < CONNECTION_RETRIES)wasExecuted=true; return wasExecuted;
} /**
* ResultSet runChainedQuery()
* Executes a chained mode transaction query.
*
* @param <b>String</b> containing a SQL statement
* @param <b>String</b> containing the isolation level to run the transaction.
* @return ResultSet
*/
public ResultSet runChainedQuery( String sqlQuery, String isolationLevel )
throws Exception { int retry = 0; //Create the resultset and statement object.
ResultSet resultSet = null;
Statement dbStatement = null;
// Connect to the database.
dbStatement = dbCon.createStatement();
// Retry the query until complete or timeout.
while (retry++ < QUERY_RETRIES) {
// Begin a transaction.
dbStatement.executeUpdate( "Begin Transaction" );
// Set the isolation level.
dbStatement.executeUpdate( new String( "Set Transaction Isolation level " + isolationLevel ) );
// Execute the query.
resultSet = dbStatement.executeQuery( sqlQuery );
// Commit the transaction.
dbStatement.executeUpdate( "commit" );
// Close the connection.
dbStatement.close();
break;
}
return resultSet;
} /**
* boolean runChainedUpdate()
* Executes a chained mode transaction query.
*
* @param String[] containing a series of SQL statments
* @param String containing the isolation level to run the transaction.
* @return boolean
*/
public boolean runChainedUpdate( String [] sqlQuery, String isolationLevel )
throws Exception {
int retry = 0; // Create the statement object.
Statement dbStatement = null;
boolean wasExecuted = false;
// Connect to the database.
dbStatement = dbCon.createStatement(); while (retry++ < QUERY_RETRIES) {
// Begin a new transaction.
try {
dbStatement.executeUpdate( "Begin Transaction" );
// Set the isolation level.
dbStatement.executeUpdate( new String( "Set Transaction Isolation level " + isolationLevel ) );
// For each sql statement, perform the update.
for( int i=0; i<sqlQuery.length; i++ ) {
dbStatement.executeUpdate( sqlQuery[i] );
}
// Commit the transaction and close.
dbStatement.executeUpdate( "commit" );
dbStatement.close();
wasExecuted = true;
} catch (Exception e) {
errorString = new String( "Error executing: " + sqlQuery + "\nCause: " + e.toString() );
hasError = true;
// Rollback if an error has occured.
dbStatement.executeUpdate( "rollback" );
dbStatement.close();
}
}
return wasExecuted;
}
}
4. 测试代码
import java.sql.*;
public class DBConnectionTest {
public static void main(String[] args) {
/*
* if(args.length < 3){
* System.out.println("Syntax:DBConnection [url][username][password]");
* //url = jdbc:postgresql:database or
* jdbc:postgresql://host:port/database System.exit(-1); }
*/
String url = "jdbc:postgresql://localhost:5432/postgres";
String username = "postgres";
String password = "741613551";
String sql = "select sName from student";
String s;
try {
System.out.println("Step 01: Registering JDBC Driver");
/* There are three ways to registe driver. */
// write your code here for Registering JDBC Driver
// 先注册JDBC驱动 org.postgresql.Driver
Class.forName("org.postgresql.Driver");
System.out.println("Step 02: Establishing connection to: \n\t"
+ url);
// write your code here to get a connection
// url = jdbc:postgresql:database or
// jdbc:postgresql://host:port/database
Connection conn = DriverManager.getConnection(url, username,
password);
System.out.println("Step 03: Creating SQL statement.");
// write your code here to create a SQL statement
Statement state = conn.createStatement();
System.out.println("Step 04: Executing SQL statement.");
// write your code here to execute your SQL statement and recieve
// the result
ResultSet resultSet = state.executeQuery(sql);
System.out.println("Step 05: Printing result.");
// write your code here to print the result
while (resultSet.next()) {
System.out.println(resultSet.getString("sName"));
}
System.out.println("Step 06: Closing JDBC objects.");
// write your code here to close all JDBC objects.
resultSet.close();
state.close();
conn.close();
System.out.println("End.");
} catch (Exception e) {
System.out.println(e);
}
}
}
5. JDBC教程:http://www.yiibai.com/jdbc/jdbc-introduction.html
postgreSQL连接 java接口的更多相关文章
- java接口调用——webservice就是一个RPC而已
很多新手一听到接口就蒙逼,不知道接口是什么!其实接口就是RPC,通过远程访问别的程序提供的方法,然后获得该方法执行的接口,而不需要在本地执行该方法.就是本地方法调用的升级版而已,我明天会上一篇如何通过 ...
- python面向对象进阶 反射 单例模式 以及python实现类似java接口功能
本篇将详细介绍Python 类的成员.成员修饰符.类的特殊成员. 类的成员 类的成员可以分为三大类:字段.方法和特性. 注:所有成员中,只有普通字段的内容保存对象中,即:根据此类创建了多少对象,在内存 ...
- OpenCV4Android开发之旅(一)----OpenCV2.4简介及 app通过Java接口调用OpenCV的示例
转自: http://blog.csdn.net/yanzi1225627/article/details/16917961 开发环境:windows+ADT Bundle+CDT+OpenCV-2 ...
- 十分钟搭建redis单机版 & java接口调用
本次单机版redis服务器搭建采用的包为redis-3.0.0.tar.gz,主要是记录下安装的心得,不喜勿喷! 一.搭建redis服务器单机版 1.上传redis-3.0.0.tar.gz到服务器上 ...
- Apache Solr 初级教程(介绍、安装部署、Java接口、中文分词)
Python爬虫视频教程零基础小白到scrapy爬虫高手-轻松入门 https://item.taobao.com/item.htm?spm=a1z38n.10677092.0.0.482434a6E ...
- 使用swig将C/C++代码转为JAVA接口(Windows平台)
小弟一直没用过Linux. 平时的码也只是在WINDOW上用SWIG或CYGWIN进行编译. 下面的例子,先从网上找来一个.c文件. example.c /* File : example.c */ ...
- Java-Runoob-面向对象:Java 接口
ylbtech-Java-Runoob-面向对象:Java 接口 1.返回顶部 1. Java 接口 接口(英文:Interface),在JAVA编程语言中是一个抽象类型,是抽象方法的集合,接口通常以 ...
- jmeter使用BeanShell Sampler测试自己写的java接口(一)
上次直接使用jmeter里面的FTPsampler没有连接成功 现在想着自己写java代码,通过jmeter进行调用进行连接测试实现并发 代码引文: http://www.cnblogs.com/ch ...
- Java接口对Hadoop集群的操作
Java接口对Hadoop集群的操作 首先要有一个配置好的Hadoop集群 这里是我在SSM框架搭建的项目的测试类中实现的 一.windows下配置环境变量 下载文件并解压到C盘或者其他目录. 链接: ...
随机推荐
- 理解Java动态代理(1)—找我还钱?我出钱要你的命
代理模式是最常用的一个设计模式之一,理解起来也是很简单,一张图足以说明了,LZ就不废话了. 至于代理模式能干嘛也不是LZ今天想说的,今天主要想简单介绍下JAVA里面的动态代理.“动”当然是相对“静”来 ...
- e566. 关闭的时候关闭程序
By default, when the close button on a frame is clicked, nothing happens. This example shows how to ...
- JsonObject和Gson详解
参考文件:http://www.cnblogs.com/xwdreamer/archive/2011/12/16/2296904.html一.JsonObject 1.JAR包简介 要使程序可以运行必 ...
- (实用)Ubuntu 、CentOS更换国内源
Ubuntu更换apt-get源 通过编辑/etc/apt/sources.list文件,我们能够更换Ubuntu的默认软件更新源.通常是将其换成一些国内比较知名的源.本文主要列举这些内容. 注意,在 ...
- PLSQL Developer连接不上64位Oracle 10g的解决办法
下载instantclient-basic-win32-10.2.0.4.zip 假设Oracle 10g的安装目录为D:\oracle\product\10.2.0\db1 首先,将instantc ...
- Iso-seq 必备基础
Iso-seq , 全称叫做 Isoform-sequencing, 是 Pacbio 公司对自己开发的转录本测序技术的规范化命名:是利用三代测序长读长的特点,不打断转录本,直接测序,从而得到全长转录 ...
- UITableView 顶部能够放大的图片
UITableView 顶部能够放大的图片 现在有挺多的应用在 UITableView 顶部加入图片,通过拖拽 UITableView 来实现图片的放大. 对比一下腾讯出品的两款App QQ:可展示更 ...
- 利用neon技术对矩阵旋转进行加速
一般的矩阵旋转操作都是对矩阵中的元素逐个操作,假设矩阵大小为m*n,那么时间复杂度就是o(mn).如果使用了arm公司提供的neon加速技术,则可以并行的读取多个元素,对多个元素进行操作,虽然时间复杂 ...
- ffmpeg把ts文件转m3u8并切片
Linux_x86_64流媒体环境:nginx + EasyDarwin-master 客户端播放器:VLC media player 下载windows下的ffmepg二进制版本,请进网站http: ...
- 本地文件到通过flume到hdfs
配置文件 cd /usr/app/flume1.6/conf vi flume-dirTohdfs.properties #agent1 name agent1.sources=source1 age ...