Arc Forumnew | comments | leaders | submitlogin
How to connect mysql
3 points by jun33199 2327 days ago | 3 comments
I want to connect mysql db, and operate the data, how can I do it?


3 points by jsgrahamus 2327 days ago | link

Look here: https://www.google.com/search?ei=mYP8We-tGISOjwPy9ougAQ&...

-----

2 points by hjek 2318 days ago | link

... and the first result on Google is this post.

-----

2 points by hjek 2323 days ago | link

You could use the Racket db interface,

https://docs.racket-lang.org/db/connect.html#%28def._%28%28l...

It may be easier to handle the db connection in a Racket module, and then import that module in Arc (because it may be a bit tricky to provide Racket-style keyword args within Arc).

-----