PRO sqlServer__define
;;-----------------------------------------------------------------------------
;; PURPOSE:
;;	Defines the data structure to describe how to acess an SQL server
;;
;; MODIFICATION HISTORY:
;;   2004-06-04  M. Desnoyer    Created
;;
;;-----------------------------------------------------------------------------

tmp = { sqlServer, $
	host: '', $ ;; String specifying the address of the server
	usr: '', $ ;; String specifying the user to acess the SQL server
	pass: '', $ ;; The password to acess the SQL server
	next: ptr_new() $ ;; Pointer to the next sqlServer in a list
}

END