# location of jar that you will be using for testing # so that it can be copied into the dist/lib directory. torque.testDatabaseJar = ${lib.repo}/postgresql.jar torque.idMethod = idbroker torque.defaultDatabase = bookstore torque.sqlTest.defaultDatabase = sqltest torque.sqlTest.databaseUrl = jdbc:postgresql://127.0.0.1:5432/sqltest lib.dir = ../lib # ------------------------------------------------------------------- # # T O R Q U E C O N F I G U R A T I O N F I L E # # ------------------------------------------------------------------- torque.project = bookstore # ------------------------------------------------------------------- # # T A R G E T D A T A B A S E # # ------------------------------------------------------------------- torque.database = postgresql # ------------------------------------------------------------------- # # O B J E C T M O D E L I N F O R M A T I O N # # ------------------------------------------------------------------- # These settings will allow you to customize the way your # Peer-based object model is created. # ------------------------------------------------------------------- # addSaveMethod=true adds tracking code to determine how to save objects # # addGetByNameMethod=true adds methods to get fields by name/position # # complexObjectModel=true generates an om with collection support # # addTimeStamp=true puts time stamps in generated files # # addIntakeRetrievable=implement Intake's Retrievable interface # ------------------------------------------------------------------- torque.targetPackage=org.apache.torque.test torque.basePrefix=Base torque.addSaveMethod=true torque.addGetByNameMethod=true torque.complexObjectModel=true torque.addTimeStamp=true torque.addIntakeRetrievable=false torque.useManagers=true # ------------------------------------------------------------------- # # D A T A B A S E S E T T I N G S # # ------------------------------------------------------------------- # JDBC connection settings. This is used by the JDBCToXML task that # will create an XML database schema from JDBC metadata. These # settings are also used by the SQL Ant task to initialize your # Turbine system with the generated SQL. # ------------------------------------------------------------------- torque.database.createUrl = jdbc:postgresql://127.0.0.1:5432/template1 torque.database.buildUrl = jdbc:postgresql://127.0.0.1:5432/bookstore torque.database.url = jdbc:postgresql://127.0.0.1:5432/bookstore torque.database.driver = org.postgresql.Driver torque.database.user = dobbs torque.database.password = torque.database.host = 127.0.0.1 # Tells JDBC task that javaName attribute for the tables and columns # should be made same as SQL name. torque.sameJavaName=false