[racket] Support for MS SQL in Racket?

From: Stefan Schmiedl (s at xss.de)
Date: Sun Feb 6 03:48:03 EST 2011

On Sat, 5 Feb 2011 20:28:27 -0800
Dave Yrueta <dyrueta at gmail.com> wrote:

> is there anyway
> to write MS SQL Server scripts in Racket that work in a MS SQL server
> environment?

Hi Dave,

creating SQL scripts is just a matter of building the right string
for the job at hand. If nobody comes up with a smarter idea, you
could write this string to a file and pass it to the SQLServer command
line utility sqlcmd.

The fun starts when you want to work on the output of sqlcmd. You'll
notice such niceties as cutting off of the data at 1 MB for no good
reason at all.

I'd be very happy if somebody found an ODBC connector gathering
dust in the corner.

HTH,
s.


Posted on the users mailing list.