Hive demo

package mytest.hive.jdbc.client;

import java.sql.Connection;  
import java.sql.DriverManager;  
import java.sql.ResultSet;  
import java.sql.SQLException;  
import java.sql.Statement;  
  
import org.apache.log4j.Logger;  
  
public class HiveJdbcClient {  
     private static String driverName = "org.apache.hive.jdbc.HiveDriver";  
     private static String url = "jdbc:hive2://master:10000/u1";  //可以转换数据库
     private static String user = "";  
     private static String password = "";  
     private static String sql = "";  
     private static ResultSet res;  
     private static final Logger log = Logger.getLogger(HiveJdbcClient.class);  
  
     public static void main(String[] args) {  
             try {  
                     Class.forName(driverName);  
                     //Connection conn = DriverManager.getConnection(url, user, password);  
                     //默认使用端口10000, 使用默认数据库,用户名密码默认  
                     Connection conn = DriverManager.getConnection(url, user, password);   
                     Statement stmt = conn.createStatement();  
  
                     // 创建的表名  
                     String tableName = "testHiveDriverTable";  
                       
                     /** 第一步:存在就先删除 **/  
                     sql = "drop table " + tableName;  
//                     stmt.executeQuery(sql);  
                     stmt.execute(sql);
                     
                     /** 第二步:不存在就创建 **/  
                     sql = "create table " + tableName + " (key int, value string)  row format delimited fields terminated by '\t'";  
                     //stmt.executeQuery(sql); 
                     stmt.execute(sql);
  
                     // 执行“show tables”操作  
                     sql = "show tables '" + tableName + "'";  
                     System.out.println("Running:" + sql);  
                     res = stmt.executeQuery(sql);  
                     System.out.println("执行“show tables”运行结果:");  
                     if (res.next()) {  
                             System.out.println(res.getString(1));  
                     }  
  
                     // 执行“describe table”操作  
                     sql = "describe " + tableName;  
                     System.out.println("Running:" + sql);  
                     res = stmt.executeQuery(sql);  
                     System.out.println("执行“describe table”运行结果:");  
                     while (res.next()) {    
                             System.out.println(res.getString(1) + "\t" + res.getString(2));  
                     }  
  
                     // 执行“load data into table”操作  
                     String filepath = "/home/hadoop/test2_hive.txt";  
                     sql = "load data local inpath '" + filepath + "' into table " + tableName;  
                     System.out.println("Running:" + sql);  
                     stmt.execute(sql);
                       
                     // 执行“select * query”操作  
                     sql = "select * from " + tableName;  
                     System.out.println("Running:" + sql);  
                     res = stmt.executeQuery(sql);  
                     System.out.println("执行“select * query”运行结果:");  
                     while (res.next()) {  
                             System.out.println(res.getInt(1) + "\t" + res.getString(2));  
                     }  
  
                     // 执行“regular hive query”操作  
                     sql = "select max(value) from " + tableName;  
                     System.out.println("Running:" + sql);  
                     res = stmt.executeQuery(sql);  
                     System.out.println("执行“regular hive query”运行结果:");  
                     while (res.next()) {  
                             System.out.println(res.getString(1));  
  
                     } 
  
                     conn.close();  
                     conn = null;  
                     System.out.println("------------over----------");
             } catch (ClassNotFoundException e) {  
                     e.printStackTrace();  
                     log.error(driverName + " not found!", e);  
                     System.exit(1);  
             } catch (SQLException e) {  
                     e.printStackTrace();  
                     log.error("Connection error!", e);  
                     System.exit(1);  
             }  
  
     }  
}  

猜你喜欢

转载自jsjrjz08.iteye.com/blog/2248482
今日推荐