Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
2k views

What's the best way to test SQL Server connection programmatically?

I need to develop a single routine that will be fired each 5 minutes to check if a list of SQL Servers (10 to 12) are up and running. I can try to obtain a simple query in each one of the servers ...
4
votes
3answers
943 views

odd jdbc connection hanging problem : network issues? How to fix?

One of our customers has a newish problem: the application grinds to halt. Thread dump shows that all threads are hanging on network IO in jdbc calls. We/I have never seen these 'network IO' hangs. ...
3
votes
3answers
6k views

QT MySql connectivity using Windows XP, Qt Creator 4.5.2(windows 32 bit)

Platform: Windows XP, Qt Creator Ide 4.5.2 MySql is setup here as well. I want to establish database connection with Qt and mysql. The line QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL"); ...
3
votes
6answers
22k views

How to Connect Database in Silverlight applications

I am a newbie in silverlight. and I want to know that how can we connect our application to a Database. I am using a SQL 2005 server as a Database. and I don't want to use Linq... so please suggest me ...
2
votes
1answer
86 views

MongoDB connectivity with PHP dropping after idle time

I'm building a webapp with MongoDB/PHP, and everything's going great... except one thing. My database connection is flaky. After X amount of time, when I refresh the page I get errors because queries ...
2
votes
2answers
330 views

Query SQL From Excel 2007 And Return Several Values

I'm attempting to take a small amount of data, about 200 fields in Excel and retreive data from SQL with that field in the where clause for each item. TABLE: ID Name Phone 1 Test1 1234 2 ...
2
votes
3answers
1k views

Extracting data from a database into a text field or text area in Java

I know that we can retrieve text from a text box or text area and then insert the data into a table. How can we do the opposite? That is, how to place all the data back into specific text fields or ...
2
votes
2answers
121 views

Example php code for connecting and getting a sql stored proceedure

Can any one give The Example php code for connecting and getting a sql stored proceedure
2
votes
1answer
2k views

How to show value printed by sql query in message box

I want to print a value that is returned by SQL Server. If NOT Exists(SELECT * FROM ItemList WHERE ItemName='txtItemNama') BEGIN INSERT INTO ItemList (ItemName) VALUES('txtItemNamea') ...
2
votes
3answers
18k views

How do I connect & administer an SQL Server database remotely over the Internet?

How do I connect to an SQL Server remotely and administer my database objects? I need to connect to my database located on the web hosting company's server. I have the server name, IP address, my ...
1
vote
3answers
44 views

Connecting to databases in C# : ArgumentException

I'm running Visual Studio Developer Preview 2011 on a Windows 7 x64 machine. I'm a beginning to learn C# and am having difficulties connecting to a database. I created a database with MS Access and ...
1
vote
3answers
46 views

Linux connecting to mysql PHP

I have been trying to connect to mysql all evening using PHP. I know for a fact the username and password are correct as I have tried 3/4 and I know the permissions are set correctly in the database. ...
1
vote
4answers
370 views

Checking database connectivity in JSP

How can I check the database connectivity in JSP. I want to print an error message if there is any problem occurs with the database connectivity. I m using the following code: ...
1
vote
3answers
82 views

Question regarding SQL connection in a web application

I have a doubt regarding the sql database connection that we open for performing CRUD statements on the database in the context of web application (a web store) in asp.net What is advisable to keep ...
1
vote
1answer
42 views

Getting error after installing sql server 08 Express edition

I have installed SQL server 08 express edition and then tried to connect using SQL server management studio, but getting below error: TITLE: Connect to Server Cannot connect to ...
1
vote
1answer
80 views

sql server 2008: configuration information

I have sql server 2008 installed on my dev machine. How I figure out things like, the name of the server, do I connect to it using windows auth or using sql auth. If I connect using sql auth what is ...
0
votes
1answer
25 views

jnlp: Reading properties file from server

I am launching application through jnlp, where i need to read the database configuration from server (Tomcat). Is it possible to connect to the host address or can i read properties file before jnlp ...
0
votes
0answers
27 views

unable to insert data to my access database

Whenever I try to insert into the access database from my asp pages it gives me following error: An error occurred on the server when processing the URL. Please contact the system administrator. ...
0
votes
0answers
36 views

Perl handle db connectivity loss during while(my $result = fetchrow_hashref) loop

I've been struggling with a perl script that I'd like to have run "forever" or until I interrupt it with a SIGINT. My problem occurs when/if you assume execution is inside a while loop, the database ...
0
votes
2answers
81 views

How To Establish A Connection To Database Using C# Application?

Im using Visual Studio 2008 . and wants to connect to database. My Application (in C#) is to develop a form acts like Image Viewer and to perform insert an image and delete an image , Also To Display ...
0
votes
1answer
121 views

Query regarding database connectivity in db4o

I'm creating a db4o object (namely Customer.yap) and if it is already created i just insert new objects into the existing object (namely Customer.yap) . For both these operations i'm just using: ...
0
votes
1answer
100 views

Can any one tell me how to have database connectivity for html5 for mobile application to store data on web server

for now i am trying for android device but i will also be using it for iphone,i am using eclipse editor..Thanx in advance.
0
votes
3answers
76 views

Connecting to a Database with Java

I'm very confused about how to connect my Java application to a database, any database. I'm not sure where to start. Could anybody provide for me a simple example that might help me along?
0
votes
1answer
89 views

PostgreSQL: Which connectivity uses psql tool of PostgreSQL

Does anybody know how psql accesses PostgreSQL database? What it uses odbc, jdbc or some native database library?
0
votes
1answer
247 views

Most efficient way to update a MySQL Database on a Linux host with that of an ASP.Net Form on Windows host?

My kind webhost (1and1) royally asked me to go elsewhere to do something like this. I have 2 sites. One of them was developed by a .Net programmer. Now I am contracted to implement a PHP site and ...
0
votes
1answer
79 views

About the connectivity to IBM database using JDBC in Java

I have a problem connecting to IBM (universal) database using JDBC. I wrote the code in Notepad using Java and I loaded drivers of IBM database i.e(driver name and connection URl). When I run the ...
0
votes
0answers
385 views

Connecting to Oracle 8g database from VB.net 2008

I have all the details to connect to a Oracle database on the network. I am able to connect to the Oracle database using Oracle developer express. How do I connect to Oracle db from VB.net. I added ...
0
votes
2answers
633 views

Mysql connectivity from POcket pc application using .netcf 2.0

We are developing an order taking system in PDA using C# in .netcf 2.0. So we are having mysql server as our back end. Is that the web service is the only way to connect mysql with PDA? Or is any ...