sql

Darrell 2023-09-07T19:16:51.081219Z

If I have a SQL Server table that have spaces in their names, is it possible to query that table with next.jdbc using (sql/insert!)? e.g.; ,[Category ID], [Associated Cat Id], [Discontinued Flag], [Product weight]

seancorfield 2023-09-07T21:28:59.652909Z

That's what :table-fn and :column-fn are for in the options. Along with the functions from: https://cljdoc.org/d/com.github.seancorfield/next.jdbc/1.3.883/api/next.jdbc.quoted

Darrell 2023-09-07T21:31:39.378819Z

Thanks, @seancorfield!