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
3answers
100 views

java connecting to mysql database fails

I am creating a vaadin web application using tomcat and having an external database on another server. I am not able to connect to the external database no matter what. I have even created a new pure ...
0
votes
3answers
70 views

one base executeQuery method or one for every query

I've started creating a toDoList and I like to create a "DataMapper" to fire queries to my Database. I created this Datamapper to handle things for me but I don't know if my way of thinking is ...
2
votes
3answers
168 views

How to determine an existing oracle database connection in C#?

Assuming that I call the method below with the right credentials: private bool Connect(string username, string password) { string CONNSTRING = "Provider = MSDAORA; Data Source = ISDQA; ...
0
votes
1answer
106 views

VBScript: Connection to ODBC Fails with error message “Operation is not allowed when the object is closed”

I have the below code, which is throwing me an error "Operation is not allowed when object is closed". What am I missing here? Dim dbconnect, dbresults Set dbconnect = ...
1
vote
1answer
42 views

Reuse of OracleConnection object

I would to reuse a OracleConnection object for more queries so I wrote a simple class: public static class DbConnectionsManager { /// <summary> /// /// ...
0
votes
0answers
61 views

SQL database directory string not working - have to define full file path

I have created an application with an underlying database which needs to be put onto a CD as an exe. However, some of my SQL querys only work on the database when i use the full file path of the ...
0
votes
1answer
188 views

mybatis mapper xml: The content of element type “mapper” must match

I'm having a hard time getting my simple mybatis file to work. I have this file: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...
0
votes
1answer
23 views

Perl modules for connecting H2db

I have an perl code where we are reading .txt files but now inspite of .txt we want to read data from H2DB database. I tried to searching out and seems that no modules are available for that . Can ...
0
votes
1answer
19 views

Implementation Add Connection of Visual Studio

I want to create Connect To DataBase form(Something like Visual Studio 2012 Add Connection I find this code to find Connected server private void FillServerComboBox() { DataTable ...
0
votes
1answer
68 views

Oracle eclipse connection

I am absolutely new to oracle. I am using oracle 10g connection and just on experimental basis trying to connect to HR schema, through the database explorer. After much difficulty I figured SID, ...
0
votes
1answer
680 views

How to use the Google App Engine as a backend database for Android applications

I'm actually a beginner in android and needs a lot of help. I have made an app with embedded database and now want to put it onto some dynamic location. Have simple form of data (some addresses and ...
1
vote
1answer
54 views

PHP retrieving content of database

I have a database with a few tables in it. The table i'm working on has 6 columns in it, school_id, title, location, content, class_date and user_id The school_id is unique (ranging from 1-20) and ...
0
votes
0answers
78 views

createdb in PostgreSQL error [closed]

I'm trying to learn postgreSQL and create my first database but I keep running into an error when I try the createdb command. Here's a screenshot: http://i.imgur.com/usHXt3R.png I did some googling ...
0
votes
1answer
52 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
51 views

PostgreSQL installation as a user on Cygwin

I'm trying to install PostgreSQL on Cygwin as a user following the instructions given in the cygwin package installation: cygrunsrv -S cygserver initdb -D /usr/share/postgresql/data pg_ctl start -D ...
1
vote
1answer
123 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
46 views

SQL Server Connection

We have an Excel file from which it retrieves information from a SQL Server DB. Here is a snippet of the code: Provider=SQLOLEDB.1;Persist Security Info=True;User ID=mjone;Initial ...
1
vote
1answer
45 views

Cannot connect to Oracle using SID

I m having web application where i connect with oracle with spring my application is not working if i give SID in xml file xml file entry is <bean id="dataSource" ...
0
votes
0answers
162 views

Error code '80004005' when using classic asp to connect accdb file

I've been trying for quite a while now to connect an .accdb file to a HTML file using classic-asp. Below is the code ive got so far to make the bridge to this connection which is not working. ...
2
votes
1answer
87 views

Closing an open recordset produces a run-time error

I have an ADO recordset variable that is declared in the class module of a userform. The recordset is opened in the form's Activate event, and I am trying to close it in the form's Terminate event ...
0
votes
3answers
67 views

Why won't my php file insert data into my mysql database?

I have been having trouble getting my PHP file to insert data into my database. I have gone so far as making one simple script to put data into my database and it still isn't working. I'm hoping ...
0
votes
1answer
42 views

mysql cluster .net connector

I'm trying mysql cluster to use in a project for our customer. The configuration I setted up is the following: Hardware S.O. equipment Server1 - S.O. Windows 2008 R2 64bit Server2 - S.O. Windows ...
2
votes
0answers
31 views

Informix connection disappearing from Rails app

I'm connecting to an Informix database from a Rails app, and there are times where the app will die (requiring a restart it seems), with the following error message: Informix::DatabaseError: ...
0
votes
2answers
157 views

Detect if SQL Connection is using Alias (Configuration Manager)

I have a entry in SQL Server Configuration Manager>SQL Native client Configuration > Aliases Alias Name : CRM_APP Port : 5051 Protocol: TCP/IP Server: 10.10.10.10\MYSERVER I am connecting to SQL ...
0
votes
0answers
113 views

Oracle 10g TNS listener working but not working

My application is unable to connect to my local Oracle 10g database (Windows 7) but I cannot figure out which aspect of the configuration is wrong. I can simulate the connection problem using ...
0
votes
0answers
53 views

live database update android

This is not a typical question to a certain coding problem its a more like a design/implementation problem and i would like to hear some suggestions from someone that has done this before or someone ...
0
votes
1answer
66 views

ASP.NET Can't find stored procdure, but stored procedure exists

I am trying to upgrade a slightly modified version of aspdotnetstorefront from 9.0.3 to 9.3.0.0. I have installed the store on my local machine (Win 7, IIS 7.5, SQL Server 2012). When I run the site, ...
1
vote
2answers
34 views

Looking for an elegant way to copy cherry-picked objects from one database to another

I'm doing a database restore of specific objects that were destroyed. There's roughly a hundred of them. Is there an elegant way to perform this? Ideally, I'd love to do a command such as : ...
1
vote
1answer
68 views

when to use a db connection pool

I am working on a Java GUI and I often need to connect to the database,but I would like to only use the connection statements once,instead of writting the whole thing everytime i use it. I guess I ...
0
votes
1answer
53 views

C# and MySQL Connectors

Developing an application for a client that when users log off, it runs the program. The program so far grabs all the users internet browsing history and puts it to a html file, but they want to ...
1
vote
2answers
361 views

How to View Data from MS Access in Data Grid View?

I am new in C-Sharp, i am trying to access my Database from C-Sharp, i have written the following code, and i dont know what to write next to view data. I have searched this on net but didnt get much. ...
0
votes
0answers
25 views

ImportError: No localization support for language 'eng' in python

i am getting ImportError: No localization support for language 'eng' when using MySQL Connector Python. My Traceback is as below. Traceback (most recent call last): File \"DB_Module.py\", line 151, ...
0
votes
1answer
82 views

Multiple Database Users per function

We are exploring how SQL inject risks can be limited by only allowing key functions to perform duties within our rails application. I am the security officier, not a full time rails person. The ...
4
votes
2answers
114 views

SQL ERROR: Closed Connection in java

Connection is closing automatically even if i'm not closing in finally block. public String look( long id, String codeName, Connection conn ) throws SQLException { try { ...
0
votes
0answers
225 views

How to connect to SQL Server 2005 from netbeans 7.1

I would like to know if anyone has been able to connect to mysql 2005 from netbeans 7. If yes, please help me. I have an SQL Server 2005 database and netbeans 7.0.1. I wanted to create a connection ...
0
votes
1answer
81 views

PHP Webmatrix SQL Server Database Connection

How can I connect to MS SQL Server in PHP using Webmatrix 2? I already have an active connection in my Databases and is already in my web.config file. In C# the sample Code is: var db = ...
0
votes
1answer
171 views

Working with Sublime Text on local server

Sublime Text is good native text editor for web developers and other programmers. Using ftp feature is not user friendly, so my question is second: What is the best practices to work locally with ...
0
votes
1answer
95 views

Updating data on sql using java swing [closed]

I have a problem with my codes, dunno how to fix it, because I've been doing it over and over again... and same error occurred can anyone tell me what to do? Here is my codes : For my connection ...
1
vote
1answer
303 views

Can not connect to local database with c# System.Data.SqlClient

I have some problems with connecting to my local DB using c# System.Data.SqlClient. Information: DB parameters: Name:baza Host:localhost Instance:baza Port:3306 Schema:world My connection string: ...
1
vote
1answer
151 views

Using Built In SQL File in Visual Studio 2012

I am creating a windows application using Visual Studio 2012 and using its built in SQL Server, I have created the database and tables but unable to access the database. I am trying to insert values ...
0
votes
1answer
71 views

Rails: Multiple databases, same schema

I'm in the middle of a fictional scenario project where I have allowed multiple users for a company to log in, create records, and so on, who all connect to the one database. They can all records ...
1
vote
1answer
48 views

Xeround Reliability

I recently scaled up my application which uses a C#/.NET front-end and PHP scripts as web-crawlers as a back-end. Both sides of my application interact with a Xeround MySQL database (I am currently ...
0
votes
1answer
34 views

Error connecting to excel

I need to programmatically read Microsoft Excel file from a specific path. The following code results in an error message I have never seen before string sConnectionString = ...
0
votes
3answers
95 views

Error deploying my visual studio project in another computer

I had a deployed visual project 2010 connected to sql and I had installed it in another computer but the database can't connect to the final project. I want to install it in other computers that will ...
0
votes
2answers
45 views

Concrete5: How to access external asp.net database?

I am working on a project where I need to access external database (asp.net) for some content and display the content on Concrete5. How can I achieve this?
0
votes
0answers
38 views

How to make my databaseconnect class to allow for concurrent use

I have create a class called databaseconnect which is responsible for: connecting to database, method for filling combobox, method for authentification, method for insert, remove, modify,.... The ...
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. ...

1 2 3 4 5 43