Functon Naming conventions

All new R functions are placed under the aq. namespace. Example:
# connects to an aq database
aq.connectAqDb<-function() {
     myAqCon <- dbConnect(MySQL(),user="writer", password="secret", dbname="activequant", host="192.168.0.103")
     # return the connection. 
     myAqCon
}

Also available in: HTML TXT DOCBOOK