Overview
Comment: | Switched rcp test to use sql-de-lite |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
cf979505211459c4f64ef479ba3d06f4 |
User & Date: | matt on 2015-12-07 22:26:52 |
Other Links: | branch diff | manifest | tags |
Context
2015-12-08
| ||
08:44 | Merged fork check-in: ca3c827888 user: mrwellan tags: v1.60 | |
2015-12-07
| ||
22:26 | Switched rcp test to use sql-de-lite check-in: cf97950521 user: matt tags: v1.60 | |
21:32 | Added script to run client and a little help to header of rpctest.scm check-in: 3c88ad926f user: matt tags: v1.60 | |
Changes
Modified rpctest/rpctest.scm from [9aa9c89e7f] to [900250564a].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | - + + + + + + + + + + + + + + + + + + + + + + + + + + | ;;;; rpc-demo.scm ;;;; Simple database server / client ;;; start server thusly: ./rpctest server test.db ;;; you will need to init test.db: ;;; sqlite3 test.db "CREATE TABLE foo (id INTEGER PRIMARY KEY, var TEXT, val TEXT);" |
︙ | |||
33 34 35 36 37 38 39 | 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 | - - - - - - - - - - + + + + + + + + + + + + | (define (server) (rpc:publish-procedure! 'change-response-port (lambda (port) (rpc:default-server-port port)) #f) |
︙ | |||
67 68 69 70 71 72 73 | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | - + + | (define (client) ((rpc:procedure 'change-response-port "localhost") (tcp-listener-port rpc:listener)) ((rpc:procedure 'query "localhost") param callback1) (rpc:publish-procedure! 'callback2 callback2) ((rpc:procedure 'query "localhost") param callback2) |
Modified rpctest/run-client.sh from [9287190e12] to [7217b9abad].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | #!/bin/bash while ./rpctest client "insert into foo (var,val) values ($RANDOM,$RANDOM);";do |