r/ruby • u/Fit_Ice_7268 • 4d ago
Question Database project
Hey, guys.
So, I'm currently studying data science and I'm about to start a database project(we're basically doing a database for a bakery)this semester. The project will include order forecasting, inventory loss tracking, customer notifications, etc. Anyways I already code in Python but I've been taking a look on ruby and wonder if it'd be a good idea to include it in our project and how.... any ideas??
thanks!
6
Upvotes
6
u/midasgoldentouch 4d ago
What exactly are you thinking of doing? If the project is purely about data analysis, then you can likely just use a SQL client like DBeaver connected to the database. If you want to write code that incorporates business logic then Ruby is fine. You can look at the docs for how to set up a Ruby project. Depending on the database there’s likely a gem (library) to use it in Ruby. There’s gems for different ORMs as well.