The dbconnection tag has no wiki summary.
-1
votes
0answers
80 views
How to handle multiple queries in C# [closed]
In my project I am using 10-15 SQL queries, for that I have a common class for database connectivity and using that I have executed the queries by passing the connection, command and dataReader.
...
0
votes
0answers
10 views
EF4 transactions - execute arbitrary SQL on same connection without invoking DTC?
I'm writing a custom database schema/data updating engine, and I want to:
1) Start transaction
2) Execute my arbitrary SQL on a DbConnection
3) Execute entity changes via a DbContext then call ...
2
votes
2answers
36 views
SQLite connection:application stops working
I am making a diary application in android which is supposed to get some data from text fields.
When I run my app on the emulator, it gets successfully installed but as soon as I give input in the ...
0
votes
0answers
54 views
After session.close() connection is still active with Database
I am working with swing and hibernate.
Now for retrive connection, I am using sessionFactory.openSession(). Once I done with DB activity, I am closing same session by session.close().
Now the problem ...
-1
votes
1answer
37 views
SqlConnection DBConnection Windowsce
I'm writing this piece of code in Compact Framework 3.5 under Windows CE 5.0 to handle two different databases:
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlServerCe;
using ...
0
votes
1answer
72 views
Send DbConnection via OperationContract in WCF
Is there any possibility to send DbConnection as a parameter of OperationConstract in WCF? Because I get exception "Type System.Data.SqlClient.SqlConnection with data contract name ...
2
votes
3answers
209 views
PDO prepared statement stops redirecting if db connection is in config file
PDO prepared statements stop redirecting when the database connection is in a separate file (config.php). The query works correctly (i.e. inserts properly, etc.), and the redirect works just fine when ...
0
votes
0answers
81 views
Errors opening DB connection in SQLDeveloper
I'm using Oracle SQLDeveloper to connect to DB2 databases (AKA DEV connection).
I'm able to connect and use worksheets to query the tables, but when I make the initial connection I get 3 error ...
1
vote
1answer
112 views
DbConnection.StateChange not called when connection is disposed?
I have a singleton database class which may be accessed from hundreds of threads simultaneously. Each thread gets its own connection. Since I cannot control the number of threads, I need to limit the ...
0
votes
1answer
179 views
Lazarus Pascal - DB Connection - clarification
The following code is from the docs here:
Program ConnectDB
var AConnection : TSQLConnection;
Procedure CreateConnection;
begin
AConnection := TIBConnection.Create(nil);
AConnection.Hostname := ...
1
vote
5answers
393 views
Is there any need to close a DbConnection if a using clause is used? [duplicate]
Possible Duplicate:
Will a using block close a database connection?
Is db.Close() unnecessary in the following?
using (DbConnection db = GetDbConnection())
{
// do data-access stuff
...
0
votes
0answers
48 views
Subsonic 3 connection events
I need to have some SQL execute before every block of DB-activity. The obvious place to do this with a DbConnection is to attach an event to DbConnection.StateChange. 2 questions:
What is the best ...
0
votes
3answers
674 views
c# - When using “DbConnection” should i use “using” or try-catch-finally to use DbConnection.close() to close the connection?
i was searching the web for a while now. but didn't find any clear answer to my question. whether when connecting to a database i should use "using" or i can just go with try-catch-finally? what i ...
1
vote
1answer
2k views
Mongo DB pool connection error
I am using mongoDb with java. I am getting the following error while inserting data. Any help would be appreciated. Thanx
Jul 4, 2012 1:45:32 PM org.xsocket.connection.HandlerAdapter performOnData
...
1
vote
1answer
402 views
Does DbConnection.Open always open a new database connection or can it reuse one of the connection pool?
I'm unsure at which level the connection pool is implemented in .NET.
When I call
using(var connection = new SqlConnection(connectionString))
{
connection.Open();
Am I surely opening a new ...
1
vote
1answer
2k views
Code behind database connection
I want to create a database connection in my code behind. The code behind will then take all values of the two fields and place them into a multi-deminsional array. Please let me know if there is a ...
2
votes
0answers
172 views
Monitoring the Entity Framework DB connection (Code first 4.3)
I am wondering what the best approach is to managing/ monitoring a connection to a server database using the Entity Framework.
I know that the EF DB context or Object context does the main bits for ...
0
votes
1answer
299 views
Wordpress Hook - External Db Connect
I am developing a shortcode for wordpress. My shortcode and widget both need to connect to an external database in order to pull in formation.
My first question is what hook do i use to connect to ...
1
vote
2answers
186 views
Is there a way of connecting to shared OpenEdge RDBMS with read only access?
Our new security policies require data access restriction for developers to the production database. Setting up -RO parameter does not work for several reasons (extracts from 'Startup command and ...
0
votes
1answer
126 views
how to handle ADO.NET DbConnection(s) in long running web service with DbDataAdapters?
Basically what I do now is:
During initialization
create connection and store it
create DbDataAdapters and their commands with the stored connection
call DbDataAdapter.Fill for each
adapter to ...
1
vote
2answers
104 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 ...
0
votes
1answer
260 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
65 views
Troubleshooting “mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource” [duplicate]
Possible Duplicate:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
php warning mysql_fetch_assoc
I am using PHP with a MySQL backend. When I try to connect to ...
4
votes
5answers
2k 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 ...
1
vote
1answer
1k 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 ...
0
votes
1answer
378 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.
1
vote
1answer
349 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 ...
0
votes
1answer
589 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 ...
3
votes
0answers
406 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 ...
0
votes
1answer
208 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
2answers
1k 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 = ...
1
vote
4answers
712 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 ...
2
votes
2answers
2k 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. ...
1
vote
3answers
2k 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 ...
0
votes
2answers
410 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 ...
3
votes
4answers
3k 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 ...
11
votes
2answers
8k 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?
0
votes
2answers
465 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.
...
7
votes
3answers
10k 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 ...
6
votes
2answers
1k 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.
...
3
votes
9answers
3k 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 ...
2
votes
3answers
2k 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 ...
3
votes
2answers
1k 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 ...
6
votes
5answers
17k 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 ...
