Usage: ./isip_dialog_makedb_address.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 name [namefield] address [addressfield] city [cityfield] state [statefield] telephone [telephone] miles [miles] =====end An example of two entries is =====begin name MSU/NSF Engineering Research Center address Joe Baddley Dr city Mississippi State state MS telephone miles name Diagnostic Instrumentation and Analysis Laboratory address Research Blvd city Mississippi State state MS miles ====end There will be first checked to determine if it exists using ====begin select * from address where name like "%s%%" and telephone 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 address (name, address, city, state, telephone, distance) VALUES('%s','%s','%s','%s','%s','%s') ====end