Database connection

0
I'm getting following after downloading and setting up database connector: What could be the reason for this error?   Buildfile: C:\Users\deployment\build_core.xml   compile:     [javac] Compiling 546 source files to C:\Users\deployment\run\bin     [javac] C:\Users\javasource\databaseconnector\actions\ExecuteQuery.java:79: error: cannot find symbol     [javac]                 List<IMendixObject> resultList = connector.executeQuery(this.jdbcUrl, this.userName, this.password,     [javac]                                                                             ^     [javac]   symbol: variable jdbcUrl     [javac] C:\Users\javasource\databaseconnector\actions\ExecuteQuery.java:79: error: cannot find symbol     [javac]                 List<IMendixObject> resultList = connector.executeQuery(this.jdbcUrl, this.userName, this.password,     [javac]                                                                                           ^     [javac]   symbol: variable userName     [javac] C:\Users\javasource\databaseconnector\actions\ExecuteQuery.java:79: error: cannot find symbol     [javac]                 List<IMendixObject> resultList = connector.executeQuery(this.jdbcUrl, this.userName, this.password,     [javac]                                                                                                          ^     [javac]   symbol: variable password     [javac] Note: Some input files use or override a deprecated API.     [javac] Note: Recompile with -Xlint:deprecation for details.     [javac] 3 errors
asked
2 answers
2

Could it be that you updated the module or that you have other marketplace modules within you application. Because it can be that the libraries conflict with eachother or are actually missing:

 

First steps to do:

1. check your userlibs for having two of the same userlibs

2. create a separate project where you only download the specific marketplace module, try to run the project and check these userlibs and compare them with your userlibs is there missing anything try to add it. 

answered
0

Hi Atul , 

 

Have you downloaded the latest module from Market Place

answered