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

1
vote
0answers
53 views

Visual developer/SQL [closed]

Hello I've recently installed microsoft visual web developer 2010 express after using it at uni all year. I was implementing a web application at uni and have know started to carry on with it on my ...
0
votes
2answers
40 views

Cannot connect to azure db via SqlConnection

I have a webiste hosted on Azure and I have uploaded my db to azure via SSMS 2012 and I can connect to the azure server and db in SSMS and when i create a connection to the db in Database Explorer and ...
0
votes
0answers
11 views

how to send mails in bulk with individual attachments

we have Ms exel 2007, & in our company we use to share the incentive files with our executives, every employee contribute 30-40 cases in my file, & we can not share there data with other ...
1
vote
1answer
38 views

visual studio 2010 installer

Need some help I have a problem regarding my program using vb10 it was connected to MYSQL Server 2005 i created my final project as an installer when i install it in other computer there was an error. ...
0
votes
3answers
66 views

Bridge Between Oracle and MS SQL Server

We are making an application which is machine dependent. Now we deploy our application on several client machines but problem is that every client have database from different vendors. Currently we ...
1
vote
1answer
42 views

Unable to Sync Tables in Django

Currently programming in Python Django 1.4. In my files I have written CREATE TABLE functions for productos and clientes to be created in the MySQL database. When I checked with python manage.py ...
0
votes
1answer
81 views

Rails connection pool size for WEBrick

I am getting ActiveRecord::ConnectionTimeoutError (could not obtain a database connection within 5 seconds (waited 5.000798 seconds). The max pool size is currently 1; consider increasing it.) ...
0
votes
3answers
467 views

Connect a C# MVC application to a remote SQL Server database

I have a SQL Server database located at http://192.168.10.3/MyDB. I have created a C# MVC application, and I need to know the steps to connect my application to the above database. Is it only ...
1
vote
0answers
536 views

ReasonCode=54. ERRORCODE=-4499, SQLSTATE=08001

I am getting following error message, A communication error occurred during operations on the connection's underlying socket, socket input stream, or socket output stream. Error location: ...
0
votes
0answers
218 views

Visual Studio 2012. Logon failure: unknown user name or bad password

Well this is very strange. I am able to connect to Sql Server 2008 from Management studio, but i am unable to establish connection from Visual Studio 2012 (website project). I always get the error: A ...
-1
votes
1answer
52 views

Why am I getting errors in a forum code? [closed]

I'm on heliohost.org, I got a forum code from http://www.phpeasystep.com/phptu/12.html and when I add the code: ############### Code <?php $host="localhost"; // Host name $username="MY ...
0
votes
1answer
127 views

python: sqlalchemy - how do I ensure connection not stale using new event system

I am using the sqlalchemy package in python. I have an operation that takes some time to execute after I perform an autoload on an existing table. This causes the following error when I attempt to use ...
3
votes
1answer
177 views

joomla 2.5 - oracle database in different server connectivity

Is it possible to connect to oracle database in a remote server in joomla 2.5 ? I need to set up a 2-way connectivity..1 with the db in my own server which is mysql(configured in configuration.php ...
1
vote
0answers
652 views

Android JDBC/JTDS connection to MSSQL

So I've looked at probably about 10 other threads, mostly here, but also other places and tried everything I can think of and still no go. I need to make a simple connection to my MSSQL server in my ...
0
votes
2answers
118 views

ASP.NET web application: 404 error in the remote server when a common database connection string is used

I'm working with a project in c# asp.net.. When i created individual connection strings for accessing the database, the program runs properly in the local and remote servers.. But when i wrote the ...
2
votes
1answer
72 views

using jdbc to query two databases to the same instance of sql server

In a Java standalone client server application (using Netbeans) I use a static method to connect to SQL server : but if I use the second connection I am getting the error : Exception in thread ...
-2
votes
1answer
64 views

SELECTing and displayig data from a database onto a form [closed]

I have an existing Database created in sql server compact edition (inbuilt in visual c# 2010). I need to select and display data from this database on to a form. My code provided gets the form ...
0
votes
1answer
49 views

Attach a remotely stored database

Is it possible to attach a database that is stored on a remote server because when I mapped a drive and tried to attach it in management studio, the drive does not show up as an option. I moved it ...
0
votes
0answers
76 views

Connect to database in android

I used the login code to login through simple android application , I've created mydatabase also created the whole java classes needed and the xml files, the result always gives me "Invalid username ...
0
votes
1answer
24 views

Managing multiple connections to a DB in Java

I have a JAX-RS server that is hosted by heroku. Currently, we create one Connection to the DB (at startup) and all SQL statements acquire a lock, use the connection and release the lock. As we ...
0
votes
0answers
14 views

Connecting with System iNavigator (Db2 Database)

I am getting error message while connecting to System iNavigator. It is displaying “The requested operation cannot be performed because the system connection was dropped". Please provide me a solution ...
1
vote
1answer
124 views

How DBConnectionPool will behave during Connection reset

In our project we are maintaining our own DB connection pool. For resolving the issue 'java.sql.SQLRecoverableException: Io exception most of people has suggested to use standard connection pool ...
0
votes
1answer
197 views

Not able to connect SQL Server 2008 Remotely

I have setup SQL Server 2008 Developer Edition. It automatically contains my system name which is sipl006 as Servername. My system IP is 172.27.28.44. My issue is it is not connecting remotely with IP ...
1
vote
2answers
153 views

PHP - Connect to two databases simultaneously on same server using ADBDB

Is it possible to open connections to two schemas on the same server using PHP 5.3/ADODB5/SQL Server 2008? Here's what I'm trying: // Connect to users database $connUsers = ...
0
votes
0answers
60 views

Change of Magento database configuration

My server on 1and1 recently changed form using Mysql4 to Mysql5. Database details for my Magento installation were also changed. I have edited the local.xml file in app/etc to reflect the new database ...
0
votes
2answers
349 views

How to restore ODBC connection after failure in MS Access

There is a MS Access application with tables on MS SQL Server linked through ODBC. When connection is lost i receive ODBC error 3146. After connection is restored physically i still receive ODBC 3146 ...
0
votes
2answers
112 views

Avoiding use of a global database handler variable in PHP, to someone who is new to object-oriented PHP?

FIRSTLY: This question is not a duplicate. Here's why. My previous question on the topic was closed as a duplicate of this (of all things). That was not in the least bit helpful whatsoever - I didn't ...
1
vote
0answers
45 views

Avoiding use of a global database handler variable in PHP, to someone who is new to OOP? [duplicate]

EDIT: This question is not a duplicate. Here's why. None of those answers were in the least bit helpful because I completely new to OOP - I need an answer tailored to my level of understanding. Just ...
1
vote
3answers
182 views

Raw SQL Insert into remote ruby on rails database

I am having trouble with inserting data into an sqlite development database. My app has 2 servers, one that scrapes browsers (browserscraper) and another that serves client requests. Each of these ...
-2
votes
1answer
209 views

display user specific data after login classic asp

I have this code for my project and i want the user to be directed to their account page which displays data specific to them. ie their list of suppliers. I realise i need to create a session ...
0
votes
4answers
55 views

Class loading error in Jdbc [duplicate]

I just created a Class Jdbc when i tried to run an error is shown. Exception in thread "main" java.lang.NoClassDefFoundError: Jdbc Here's the code import java.sql.*; public class Jdbc { public ...
0
votes
0answers
72 views

Web application using local (client) database?

I need to generate some reports based on the clients database values. I don't want to carry my software on USB pendrive, but also, I don't want my customers to have a copy of it. Downloading on site ...
2
votes
0answers
62 views

How to resolve the issue in database connectivity in PHP? [closed]

I tried running wampserver from USB drive. I used Uniform Server for it. Now it's up and running from USB, but giving problem in database connectivity giving error "Error in Connection". I couldn't ...
0
votes
3answers
252 views

java - DataSource for standalone application - no application server

I want to connect to a MySQL database from a standalone application. There is no application/web server. This page suggests that I should use DriverManager to create the connection. However this page ...
0
votes
1answer
173 views

unable to import MySql.Data.MySqlClient

I have created a website that uses a MySQL database, but when i put it online, it doesn't work anymore. in my class connection.vb that i use for my connection to my database i get the following ...
0
votes
2answers
201 views

Concurrent database connections- how is it counted

Our mysql hoster has a limit of concurrent db connections. As it is rather pricey to expand that limit the following question came up: Info: I have a web app (been developed by an external coder- in ...
0
votes
1answer
82 views

How to instal my application in client system when I am using server explorer without connection string

I have added a Linq to Sql class and In server explore I have attached my sql server name and database in my system. A connection string has created automatically in app.Config file. I am not writing ...
0
votes
1answer
100 views

Database class, a data access object can't use a method of the database class

I created database class and a database access object so I can somehow Implement a value object pattern. Here is some part of the database class and it's function: class Database { protected ...
0
votes
1answer
88 views

Permission denied when trying to forward ports in openshift

I am kinda new to openshift and I am trying to give it a try. While following this tutorial when running the rhc port-forward -a command. I am getting an Permission Denied error. Any ideas what I am ...
0
votes
1answer
154 views

My Spring application leaks database connections whereas I use the default Roo configuration

I am encountering an serious issue with my application. It leaks database connections whereas I use the default Spring Roo datasource configuration as follows: <bean ...
0
votes
1answer
109 views

Cheat application to connect to different SQL Server database

At work I wrote an application that processes data from a SQL Server database and outputs it in file format. Now I need to use it at home and since app has hard-coded connection string I've got a ...
0
votes
0answers
96 views

Where does Tomcat logs the logAbandoned information?

I have enabled the logAbandoned property as follows (in Spring): <property name="maxActive" value="2"/> <property name="logAbandoned" value="true"/> <property name="removeAbandoned" ...
0
votes
2answers
97 views

PHP: Close mysql connection when using external connection file

So most basic php/mysql examples show something like this (taken from W3 Schools as a laymans example): <?php $con=mysqli_connect("example.com","peter","abc123","my_db"); // Check connection if ...
0
votes
3answers
152 views

Do I need to close SQL Server connection with the using keyword?

I keep finding conflicting results for this question. Let's look at this C# code of running an SQL query: using (SqlConnection cn = new SqlConnection(strConnectString)) { cn.Open(); using ...
2
votes
0answers
97 views

What to do if database connection check fails in bootstrap?

I am developing an app using grails. In the bootstrap part, I am checking and initialising database connections. Suppose the database is not available due to some problem its wise to send notification ...
0
votes
1answer
417 views

pgAdmin III Guru Hint - Server Not Listening [closed]

When I connect to default localhost 5432, I get a blank "Guru hint - Server not listening message" Normally, it should show some messages but I get a blank one! Can somebody please tell me what's ...
0
votes
0answers
38 views

Access Current Open SQL Connection

My app is a WinForms database app. The connection to the db happens behind the scenes during startup using a connection string in settings. Works fine. The application synchronizes the local db to ...
0
votes
2answers
60 views

Python-Mysql: Multiple attempts to connect - Best Practice

I have following database connection code, initially I didn't have the while loop for multiple attempts but then I thought its better that I do multiple attempts before really fail it. My question is, ...
0
votes
1answer
280 views

Oracle XE stopped working. TNS listener refused connection

I'm working on an application which uses Oracle XE 11g as its RDBMS. It was working for several weeks but now I started to get an error message about the connection being refused. I restarted my ...
0
votes
0answers
221 views

C++ TCP server example code for receive data from phone gprs and store data in sqldatabase

I'm new to C++, currently I followed online source and made a TCP server. But I have no idea how to send data to it and how to code to store the data into a sqldatabase. Basic idea of the project is ...

1 3 4 5 6 7 43