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
1answer
12 views

Confusing Unable to open PDO connection Can't connect to MySQL server

I have confusing problem with PDO connection to MySQL. Webapplication written in PHP generating that error: exception 'PropelException' with message 'Unable to open PDO connection [wrapped: ...
0
votes
1answer
30 views

Sending NULL in a prepared statement for MySQL doesn't seem to work

I'm sending a prepared statement to be executed by MySQL and it looks like I'm following the protocol correctly but the server always returns: Error 1210 - #HY000 - Incorrect arguments to ...
0
votes
0answers
7 views

jdbcdslog to log SQL parameters in Jboss, Oracle: Unexpected error in pingDatabase

I use jdbcdslog to get my Hibernate Query along with parameters logged in to a file. I am using Jboss 5.0 as the app server and Oracle as the Database. I get below error when the server is started ...
0
votes
1answer
11 views

Can't add OracleDriver to Subclipse build path

I need to make some modifications to the Subclipse Eclipse svn plugin. To do so, I need to connect to a specific Oracle database, but my code keeps dying on this line: ...
1
vote
2answers
41 views

How to set a delay in VB Script to let Excel update data

I have an Excel file that automatically loads the data from an external database (via a Data Connection to an Accesss database that is, in turn, linked to a Sharepoint table). I need to automate the ...
0
votes
2answers
62 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 ...
0
votes
1answer
20 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
25 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 ...
-1
votes
0answers
11 views

ubuntu tora cannot connect postgresql [closed]

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
26 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
26 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
28 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 ...
-8
votes
1answer
50 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
0answers
12 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 ...
0
votes
4answers
41 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) { ...
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
22 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
0answers
15 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 = ...
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
27 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 ...
0
votes
1answer
19 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 ...
-3
votes
2answers
52 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
0answers
15 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
51 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 ( ...
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) ...
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
67 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
24 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 ...
0
votes
0answers
66 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 ...
-1
votes
1answer
39 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 ...
1
vote
1answer
47 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
2answers
69 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 ...
7
votes
8answers
423 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
0answers
89 views

C# - Emgu Cv - Face Recognition- Loading training sets of Faces saved to Access database as a binary in to EigenObjectRecognizer for Face recognition

I was having a hard time loading training set from Ms Access database in to the main form that does the Face Recognition. I saved the training sets with their names and ID in to the database as a ...
0
votes
0answers
39 views

Connection leak npgsql, does they fix it?

I am C# developer, working with Postgresql through Npgsql with NHibernate 3.*.*. And i have got connection leaks through when using "Robots"(realized with server cache callbacks) in my ASP.NET MVC 4 ...
-1
votes
4answers
61 views

PHP insert query not working

<html> <body> <?php $host = 'localhost'; $user = 'users'; $pw = ''; $db = '#######'; $connect = mysql_connect($host,$user,$pw) or die ("Could ...
0
votes
2answers
46 views

Cannot connect to SQL Server instance from web application but can from SSMS

I've got SQL Sever 2008 R2 Express installed and am able to connect to it with SSMS using (local) and Windows Authentication. However, when attempt to connect to it from an MVC Web Application ...
0
votes
1answer
46 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 ...
0
votes
1answer
46 views

Entity Framework - “incorrect connection string” error

I created a new model: public class AuthorDatacontext : DbContext { public DbSet<Author> Authors { get; set; } static AuthorDatacontext() { ...
1
vote
2answers
32 views

Connecting databases with java - driver Error [duplicate]

I'm trying to connect a java program I'm making about a university database that I created in MS Access. My code goes like this: package Uni; import java.util.*; import java.sql.*; ...
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 ...
0
votes
0answers
47 views

Two connections at the same time to a single sqlite database

I am using a connection to a SQLite database using Java. The problem is when the database is running in its application, my connection is stopped until the database is deactivated. How do I get my ...
1
vote
2answers
38 views

Entity Framework: Connect to an external database

I have created application under MS VS 2012 express. I am using Entity Framework to access local database SQL Server Compact 4.0. Everything works just fine: Web.config <connectionStrings> ...
0
votes
0answers
26 views

Sqlite database connection is closing on me

I have a database adapter in my web service that when created, opens a connection to a Sqlite database: public DatabaseAdapterJava(Database database) { try { ...
0
votes
5answers
53 views

Having sql connection open for a long time

I'm writing a program that generates Sitemaps. To avoid duplicates I'm using MSSQL Server to store links that are found. during this process It may read and write millions of links and the process of ...
-1
votes
0answers
27 views

ERROR com.inquira.client.tags.ContentDataTag - SQL Exception [closed]

2013/05/03 09:15:42 | 725194232 [http-8226-91] ERROR com.inquira.client.tags.ContentDataTag - SQL Exception 2013/05/03 09:15:42 | java.sql.SQLException: Incorrect syntax near ')'. 2013/05/03 ...
0
votes
0answers
23 views

Request time out even after setting the pooling option for connection string

Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Hi ...

1 2 3 4 5 42