rmculpepper / sql

Embedding of some of SQL into Racket
33 stars 5 forks source link

create-table translate (varchar 20) to \"VARCHAR\"(20) #19

Open NoahStoryM opened 3 years ago

NoahStoryM commented 3 years ago

What version of Racket are you using?

v7.8

What program did you run?

`(create-table #:temporary the_numbers

:columns [n integer #:not-null] [d (varchar 20)])`

What should have happened?

(sql-statement "CREATE TEMPORARY TABLE the_numbers (n integer NOT NULL, d varchar(20))")

If you got an error message, please include it here.

(sql-statement "CREATE TEMPORARY TABLE the_numbers (n integer NOT NULL, d \"VARCHAR\"(20))")