Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k views

Is java.sql.Connection thread safe?

To rephrase the question: should I avoid sharing instances of classes which implement java.sql.Connection between different threads?
4
votes
2answers
612 views

DbConnection without Db using in-memory DataSet (or similar) as source

I'm trying to unit test a few .NET classes that (for good design reasons) require DbConnections to do their work. For these tests, I have certain data in memory to give as input to these classes. ...
4
votes
6answers
11k views

C# Retrieving correct DbConnection object by connection string

I have a connection string being passed to a function, and I need to create a DbConnection based object (i.e. SQLConnection, OracleConnection, OLEDbConnection etc) based on this string. Is there any ...
3
votes
5answers
257 views

How can I hide my password in my C# Connection string?

I have the following connection string: Data Source=Paul-HP\MYDB;Initial Catalog=MyMSDBSQL;Persist Security Info=True;User ID=sa;Password=password (.net webservice) This can obviously be viewed ...
3
votes
4answers
1k views

Is using a singleton for the connection a good idea in ASP.NET website

I'm currently using a singleton on my web application so that there is always only one connection to the database. I want to know if it's a good idea because right now I'm having trouble with that ...
3
votes
3answers
5k views

ASP.NET: How to create a connection from a web.config ConnectionString?

How do you construct a DbConnection based on a provider name? Sample provider names System.Data.SqlClient System.Data.OleDb System.Data.Odbc FirebirdSql.Data.FirebirdClient i have connection ...
2
votes
2answers
909 views

ASP.NET Sql Provider

I got a problem. When i'm creating the new project in ASP.NET using VS 2010, it's web.config with a default connection string about SQL Express created. But i haven't even got SQL Express installed. ...
2
votes
1answer
486 views

Connecting to DB2 via .NET DbConnection

Our current DB Connection provider model relies on database connectivity to use DbConnection (System.Data) based objects. We can connect to DB2 (*Nix * Windows) via OdbcConnection, but we would like ...
1
vote
2answers
25 views

PHP Mongodb - db Connection Inside Body

Ok this is more of a PHP question than mongodb but since i am using mongo as the db i would like to know if there are any issues with both PHP as well as mongo when using the following technique. I ...
1
vote
1answer
210 views

How to use different connections according to query type in Yii

All my reads should go to one DB connection All my writes should go to another connection How do I accomplish this in Yii, with minimal changing the code of the core library? And on occasions (as ...
1
vote
1answer
126 views

MvcMiniProfiler not working with Oracle's Connection Object

the last line of the following code triggers an exception: OracleConnection conn = new OracleConnection(getConnectionString()); // A SqlConnection, SqliteConnection ... or ...
1
vote
0answers
197 views

How to get EFProf and EFProviderWrapper working together in on Entity Framework Connection

Has anyone found a way to get Kowalski's EFProviderWrapper framework to run alongside Rhino's EFProf (Entity Framework Profiler) within the same Entity Framework context/connection? Currently if i try ...
1
vote
3answers
975 views

C# + Disposing DbConnection and DbCommand and catching error

I am trying to understand DbConnection and DbCommand, and the proper way to dispose those objects after use. Following is the code snippet I have. By using "using statement" on DbConnection and ...
1
vote
9answers
2k views

Can a return statement prevent a using statement from closing a connection to a database?

When I'm creating temp tables I get an error message telling me that the temp table already exists. The temp table is unique to the session so it seems my connection isn't closing properly and I think ...
1
vote
3answers
1k views

Properly disposing of a DbConnection

I have a class called DatabaseHelper that wraps a DbConnection. What's the proper way to setup this class for a using statement? I have implemented IDisposible, but I'm not sure when and where I ...
0
votes
1answer
24 views

ASP .NET Application_Start Event + Connection to a DB

I have started developing a full-web application by using the ASP .NET MVC 3 framework. I am a MVC 3 beginner developer. On the server-side I am going to execute some queries to a DB. Consequently I ...
0
votes
1answer
18 views

Troubleshooting “mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource”

I am using PHP with a MySQL backend. When I try to connect to the database I am getting the following error. Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result ...
0
votes
1answer
115 views

DB Connection Timeout simulation

Is there an way to simulate a db connection timeout? I'm encountering problems with a timeouted db connection on a productive system and need to simulate a similar situation.
0
votes
0answers
81 views

DbConnection setting context_info and multiple procs

I've tried to find example of this but can't seem to find anything relevant. Using context_info, I'd like to call a proc each time anything is called during a dbconnection, I assumed the following ...
0
votes
1answer
346 views

DbTransaction and DbConnection when working with EF4

I'm trying to implement a Unif Of Work around ObjectContext of EF4 in a web application. The UoW is an HttpModule. What I need is to get the current transaction for the connection. When an http ...
0
votes
1answer
105 views

Connect to MSSQL and select the database PROBLEM

i had installed sqlserver and i had also created database TESTDB I had also create ODBC CONNECT i had tested it is ok My Computer name is DONGOL i MAKE TO CONNECTION PAGE OF PHP AS ...
0
votes
3answers
234 views

Executing a stored procedure using a DbConnection

I need to execute a stored procedure on a database. This is what I got so far that works: protected DbProviderFactory dbProviderFactory; this.dbProviderFactory = ...
0
votes
4answers
331 views

Working with database in the OnExecute event (Indy)

i have a server with these codes : procedure TFrmMain.TCPServerExecute(AContext: TIdContext); begin Res := DoRegister(Name,Family,Username,Password); end; function ...
0
votes
2answers
112 views

How much timeout to use in isValid()?

In the method from Connection, how much timeout should I give it? :S I have no idea what a normal timeout would be, how much time should it take? :) I dont want isValid() to return false if it could ...
0
votes
2answers
269 views

How to find out all the commands executed on a MySQL database within a given timeframe?

Is it possible to find out all the command executed against a database in a given timeframe? For example, I would like to know who executed insert command on a database table in the last 24 hours. ...