Top "Database-connection" questions

A database connection is a facility that allows client software to communicate with database server software, whether on the same machine or not.

Connect to external server by using phpMyAdmin

I have phpMyAdmin installed on my local machine. How can I make it connect to an external server?

php phpmyadmin database-connection remote-server
Enable tcp\ip remote connections to sql server express already installed database with code or script(query)

I am deploying sql express with my application. I will like that database engine to accept remote connections. I know …

configuration cmd database-connection sql-server-express remote-connection
How to form a correct MySQL connection string?

I am using C# and I am trying to connect to the MySQL database hosted by 00webhost. I am getting …

c# mysql database-connection
Python Database connection Close

Using the code below leaves me with an open connection, how do I close? import pyodbc conn = pyodbc.connect('DRIVER=…

python database-connection
Server Discovery And Monitoring engine is deprecated

I am using Mongoose with my Node.js app and this is my configuration: mongoose.connect(process.env.MONGO_URI, { …

node.js mongodb mongoose database-connection
Accessing database connection string using app.config in C# winform

I can't seem to be able to access the app.config database connection string in my c# winforms app. app.…

c# sql winforms database-connection app-config
Connection timeout for DriverManager getConnection

I am trying to connect to DB using the standard JDBC way connection = DriverManager.getConnection(url, username, password); Is there …

java oracle jdbc database-connection
Connecting a Microsoft Access Database to Java using JDBC and compiling

for a school database project we are making a database program (user GUI and the database). Using Microsoft Access 2010 I …

java ms-access jdbc database-connection executable-jar
Why do I need Transaction in Hibernate for read-only operations?

Why do I need Transaction in Hibernate for read-only operations? Does the following transaction put a lock in the DB? …

java database hibernate transactions database-connection