Need to move results to a database

I’ve been working on a really simple web crawler all day. I finally have it working, but I want to move my scraped results into an sql database. How can I do that?

Take a look at Database - Crystal.

Probably better off with one of these instead writing SQL by hand:

Cool! This’ll make my life easier.

Probably would be overkill for a simple insert/read context. I’d consider using DB::Serializable - db 0.11.0 instead, as it works quite well and requires no other dependencies other than the DB driver itself. You do have to handle inserts yourself, but is pretty slick.

1 Like

I find that just using DB::Serializable and SQL is much easier to work with than ORMs.

2 Likes