d_run
2017-12-10 17:26:14

Currently working with the SQL package http://docs.racket-lang.org/sql/index.html?q=sql and wondering if there is a way to add IF NOT EXISTS to the create-table expression http://docs.racket-lang.org/sql/index.html?q=sql#%28form._%28%28lib._sql%2Fmain..rkt%29._create-table%29%29


d_run
2017-12-10 17:26:54

Ideally would like to create SQL such as CREATE TABLE IF NOT EXISTS links (....)


d_run
2017-12-10 17:27:16

otherwise need to fall back to string SQL statements


d_run
2017-12-10 17:28:05

same with insert, would like to add INSERT OR IGNORE INTO links (...)


d_run
2017-12-10 17:35:31

ah found the repo, will ask there