com.mysql.jdbc.JDBC4PreparedStatement@3f3c966c: describe test_mla_result;
Java exception occurred:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'db1.test_mla_result' doesn't exist
解决方案:
打开MySQL的command Line, 输入SHOW TABLES FROM db1; 这里的db1改为你创建的数据库名称。
发现没有test_mla_result
输入:
CREATE TABLE db1.test_mla_result ( id INT AUTO_INCREMENT PRIMARY KEY, column1 VARCHAR(255), column2 INT );
这里的db1换成自己的数据库名字