A database connection is a facility that allows client software to communicate with database server software, whether on the same machine or not. A connection is required to send commands and receive answers.

learn more… | top users | synonyms

0
votes
2answers
42 views

Writing a connection string to access a remote SQL Server database

My database is hosted on a remote server. I need to write the connection string which I have to include in the web.config file. server name -- abcs.efgh.ed-1.eee.sss.com,1433 (it also contains a port ...
7
votes
8answers
403 views

Design Patterns: How to create database object/connection only when needed?

I've a simple application, say it has some classes and an "extra" one that handles database requests. Currently i'm creating the database object everytime the app is used, but in some cases there's no ...
0
votes
1answer
19 views

How we use Connection pooling with Mongodb?

Is there a thread pool library like c3po , dbcp for Mongodb connection pools? As hibernate uses c3po for connection polling can we use c3po with mongodb ? Thanks in advance Regards
1
vote
1answer
11 views

sleeping connection (mysql) mcrypt

I have isolated some code within some other guys code which is causing our servers to grind to a halt. This occurs every time an mcrypt function is called. $iv = ($iv === false) ? ...
-1
votes
1answer
23 views

sql server lisiting table is not working properly when connect from java

I have executed select name from test1.sys.tables query in sqlcmd and got proper result. But same query is not working in java-sql connection querying from java lines. String show_tbl_qry="select ...
0
votes
0answers
10 views

ubuntu tora cannot connect postgresql

I whant to connect postgresql by Tora I have to install connection provider when I install i get error sudo apt-get install libqt4-sql-psql [sudo] password for nicat: Reading package lists... Done ...
0
votes
2answers
25 views

Remote MySQL Server connection w/PHP

I need to connect to an external MySQL database and fetch some data. I have a few concerns about it: Connecting to a remote server will increase the loading time of the page, I want that to be the ...
0
votes
0answers
11 views

Connecting MVS 2010 with oracle server

I am trying to connect to a database and I am getting this error Ora-12504:TNS:listener was not given the SERVICE_NAME in CONNECT_DATA I am using visual studio 2010 and Oracle 11g
0
votes
1answer
23 views

Possible solutions for a SQLNonTransientException

I am very new to database connections with Java and am having a difficult time connecting to the database I was provided. So far I've learned that installing the correct DB2 drivers may have been an ...
-2
votes
1answer
27 views

Quick way to connect to a remote MySql Database in Java [closed]

I wanted to connect to a database from within a Java-based framework. This essentially involves writing code to connect to a database. However, I cannot modify any build.xml file or so such as in ...
0
votes
2answers
3k views

How to fix “Error parsing data org.json.JSONException: Value <?xml of type java.lang.String cannot be converted to JSONArray” in my program

I am very new to android and I'm trying to make a program that shows you results from a database that I have. So when I type in a first name and the database sends the information of that person to ...
-8
votes
1answer
47 views

C# Connecting to Oracle data base

How to connect to a Oracle Database in C# ? I need a code with comments explaining it. I don't want to add the base throw DataSet in Microsoft visual studio... I need to make calls to server with ...
0
votes
4answers
40 views

Connection to Oracle Database with Java

I can't connect to my Oracle database server. This is the code : import java.util.*; import java.sql.*; import java.io.IOException; public class Knigi { public static void main(String[] args) { ...
-1
votes
1answer
28 views

System.ArgumentNullException: Value cannot be null. Parameter name: connection

I keep getting System.ArgumentNullException where the parameter name is connection. I have not been able to find any solution for this parameter name "connection". what does this error mean because ...
0
votes
0answers
13 views

Mysql Bulk Connections Solution

I have installed Mysql 5.6 On linux Operating System CentOS My Configuration in my.cnf are [mysqld] max_connections = 50000 max_connect_errors = 50000 max_user_connections = 0 max_allowed_packet = ...
1
vote
1answer
449 views

Run controllers via command-line. Issue connecting to the database

Background: Using unix, codeigniter from localhost. I'd like to run a controllers via a command-line (CLI). Consequently I'm following this CodeIgniter tutorial and the example works fine. ...
0
votes
0answers
11 views

connecting to php flash builder error

I'm getting an error in flash Builder when I'm trying to connect to PHP either on my localhost or webhost that says "unable to connect to database using specified connection information" and at the ...
2
votes
3answers
153 views

Can not connect multiple times to mysql

I am writing an own databse in scala. To verify my results are correct, I check with a MySQL inside of a specs2 specification. I get the right result and everything is just fine. But if I run the test ...
-2
votes
1answer
340 views

In-use connections equal max-pool-size and expired max-wait-time. Cannot allocate more connections

I am facing following problem with an HTTP 500 status. Message description: The server encountered an internal error () that prevented it from fulfilling this request. Exception: ...
52
votes
16answers
70k 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> ...
0
votes
0answers
4 views

Form Redirect to avoid leads360 database success page

I have created a form that submits to a database. After the user hits submit, it sends the user to a page controlled by the database that I don't have access to edit, it just says "success!" on it. I ...
0
votes
2answers
24 views

pdo connection position in php class

I'm using PDO now and I have a number of classes. Every time I use a class, I don't always use its database-related functions. Sometimes I keep using a class until at the end I might do some work ...
0
votes
1answer
21 views

Unable to connect to SQL server 2008 [closed]

I am not able to connect to SQL Server. It is showing the following error: Additional information: A network-related or instance-specific error occurred while establishing a connection to SQL ...
0
votes
3answers
1k views

Problem With Updating Database through DataAdapters/datasets in C#/Visual studio

I try updating my database after updating the dataset, but evenafter calling the data adapter's update function the underlying database doesn't change. I used SqlCommandBuilder and it still wouldn't ...
0
votes
0answers
10 views

MATLAB 7 not connecting to MYSQL through database toolbox

I am using MATLAB Version 7.10.0.499 (R2010a) Java VM Version: Java 1.6.0_12-b04 with Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM mixed mode When i attempt to open my database toolbox to ...
0
votes
1answer
14 views

Apache running MongoDB and PHP

I'm using XAMPP in my Mac OSX. I've installed mongodb and copied the .so file into xampp plugins folder. My phpinfo() of the page shows that MongoDB section which is installed. After i start Apache ...
0
votes
1answer
18 views

Tracking down a distributed tranaction error

How can I track down the distributed trans error? Are there any ways to determine all connections are still open? I need to find the transaction that wasn't properly closed? I'm getting an occasional ...
0
votes
1answer
21 views

how to properly close and open a hibernate session

I have the following method that inserts a large batch of records every few seconds. After some time of running I get errors like the following: ERROR: Communications link failure The last packet ...
-3
votes
2answers
50 views

PHP Database Connection File

I am trying to create a database connection file so that multiple pages will have a constant connection to the database. I am trying to understand why one set of code works as far as linking to the ...
0
votes
1answer
35 views

Connection to database

I am having trouble configuring my connection. I have a getConnection method that looks like this: protected function getConnection(){ $mysqli = new mysqli('xxxxxxxxx', 'xxxxxx', 'xxxxxx', ...
0
votes
1answer
50 views

MySQL COM_EXECUTE_STMT fails with error but the error does not make sense

I'm sending a COM_EXECUTE_STMT message and the server always returns an: Error 1048 - #23000 - Column 'number_tinyint' cannot be null The query is like this: insert into numbers ( ...
4
votes
1answer
5k views

How to connect to SQL Server through proxy server

Is it possible to connect to SQL Server server through proxy (http) using SQLSERVER oledb provider? How can I specify proxy address and port in connection string if it's possible? What nonstandard ...
6
votes
2answers
2k views

Is there a timeout for PostgreSQL connections?

1 S postgres 5038 876 0 80 0 - 11962 sk_wai 09:57 ? 00:00:00 postgres: postgres my_app ::1(45035) idle 1 ...
0
votes
1answer
41 views

PostgreSQL installation as a user on Cygwin, database server setup

I'm trying to install PostgreSQL on Cygwin as a user and i'm getting stuck on the part where I have to create a database server, after i execute the pg_ctl command, it just prints "server starting" ...
1
vote
1answer
72 views

installing PostgreSQL on Cygwin as a service

I'm a novice trying to install Postgresql on Cygwin as a service. I have been following the steps listed in this URL: http://www.smartpixie.com/wiki/Tech/CygwinPostgreSQL.twiki.html Everything was ...
0
votes
1answer
50 views

Connecting C# win32 app to Access Database

I've been searching around to no avail for a supposedly simple connection to an (MS)Access database (.mdb). I use Office 2007, Visual Studio 2010, it is a C# Winform application, on a x64 (64 bit) ...
0
votes
1answer
40 views

VB programmers. Database data connection error [closed]

I am getting a message box with an error when I try to access my database from the "Find Reservation" Menu Item. Picture below. I can accept it and it takes me to the screen where my database list ...
2
votes
1answer
45 views

Many queries and too much opening / closing of the same connection

I have to recalculate values on a large collection of entities, one after the other. During that process, all the self-tracking-entities are altered within the same ObjectContext. For each entity ...
0
votes
1answer
58 views

Connection To The Database Failed in DNN

I am trying to install DotNetNuke, I created a virtual machine with Window Server 2008, and followed the video series to install DotNetNuke. When I run the InstallerWizard I am getting this error: ...
0
votes
0answers
23 views

Magento : MySQL server crash when “Copying to tmp table” process runs

We have around 8k products in our Magento store. The following query starts every 5 minutes and does not seem end. I have checked process chart and found this query running many times. When MySQL ...
3
votes
3answers
2k views

How to force timeout for DriverManager.getConnection() method call?

I have an application which will establish DB connection with MySQL and execute queries. Sometimes the DriverManager.getConnection() method call takes 2 seconds and sometimes it takes 30 seconds. Is ...
1
vote
1answer
44 views

How to make connection pooling for a web service

As an antecedent, I learned Java through online tutorials, so, please don't be too harsh with my questions, if I ask this here it's just because I don't know where to find an answer. I need to write ...
0
votes
0answers
55 views

Intermittent SQL Server Connection Issue

I have been experiencing an intermittent SQL connection problem that I can't resolve. First of all I will explain the setup: Windows 2008 R2 Standard SP1 (and all patches delivered through windows ...
0
votes
2answers
62 views

MySQL Server terminated and hibernate database connection not closing

I have used the following code to create database connection using Hibernate configuration file. <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property ...
1
vote
6answers
8k views

PHP: Database Connection Class Constructor Method

I'm new to OOP. Originally I was defining variables and assigning values to them within the class and outside of the constructor, but after an OOP lesson in Java today, I was told this is bad style ...
0
votes
2answers
145 views

How to connect to pointbase database from javascript?

I am working on a project in which I need to connect to pointbase database from javascript. I do not have much knowledge about java script. Is it possible to connect to pointbase from java script? ...
12
votes
1answer
8k views

ExecuteReader requires an open and available Connection. The connection's current state is Connecting

When attempting to connect to MSSQL database via ASP.NET online, I will get the following when two or more people connect simultaneously: ExecuteReader requires an open and available Connection. ...
-1
votes
1answer
180 views

Should I use PHP 5.4 traits for a dependency injection connection class or an Interface or Abstract Class? [closed]

Was reading this: PHP - multiple different databases dependency injected class Various comments had "wait for 5.4 traits." Read up on traits. Now I'm not sure what to do. Using the above ...
0
votes
1answer
44 views

SQL Login failing on SQL Server 2008 for Remote Connections

This snippet of C# code is used to connect to a SQL Server 2008 instance (default, not named instance): using (SqlConnection conn = new SqlConnection(sqlConnType)) { conn.Open(); using ...
1
vote
1answer
33 views

updating an Access 2010 Linked Table connection

How do I change the connection string of a linked table in Access 2010? I don't want to do it programmatically but through the interface. When I try to change it via the table's Properties I get the ...

1 2 3 4 5 42