Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在,我尝试使用iciql的模型生成工具自动制作模型类。我使用Windows7。我在命令提示符下尝试了这个命令。
**>cd C:\Users\xxxx\iciql-1.1.0
java -jar iciql-1.1.0.jar -url jdbc:mysql://localhost:3306/xxxx -user root -password xxxx**
并返回此错误消息。
错误:找不到适合 jdbc:mysql://localhost:3306/xxxx 的驱动程序
实际上,消息说明了一切:类路径上没有 mysql jdbc 驱动程序。下载它并使用类似的东西
java -cp mysql-connector-java-5.1.15.jar -jar iciql-1.1.0.jar \ -url jdbc:mysql://localhost:3306/xxxx -user root -password xxxx**