Javaでハイブにテーブルを作成しようとしています。見つけた
java.sql.SQLException: org.apache.thrift.transport.TTransportException
私のコードを実行している間。
これが私のコードです
public void createTable(String tableName) {
try{
Statement stat = con.createStatement();
String QueryString = "CREATE TABLE '"+tableName+"'(User_Id INTEGER NOT NULL AUTO_INCREMENT, " + "User_Name VARCHAR(25), UserId VARCHAR(20), User_Pwd VARCHAR(15), primary key(User_Id))";
a = stat.executeUpdate(QueryString);
if(a==1){
System.out.println(a);
System.out.println("Table has been created");
}
}catch(Exception e){
System.out.println(e);}
}
この例外がスローされる理由と、どうすれば修正できますか?