[plt-scheme] schemeQL

From: Pedro Pinto (ppinto at cs.cmu.edu)
Date: Wed Sep 18 23:05:03 EDT 2002

Hi there,

I am trying to use schemeQL (latest version) under Windows XP and I have come across the following problem:

 > SELECT *
   FROM publishers
Unspecified error in get-diag-field

When running this code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(require (lib "schemeql.ss" "schemeql"))

(define conn
  (connect-to-database "pubs-odbc" "myuser" "mypassword"))

(define q (query ALL publishers))

(with-handlers ([(lambda (exn) 
     (schemeql-execution-error? exn))
   (lambda (exn)
     (printf "~a~n" (schemeql-execution-error-info exn)))])
        (schemeql-execute q conn))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


Any ideas?

Thanks in advance,
-pp


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20020918/88d72f29/attachment.html>

Posted on the users mailing list.