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

jdbc连接HIVE

时间:2014-07-08 11:20:04      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:hive jdbc

  1. 在hive上启动service

     hive --service hiveserver

    bubuko.com,布布扣

  2. 在eclipse中进行开发

    导入需要的jar包(我这个导入的是udf和jdbc连接hive需要的jar包,基本是最简的了)

    bubuko.com,布布扣


我的代码,hive的语法就不说了,大家可以修改例子中的sql来进行自己的业务。我的hive没有设置用户名,密码。所以

  Connection con = new HiveJDBC().getConnection(
            "jdbc:hive://192.168.192.138:10000/default", "", ""
            );

后两个参数我都是设置的空


package com.hive.jdbc;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

/**
 * 连接hive
 * @author liqi
 *
 */
public class HiveJDBC {
    public static final String driverName = "org.apache.hadoop.hive.jdbc.HiveDriver";
    
    /**
     * 获取连接 
     */
    public Connection getConnection(String url,String userName,String password){
        try {
            Class.forName(driverName);
            Connection conn = DriverManager.getConnection(url, userName, password);
            return conn;
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }catch (SQLException e) {
            e.printStackTrace();
        }
        return null;
    }
    
    public static void main(String args[]){
        Connection con = new HiveJDBC().getConnection(
            "jdbc:hive://192.168.192.138:10000/default", "", ""
            );
        try {
            Statement stmt = con.createStatement();
            String sql = "show tables";
            
            ResultSet res = stmt.executeQuery(sql);
            while(res.next()) {
                sql = "select * from " + res.getString(1);
                System.out.println("tables:" + res.getString(1));
                
                ResultSet resTable = stmt.executeQuery(sql);
                while(resTable.next()){
                    System.out.println(resTable.getString(2));
                }
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}


本文出自 “屌丝程序员的逆袭” 博客,请务必保留此出处http://cdelliqi.blog.51cto.com/9028667/1435695

jdbc连接HIVE,布布扣,bubuko.com

jdbc连接HIVE

标签:hive jdbc

原文地址:http://cdelliqi.blog.51cto.com/9028667/1435695

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