我使用Xampp运行Apache和SQL,并创建了一个名为" company"在phpMyAdmin中。我想使用我的终端连接到该数据库。我试试这个,但它失败了:
这个错误是什么?我没有使用正确的语法吗?
答案 0 :(得分:0)
不要指定要连接的数据库。尝试:
public static void setInventorydesc(String inventorydesc) throws Exception {
try{
double convertedInventorydesc = Double.parseDouble(inventorydesc);
this.inventoryqty = convertedInventorydesc;
}
catch (NumberFormatException ex){
throw new Exception("Set a number in Inventory quantity",ex);
}
}
https://www.a2hosting.com/kb/developer-corner/mysql/connect-to-mysql-from-the-command-line