From: Don Green <infodeveloper...@gmail.com>
Date: Sun, 30 Sep 2012 20:31:39 -0600
Local: Sun, Sep 30 2012 10:31 pm
Subject: [racket] merits of 2 different methods of interfacing Racket to a database
Please comment on the merits of 2 different methods of interfacing Racket
My use of the term ".import", is in reference to the SQLite3 database dot
Is Method B preferable to Method A? If so, why?
Method A
Instead of using the Racket: connection function: (define db1
I can use Racket's 'system' function, to issue SQLite3 dot commands such as
I can then proceed to use Racket's SQL db access commands to insert or
OR
Method B
Use the Racket: connection function: (define db1 (sqlite3-connect ...
Racket does not implement SQLite dot commands, so either:
a) write a million Racket SQL commands such as:
(query-exec db1 "insert into table1 values ('a1', 'b2' 'c3')")
(query-exec db1 "insert into table1 values ('aaa', 'bbb' 'ccc')")
etc.
OR
b) write a function:
(query-exec db1 "insert into table1 values (list-loop)")
where:merits of 2 different methods of interfacing Racket to a database
(list-loop) is a function that loops through each of the million lines in a
THANKS.
____________________
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||