Yuling Zhou

Results 1 comments of Yuling Zhou

解决思路如下: 1.Could not find a suitable table factory,需要检查flink-1.xx.x/lib目录下是否存在jdbc相关包 2.No factory supports all properties,检查参数是否正确。 以flink-1.16.2的jdbc连接mysql 5.6.43为例,我依次丢了这些包到lib目录下 `mysql-connector-java-8.0.29.jar, flink-connector-jdbc-1.16.2.jar, flink-table-common-1.16.2.jar` 但是并不管用,还是一样的报错,我检查我的代码: `CREATE TABLE products ( id INT, name string, description string, PRIMARY...