Tag: ORM

  • Connecting to MySQL from Node.js

    Connecting to MySQL from Node.js

    For the most part, it seems to be that NodeSQL databases are the defacto standard with Node and JavaScript developers. Using MySQL is still an option and can make a lot of sense if the project already has an existing database.

  • What is ORM?

    What is ORM?

    Most software projects need to talk to a database at some point – they usually do GET queries for data, update a field or create a record. In the past, people would write raw code that communicated with the database and built an object or some code representation of the data that they would manipulate. […]