Usage: ./isip_dialog_makedb_campus.exe [user] [pass] [host] [database] where is required [user] [pass] [host] [database] are optional, BUT all must be present if one is present. The layout of the required is =====begin building: [building name] name: [name field] refname: [reference name field] =====end An example of three entries is =======begin building: Agricultural Education Shop name: Not in Use refname: 44 Lee Blvd building: Aiken Village name: Married Student Housing - Apartments refname: 1 Wallace Cir building: Allen Hall name: Office of the President refname: 1 Wallace Cir =======end There will be first checked to determine if it exists using ====begin select * from campusname where building like "%s%%" and name like "%s%%" ====end where "%s%%" is a wildcard such as if "Walmart" = "%s" then the result is "Walmart%" If it doesnt exist then it be inserted into the database with the command ====begin INSERT INTO campusname (building, name, refname) VALUES('%s','%s', '%s') ====end