Re: Accessing a Java Database
This doesn't make sense! I proceeded to delete the Configuration.properties file and make my own properties file called TurbineData.properties. I dropped that in, changed the schema and table names to what i wanted, and changed the code to reflect the changes of the property file. Compile, clean, run and same errors. schema TURBINE (despite me calling the schema TURBINE in the properties file) does not exist. Change it back to APP, same table error. CUSTOMER does not exist (despite the properties files calling a db.table called CUSTOMER). Changed it fully back to APP.ADDRESS, but left the properties file still referring to the new TurbineData.properties.
It runs! That can't be possible surely unless somewhere in the code the thing is still referring back to the old files? And that can't be possible because i can't see any sort of class or method referring to the addressbook demo. Neither can it be a case of a full copy copying over data in the background, because i made an entirely new java project and java packages.
What the hell is going on!? :(
Re: Accessing a Java Database