实际上我是eclipse和jdbc连接的新手,我试图连接到我的centos上的hive数据库,并试图通过以下代码对hive数据库中的表执行查询。我正面临着这个code.plz帮助的编译问题我..
<%@page import="org.apache.hadoop.hive.jdbc.HiveDriver"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import = "java.sql.*" %>
<%@ page import = "java.math.*" %>
<%@ page import = "java.util.Map.Entry"%>
<%
try {
Class.forName("org.apache.hadoop.hive.jdbc.HiveDriver").newInstance();
}
catch(ClassNotFoundException ex){
System.out.println("error:unable to load driver class");
System.exit(1);
}
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>server side</title>
</head>
<body>
<%
Connection connection = DriverManager.getConnection("jdbc:hive://localhost:10000/nikhildb");
Statement statement = connection.createStatement();
String country_name = request.getParameter("country_name");
ResultSet rs = statement.executeQuery("Select * from population where country_name ='"+country_name+"'");
if(!rs.next()){
System.out.println("Sorry, no country exists");
}
else{
%>
我在其他声明之后的html中有一些表格细节。
this is the photo copy of compilation error occured plzz帮助我..!
答案 0 :(得分:0)
您的HiveDriver是一个包 - “org.apache.hadoop.hive.jdbc.HiveDriver解析为包”,因此导入它的正确方法是:
<%@page import="org.apache.hadoop.hive.jdbc.HiveDriver.*"%>
我不能说,你必须在哪里和多少时间修复它。