程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 使用JDBC訪問GreenPlum

使用JDBC訪問GreenPlum

編輯:關於JAVA

JDBC is the driver used to access a database with Java. Greenplum has a full working JDBC implementation.

In this short article we’ll see how to use it.

## Download and install

It is possible to download the JDBC for Greenplum directly from the Greenplum Community Edition site (http://www.greenplum.com/community/downloads/database-ce/).

Look for the *”Connectivity Tools”* file.

You will receive a link to download the archive file.

Extract the archive and run the binary extracted. Then follow the instructions on screen and in less than a minute you have installed JDBC.

## Prepare the Greenplum server

After a successful installation, make sure that the server accepts TCP connections from the desired hosts. Check that *listen_addresses* is properly set in postgresql.conf.

**Note:** by default, Greenplum listens to any address.

Another aspect you have to consider is the user authentication, which is delegated to the pg_hba.conf file (please refer to page 36 of Greenplum AdminGuide for more information).

After you have verified the user is able to connect to the database, you can go on and test JDBC.

Connecting to a Greenplum Database with JDBC is a three steps procedure:

* Import JDBC

* Load the driver

* Connect to the database

Remember that the *forName* function can throw a *ClassNotFoundException* if the driver is not available. We do not try to catch that exception in the simple example below. You should in your production environment.

To connect to a database using JDBC, you have to use a connection URL. It can be in one of these three forms:

* jdbc:postgresql:databasename

* jdbc:postgresql://host/databasename

* jdbc:postgresql://host:port/databasename

Build an URL that suits your needs and use it with the getConnection function. For example:

package com.gp.dbtest;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

public class GPDBTest {

   public static void main(String[] args) {

       try {

           Class.forName("org.postgresql.Driver");

           Connection db = DriverManager.getConnection("jdbc:postgresql://192.168.1.23:5432/zwcdb","zhongwc","zhongwc");

           Statement st = db.createStatement();

           ResultSet rs = st.executeQuery("select * from tab_gp limit 1 offset 0");

           while (rs.next()) {

               System.out.println(rs.getString(1));

           }

           rs.close();

           st.close();

       } catch (ClassNotFoundException e) {

           e.printStackTrace();

       } catch (SQLException e) {

           e.printStackTrace();

       }

   }

}

作者:csdn博客 ZhongWeicheng

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved