Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
3answers
18k views

What “exec sp_reset_connection” shown in Sql Profiler means?

Trying to understand what Sql Profiler means by emitting "sp_reset_connection". I have the following, "exec sp_reset_connection" line followed by BatchStarting and Completed, RPC:Completed ...
20
votes
5answers
1k views

How do I avoid having the database password stored in plaintext in sourcecode?

In the web-application I'm developing I currently use a naive solution when connecting to the database: Connection c = DriverManager.getConnection("url", "username", "password"); This is pretty ...
13
votes
4answers
21k views

The underlying provider failed on Open

I was using .mdf for connect to DB and entityClient. Now I want to change the connection string so that there will be no .mdf Is this connectionString correct <connectionStrings> ...
12
votes
9answers
2k views

passing DB Connection object to methods

Was wondering if it is recomended to pass a database connection object around(to other modules) or let the method (in the other module) take care of setting it up. I am leaning toward letting the ...
11
votes
3answers
1k views

What is the best way to centralize and secure connection strings?

What is the best way to centralize and secure the connections strings used by applications? In my environment we have many internal applications. Each application requires one or more connection ...
10
votes
2answers
4k views

A connection was successfully established with the server, but then an error occurred during the pre-login handshake

I am getting following error when i am trying to connect Production DB from Local Environment. I was able to connect Production DB before, but suddenly i am getting following error, any idea? A ...
9
votes
7answers
4k views

How to force a SqlConnection to physically close, while using connection pooling?

I understand that if I instantiate a SqlConnection object, I am really grabbing a connection from a connection pool. When I call Open(), it will open the connection. If I call the Close() or ...
9
votes
5answers
7k views

Best Portable way to connect to SQL server using c++

I need some help into this problem: Basically i want to connect my program which uses c/c++ to a SQL server database (MS SQL server express or standard edition) , because of our users demands the ...
9
votes
7answers
1k views

Persistent DB Connections - Yea or Nay?

I'm using PHP's PDO layer for data access in a project, and I've been reading up on it and seeing that it has good innate support for persistant DB connections. I'm wondering when/if I should use ...
8
votes
5answers
457 views

Correct way to close database connection in event of exception

Does the following code leave the connection open if there is an exception? I am using a Microsoft SQL compact edition database. try { SqlCeConnection conn = new ...
8
votes
4answers
728 views

Using a singleton database class in functions and multiple scripts(PHP) - best use methods

I have a singleton db connection which I get with: $dbConnect = myDatabase::getInstance(); which is easy enough. My question is what is the least rhetorical and legitimate way of using this ...
8
votes
8answers
15k views

Could not connect: Lost connection to MySQL server at 'reading initial communication packet', system error: 0

I am running a Rails app so now I am trying to remote connect to mysql and I am getting this error Could not connect: Lost connection to MySQL server at 'reading initial communication packet', system ...
7
votes
2answers
3k views

What exactly this error is?

Database i am using is MySQL 5.1. I specified, i believe, right connectionstring in my web.config. but when i run my web app. it throws this exception:- MySql.Data.MySqlClient.MySqlException: The ...
7
votes
3answers
4k views

Closing Database Connections in Java

I am getting a little confused, I was reading the below from http://en.wikipedia.org/wiki/Java_Database_Connectivity Connection conn = DriverManager.getConnection( "jdbc:somejdbcvendor:other ...
7
votes
6answers
1k views

winforms connection properties dialog for configuration string

Is there a way to display the connection properties dialog for connection string browsing(for database) in run time? As I want the user to be able to connect to various database using the GUI. The ...
7
votes
4answers
1k views

How do you manage database connections in php?

So recently I've really started to use php actively, and I need some insights on different ways to use database connections. At first I just used the simple mysql_connect(): <?php ...
7
votes
1answer
1k views

Best way to check OleDbConnection state

Apparently (MSDN) sometimes OleDbConnection.ResetState() does nothing, so even if the connection fails OleDbConnection.State will still be set to Open. I am looking for best workaround for this, so ...
7
votes
3answers
1k views

How do I connect to SQL Server using Emacs?

What steps do I take? Any gotchas to be aware of or tips to enhance the IDE experience that are specific to SQL Server when using Emacs?
6
votes
2answers
232 views

How can I access an Oracle database via ODBC from R without making the password public?

This question is based on my attempt to create an application in R that can pull data in from a remote Oracle database via ODBC, but I doubt the answers will be R specific. I am trying to create an ...
6
votes
3answers
1k views

Why always close Database connection?

Connecting to database consumes a lot of resources right (or not)? So, why always close a database connection in your application if you have to open it again? Can I just make this connection ...
6
votes
4answers
770 views

Ninject with Windows Application

I want to use Ninject in my Windows application and I want to know if there is best practices that I can do; strategies to find a balance between performance and maintenance. The problem with Windows ...
6
votes
4answers
1k views

What happens to an unclosed database connection?

Earlier today I've found a bug in one of our projects - there is a conenction with database that is never closed, i mean the Close() method is never called. However, when I close the application, the ...
6
votes
8answers
411 views

If a console program terminates, will the database connections used in the program still remain open?

In Java and C#, they both have something like System.terminate(). If my program has open database connections, database readers, and database command variables, and I terminate my program in a catch ...
5
votes
6answers
143 views

Why do we need connection strings?

When we connect to a database in ASP.NET you must specify the appropriate connection string. However most other instances where data is to be specified is done within an object. For example why ...
5
votes
1answer
128 views

How to use a different database per “application instance” in Django?

The scenario We have two applications. TheApp TheApp is an incredible app which customers love. Each customer gets his own instance of the application, which means each customer will use a ...
5
votes
5answers
279 views

CodeIgniter database connections not being closed

I have built a social community website in CodeIgniter which is now getting a fair bit of traffic, the hosting company have started complaining and saying that the database is receiving null ...
5
votes
2answers
1k views

How to connect to Play Framework in-memory database using JDBC?

I use the in-memory database that comes with Play Framework, when I have db=mem in the configuration file, for development. How can I connect to this database using JDBC? and not the JPA that is the ...
5
votes
3answers
167 views

Best way to do nothing until things are connected in C#

I was reviewing the code to connect to the DB in one of the applications that I'm working on and I saw this if (_dbConnection == null) _dbConnection = GetConnection(); while ...
5
votes
5answers
228 views

Recommendations for C# database access

Hi I've programmed a fair bit of C#, but never with a database. I'd like to use SQL Server with C# with some framework. Microsoft seems to have shipped a number of frameworks through the lifetime of ...
5
votes
7answers
862 views

How does database connection works in php-mysql

Is it better to close the connection after each query is executed or put the connection as is it, then php will automatically close that connection. Which one is better and why?
5
votes
1answer
15k views

Hibernate c3p0 connection pool not timing out idle connections

We have a java server connecting to a MySQL 5 database usingHibernate as our persistence layer which is using c3p0 for DB connection pooling. I've tried following the c3p0 and hibernate ...
5
votes
3answers
1k views

Detect OS Sleep and Wake Up events in Java

Is there a way for a Java program to detect when the operating system is about to go to sleep, or failing that, at least detecting a wake up? The actual problem is that in a particular application a ...
5
votes
4answers
37k views

How to fix “The ConnectionString property has not been initialized”

When I start my application I get: The ConnectionString property has not been initialized. Web.config: <connectionStrings> <add name="MyDB" connectionString="Data ...
5
votes
8answers
1k views

A Question About C# and Static Classes and Functions

I've seen a lot of discussion about this subject on here. If i have a static class w/ static methods that connects to a database or a server, is it a bad idea to use this in a multi-user environment ...
5
votes
9answers
5k views

Multiple database support in django

From some forum I came to know that Multiple database support is added in Django at lower level, but the higher level apis are not added yet. Can anyone please tell me how one can achieve multiple ...
4
votes
3answers
131 views

Is the database connection in this class “reusable”?

I'm new to asp.net so this might be really basic question, but i cant figure it out. I found a bit of code on the internet, that connects to database. And i created a namespace and some classes to ...
4
votes
2answers
183 views

Connect LINQPad to remote SQL Sever

Disclaimer: I understand the question is very basic, but I could not find the answer in Google or here, and can not do it myself with guessed configuration. I want to get started with LINQPad and I ...
4
votes
1answer
631 views

“Cannot drop database because it is currently in use”. How to fix?

Having this simple code I get "Cannot drop database "test_db" because it is currently in use" (CleanUp method) as I run it. [TestFixture] public class ClientRepositoryTest { private const string ...
4
votes
5answers
135 views

Closing a conneciton in the “unload” method

I have inherited a web framework whereby the previous developer has opened and closed his database connections in the init/unload methods of the page life cycle. Essentially constructor is like this ...
4
votes
1answer
543 views

MySQL Connect via proxy in Java

I am developing a client-server software, where the client connects to the database server as follows. ... try { Class.forName("com.mysql.jdbc.Driver"); Connection conexion = ...
4
votes
1answer
535 views

“Keyword not supported: provider” connecting to Access db on VS08

I'm trying to connect a DataGridView to an access 2000 database on Visual Studio 2008. I keep getting the "Keyword not supported: provider" error, as I'm fairly new to windows development on .Net I ...
4
votes
1answer
535 views

django-pyodbc vs django-mssql

It's in the title really. I want to run Django against MSSQL 2005. Both look reasonably active and up to date. I can't seem to see any unique points for either. Can anyone recommend one over the ...
4
votes
4answers
957 views

How to connect multiple external databases in Magento?

I need to connect to some external databases from Magento. I found one tutorial to Create An External Database Connection in Magento. This tutorial was helpful and it worked for connecting to one ...
4
votes
2answers
183 views

All connections in pool are in use

We currently have a little situation on our hands - it seems that someone, somewhere forgot to close the connection in code. Result is that the pool of connections is relatively quickly exhausted. As ...
4
votes
3answers
319 views

C++ database communication library

I'm looking for a well designed, efficient and robust C++ cross-database and cross-platform database communication library. I need support for Oracle MySQL PostgreSQL Firebird (optional) MSSQL ...
4
votes
7answers
2k views

Oracle (0x80004005)ORA-12154: TNS:could not resolve the connect identifier

I'm trying to connect to an oracle db from an ASP classic application, however I keep running into the ORA-12154 error. TNSNAMES.ORA is configured properly DBSOURCE.A.B.com = (DESCRIPTION = ...
4
votes
4answers
946 views

Java & Local Databases

TL DR; Want some Java help with connecting to a truly local database ( no access to server tech ), or if you can whip up code, that will work. All it has to do is query the DB ( MS Access, although ...
4
votes
4answers
268 views

Am I closing this SQL connection in a C# function appropriately?

In an attempt to close my question on connections remaining open and exceeding the maximum pool, I'm trying tor rewrite the function that is used to connect to our database. The function exists ...
4
votes
5answers
567 views

How do I connect to SQL Server with VB?

I'm trying to connect to a SQL server from VB. The SQL server is across the network uses my windows login for authentication. I can access the server using the following python code: import odbc ...
4
votes
4answers
403 views

In Python, how to make sure database connection will always close before leaving a code block?

I want to prevent database connection being open as much as possible, because this code will run on an intensive used server and people here already told me database connections should always be ...

1 2 3 4 5 22