Category: Database
Total: 47 Posts
Posts of Category: Database
Total: 47 Posts
Posts of Category: Database
Spring Data JPA - Guide to the @Query Annotation
Introduction If you have worked with Spring Data JPA for any length of time - you're probably acquainted with derived query methods: public interface MyRepository extends JpaRepository<client, long=""> { ...Learn MoreJavaDatabaseMySqlPostgreSQLSpringSpring BootAnnotationjpaSpring Data MongoDB - Guide to the @Aggregation Annotation
Introduction MongoDB is a document-based NoSQL database, that stores data in BSON (Binary JSON) format. Like with any database, you'll routinely make calls to read, write or update data stored in the document s...Learn MoreJavamongodbSpringSpring BootAnnotationIntegrating MySQL with Node.js Applications
Introduction MySQL is an immensely popular Relational Database Management System (RDBMS) - and has for a long time been a staple in any back-end engineer's toolkit, right next to PostgreSQL. With the advent of ...Learn MoreJavaScriptDatabaseNodejsMySqlSpring Data MongoDB - Guide to the @Query Annotation
Introduction If you have worked with Spring Data JPA for any length of time - you're probably acquainted with derived query methods: @Repository public interface BookRepository extends MongoRepository<book, ...Learn MoreJavaDatabasemongodbSpringSpring BootAnnotationGuide to Using The Django MongoDB Engine with Python
Guide to Using The Django MongoDB Engine with Python Introduction In this article, we will see how to use MongoDB, a non-relational database, with Django, a Python Web Framework. Django is commonly used with Po...Learn MorePythonWebsiteDjangomongodbGuide to JPA with Hibernate - Inheritance Mapping
Guide to JPA with Hibernate - Inheritance Mapping Introduction In this article, we'll dive into Inheritance Mapping with JPA and Hibernate in Java. The Java Persistence API (JPA) is the persistence standard of ...Learn MoreJavaDatabaseORMHibernatejpaA SQLite Tutorial with Node.js
A SQLite Tutorial with Node.js In this tutorial I will be demonstrating how to use SQLite in combination with JavaScript inside the Node.js environment with the help of the sqlite3 Node.js driver. For those not...Learn MoreJavaScriptDatabaseNodejsSQLiteGuide to Flask-MongoEngine in Python
Guide to Flask-MongoEngine in Python Introduction Building a web app almost always means dealing with data from a database. There are various databases to choose from, depending on your preference. In this guid...Learn MorePythonmongodbflaskA SQLite Tutorial with Python
A SQLite Tutorial with Python Introduction This tutorial will cover using SQLite in combination with Python's sqlite3 interface. SQLite is a single file relational database bundled with most standard Python ins...Learn MorePythonDatabaseSQLiteWorking with PostgreSQL in Java
Working with PostgreSQL in Java Introduction PostgreSQL (which goes by the moniker Postgres) is famous for its object-relational nature. In contrast, other database systems are usually relational. Due to its na...Learn MoreJavaDatabasePostgreSQLUsing PostgreSQL with Node.js and node-postgres
Using PostgreSQL with Node.js and node-postgres Introduction In this article, we will discuss how to integrate PostgreSQL with Node.js. In order to better follow this article, we'd recommend that you have prior...Learn MoreJavaScriptDatabaseNodejsPostgreSQLGuide to JPA with Hibernate - Relationship Mapping
Guide to JPA with Hibernate - Relationship Mapping Introduction In this article, we'll dive into Relationship Mapping with JPA and Hibernate in Java. The Java Persistence API (JPA) is the persistence standard o...Learn MoreJavaDatabaseh2Hibernatejpa