About 6,790,000 results
Open links in new tab
  1. Connecting Spring Boot Apps to MySQL Databases | Medium

    Nov 13, 2024 · Connecting a Spring Boot application to a MySQL database involves configuring the connection, setting up the required dependencies, and creating the necessary components to …

  2. Database: Getting Started - Laravel 13.x

    The configuration for Laravel's database services is located in your application's config/database.php configuration file. In this file, you may define all of your database connections, as well as specify …

  3. SQL Databases :: Spring Boot

    You need to populate your database when your application starts and be prepared to throw away data when your application ends. The “How-to Guides” section includes a section on how to initialize a …

  4. What are Database Connections? - Budibase

    Sep 5, 2023 · Therefore, it’s hugely inefficient to create, use, and close a connection each time we want to perform an operation. Connection pooling is the most common solution to this problem. So - what …

  5. How Spring Boot Handles Database Connection Pooling | Medium

    Jan 31, 2025 · Spring Boot manages database connections using HikariCP, optimizing connection pooling for performance, efficient resource usage, and high-throughput database access.

  6. How to Create a Database Connection? - GeeksforGeeks

    May 5, 2025 · Java Database Connectivity is a standard API or we can say an application interface present between the Java programming language and the various databases like Oracle, SQL, …

  7. Part 5, work with a database in an ASP.NET Core MVC app

    Introduction This part of the tutorial series focuses on working with a SQL database in your ASP.NET Core MVC application. You’ll learn how to: Register and configure the Entity Framework Core …

  8. Establishing JDBC Connection in Java - GeeksforGeeks

    Mar 31, 2026 · Before performing database operations in Java, a JDBC connection must be established. It acts as a communication link between the application and the database to send queries and …

  9. Database application.yml for Spring boot from applications.properties

    I've got a working Spring Boot Application that connects to a Postgres database. I've got the project set up with an application.properties file, but would like to make the switch over to an application.yml file. …

  10. Protecting Connection Strings and Other Configuration Information (C#)

    Jun 24, 2023 · Note This tutorial concludes with a look at Microsoft's recommendations for connecting to a database from an ASP.NET application. In addition to encrypting your connection strings, you can …