Re: [racket-users] racket/db, creating queries from fetched values

2016-08-17 Thread George Neuner
On 8/16/2016 3:57 PM, Kristjan Siimson wrote: Basically when I said "query" I meant the SQL-language strings, which can be copy-pasted and executed independently. Some utilities (Percona tools) call it "dry run"; the queries are printed as strings for end user verification, and they never reac

Re: [racket-users] racket/db, creating queries from fetched values

2016-08-16 Thread George Neuner
On 8/16/2016 12:33 PM, Kristjan Siimson wrote: Ah, yes. I should of have clarified that I'm trying to build queries, but I don't want them to be executed. I guess, alternatively, I could solve it by creating a blackhole database and viewing the executed queries from the general log. If Im go

Re: [racket-users] racket/db, creating queries from fetched values

2016-08-16 Thread George Neuner
On 8/16/2016 10:04 AM, ksiimson wrote: Hi! I'm a new user of Racket and I am trying to make a simple application which interfaces a MySQL database. Fetching the data is quite straightforward, but I am having trouble coming up with a reasonable way to insert the data back into database. Basica

[racket-users] racket/db, creating queries from fetched values

2016-08-16 Thread ksiimson
Hi! I'm a new user of Racket and I am trying to make a simple application which interfaces a MySQL database. Fetching the data is quite straightforward, but I am having trouble coming up with a reasonable way to insert the data back into database. Basically the fetched vector contains many dif