Changes In Branch v1.66-captain-ulex Through [d6e38724ed] Excluding Merge-Ins
This is equivalent to a diff from cd49d29559 to d6e38724ed
2020-07-05
| ||
22:13 | Brought captain-ulex up to date with v1.66 check-in: 03d2fdb2d2 user: matt tags: v1.66-captain-ulex | |
2020-06-28
| ||
23:45 | Added keep-going=yes support to steps. check-in: 57aa66b026 user: matt tags: v1.66 | |
2020-06-25
| ||
23:43 | Pulled in parts of the ulex partial implementation check-in: d6e38724ed user: matt tags: v1.66-captain-ulex | |
23:13 | Merged v.65 check-in: cd49d29559 user: matt tags: v1.66 | |
2020-06-24
| ||
09:28 | Rebuilt manual check-in: ef15846c81 user: mrwellan tags: v1.66 | |
2020-06-16
| ||
12:10 | bumped version, merged fork check-in: 5b46e5fdf9 user: mmgraham tags: v1.65, v1.6553 | |
Modified rmtmod.scm from [7098937896] to [b57423f852].
︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + + | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (declare (unit rmtmod)) (declare (uses commonmod)) (declare (uses ulex)) (module rmtmod * (import scheme chicken data-structures extras) (import (prefix sqlite3 sqlite3:) posix typed-records srfi-18) (import commonmod) (import (prefix ulex ulex:)) ;; Hack to make these functions visible to the refactored code, goal is to eliminate these over time. (define (rmt:send-receive . params) #f) (define (http-transport:close-connections . params) #f) ;; from remote defstruct in common.scm (define (remote-conndat-set! . params) #f) (define (remote-server-url-set! . params) #f) |
︙ | |||
54 55 56 57 58 59 60 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | (set! debug:print dbgp) (set! debug:print-info dbgpinfo) (set! remote-ro-mode ro-mode) (set! remote-ro-mode-set! ro-mode-set) (set! remote-ro-mode-checked-set! ro-mode-checked-set) (set! remote-ro-mode-checked ro-mode-checked)) ;; 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 ;; (define (rmt:connect alldat dbfname dbtype) (let* ((ulexdat (or (alldat-ulexdat alldat) (rmt:setup-ulex alldat)))) (ulex:connect ulexdat dbfname dbtype))) |
Added ulex.scm version [39353b5283].
|
Added ulex/ulex.scm version [94ed3a5317].