`#Database parameter initialization file for image browser # #Author: R. Bennett (robertb@bnl.gov) # # ### JDBC driver to register with DriverManager # dbDriver:com.mysql.jdbc.Driver # # ### Database name -- case sensitive # dbName:medicaltest # ### Hostname -- database server name # dbHostname:vis7.bnl.gov #dbHostname:130.199.4.9 #dbHostname:toolbox4.bnl.gov #dbHostname:toolbox2.bnl.gov mySQLHostname:vis7.bnl.gov #mySQLHostname:130.199.4.9 #mySQLHostname:toolbox2.bnl.gov # ### Username -- login name # dbUsername:robertb # ### Password -- login password # dbUserPassword:rob!321 # ### Username w/ admin privileges -- needed to insert into db tables, specifically during registration # dbAdmin:robertb # ### Admin password # dbAdminPassword:rob!321 # # # ### Database tables and column names. First name represents type in Java: ### Raw, Seg and Strain (as of now, there is no separate strains table. This ### info is "BrainType" column of MainBrainTable) ### ### Also, for now I assume that tables are list in known order -- Raw, Seg, Strain. Makes ### parsing easier at least for initial implementation. ### ### Modified: 08 January 2004 ### Author: robertb@bnl.gov ### ### Description: All we need are the main database tables. We can use a DESCRIBE command ### to query the column names and types. No need to list column names in configuration file. ### ### ### ### ### ### 25 August 2004 ### Author: R. Bennett (robertb@bnl.gov) ### ### Comments: Changed the image/data directory paths to reflect different datasets. ### ### Location of images and segmentations -- order is deterministic; refer to ### DBQueryManager.java ### # # # ### ### Modification: 25 August 2004 ### Author: R. Bennett ### ### Comment: There is now a single database table with a list of tables that the ### browser will use to initialize internal objects needed to access the ### database. These tables will be entered in a fixed, well known order ### to make initialization easy. ### # # ################### Name of table containing name of medical database tables. # dbNameTable:MainMedicalDatabaseTables # ##################### Miscellaneous parameters # #Machine: obelisk.itd #serverHostName:130.199.146.11 # #Machine: vis7.bnl.gov serverHostName:130.199.4.9 # #Machine: local #serverHostName:localhost # # #serverPortNumber:5000 serverPortNumber:8082 # # # # # Parameters defining timeout values for requests to database & I/O server # Specified as milliseconds # DB_Timeout_Request:5000 # # IO_Timeout_Request:5000 # # #