68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
)
(defstruct alldat
(areapath #f)
(ulexdat #f)
)
(include "db_records.scm")
;;======================================================================
;; return the handle struct for sending queries to a specific database
;; - initializes the connection object if this is the first access
;; - finds the "captain" and asks who to talk to for the given dbfname
;; - establishes the connection to the current dbowner
;;
|
|
|
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
)
(defstruct alldat
(areapath #f)
(ulexdat #f)
)
;; (include "db_records.scm")
;;======================================================================
;; return the handle struct for sending queries to a specific database
;; - initializes the connection object if this is the first access
;; - finds the "captain" and asks who to talk to for the given dbfname
;; - establishes the connection to the current dbowner
;;
|