我是 IBMWorklight 的初学者。我收到此错误:运行时:org.apache.commons.dbcp.SQLNestedException:无法加载 JDBC 驱动程序类 'com.mysql.jdbc.Driver' 当我右键单击时 - 运行方式 - 调用适配器名称上的 Worklight 过程:SQLAdapter1。我的 SQLAdapter1.xml 文件具有以下提到的编码:
<connectivity>
<connectionPolicy xsi:type="sql:SQLConnectionPolicy">
<dataSourceDefinition>
<driverClass>com.mysql.jdbc.Driver</driverClass>
<url>jdbc:mysql://localhost:3306/prem</url>
<user>myPassword</user>
<password>myPassword</password>
</dataSourceDefinition>
</connectionPolicy>
<loadConstraints maxConcurrentConnectionsPerNode="5" />
</connectivity>
<procedure name="getAccounts" />
我的 SQLAdapter1-impl.js 文件有下面提到的编码
var getAccountsTransactionsStatement = WL.Server.createSQLStatement(
" select * from accounts"
);
function getAccounts(){
return WL.Server.invokeSQLStatement({
preparedStatement : getAccountsTransactionsStatement ,
parameters : []
});
}
任何帮助。请紧急。非常感谢。