QuickConnectPHP Creation Quick Guide

Application Creation Steps

  1. If you are using Oracle, change the loginBR function to use the OracleDataAccessObject (still in pre-release version)
  2. Change the user name, password, and database URL to reflect your actual database
  3. If you are using MySQL, change the database schema to reflect your schema to use

Application Implementation Steps

Do once:
change the name of QuickConnect.php to reflect the name of your application.

For each new piece of functionality:
  1. Write any ValCF's, validation control functions, needed for this new command
  2. Write zero or more DCF's, data control functions, for the desired new functionality in the functions file
  3. Write one or more VCF's, view control functions, to format the response to the client. This can be text, HTML, XML, JSON, etc. depending on what the client application expects
  4. Map the command that will be passed on the http request to the ValCF's, DCF's, and VCF's. Do this in the mappings file.