Tagged Questions
The connection tag has no wiki summary.
20
votes
11answers
17k views
Updating from svn repository returns “Could not read chunk size” error
When updating from subversion repository using tortoise svn client I get error looking like that:
Could not read chunk size: An existing connection was forcibly closed by the remote host.
It ...
19
votes
1answer
432 views
In C#, is there any way to have an in-memory file linked as an in-memory SQLite database with System.Data.SQLite?
What I want to do is something along the lines of the following:
using System.Data.SQLite;
using System.IO;
//My SQLite connection
SQLiteConnection myCon;
public void ReadAndOpenDB(string filename)
...
18
votes
11answers
20k views
Graph Algorithm To Find All Connections Between Two Arbitrary Vertices
I am trying to determine the best time efficient algorithm to accomplish the task described below.
I have a set of records. For this set of records I have connection data which indicates how pairs of ...
18
votes
6answers
3k views
How do I connect to a database and loop over a recordset in C#?
What's the simplest way to connect and query a database for a set of records in C#?
13
votes
4answers
4k views
How can I programmatically remove the 2 connection limit in WebClient
Those "fine" RFCs mandate from every RFC-client that they beware of not using more than 2 connections per host...
Microsoft implemented this in WebClient. I know that it can be turned off with
...
13
votes
10answers
31k views
Oracle - What TNS Names file am I using?
Sometimes I get Oracle connection problems because I can't figure out which tnsnames.ora file my database client is using.
What's the best way to figure this out? ++happy for various platform ...
12
votes
1answer
2k views
When to close db connection on android? Every time after your operation finished or after your app exit
I have an android application that access local sqlite3 db frequently, for performance consideration so i always keep the connection open. But one of my friends recommended me to open/close the ...
12
votes
5answers
726 views
How to make two android devices to communicate through TCP
We want to establish TCP/IP connection between two android devices.
For now we thought that it would be simpler if we make the connection device to device. So there is no server that is between the ...
12
votes
4answers
10k views
In Java when does a URL connection close?
When does java let go of a connections to a URL? I don't see a close() method on either URL or URLConnection so does it free up the connection as soon as the request finishes? I'm mainly asking to see ...
12
votes
3answers
30k views
How to determine total number of open/active connections in ms sql server 2005
My PHP/MS Sql Server 2005/win 2003 Application occasionally becomes very unresponsive, the memory/cpu usage does not spike. If i try to open any new connection from sql management studio, then the it ...
11
votes
5answers
6k views
PHP - MySQL connection not working: 2002 No such file or directory
I tried to use WordPress, and it would never work. I have apache and mysql running, the accounts and database are all set up, there are no typos. So I tried to make a simple connection:
<?php
...
11
votes
6answers
10k views
How to check if internet connection is present in java?
How do you check if you can connect to the internet via java? One way would be:
final URL url = new URL("http://www.google.com");
final URLConnection conn = url.openConnection();
... if we got here, ...
11
votes
4answers
12k views
Why does an Entity Framework Connection require a metadata property?
I switched my DAL from using LINQ over to Entity Framework. Because my application connects to different databases depending on the current user, I need to dynamically create the DataContext at run ...
10
votes
3answers
2k views
iPhone Simulator - SImulate a Slow Connection?
Is there a way to slow down the internet connection to the iPhone Simulator, so as to mimic how the App might react when you are in a slow spot on the cellular network?
10
votes
3answers
6k views
Help troubleshooting SqlException: Timeout expired on connection, in a non-load situation
I have a server hosting a website of mine that has almost zero-traffic.
A few people (< 20) enter the site every day, and a few RSS readers are subscribed to some feeds we put out.
Almost every ...
10
votes
9answers
4k views
Best way to manage database connection for a Java servlet
What is the best way to manage a database connection in a Java servlet?
Currently, I simply open a connection in the init() function, and then close it in destroy().
However, I am concerned that ...
10
votes
2answers
3k views
Determining when an EDGE connection comes back after a dropout on an iPhone
I've incorporated Apple's Reachability sample into my own project so I know whether or not I have a network connection - if I don't have a network connection, I don't bother sending out and requests. ...
9
votes
3answers
103 views
Using Directory.Exists on a network folder when the network is down
My company's code base contains the following C# line:
bool pathExists = Directory.Exists(path);
At runtime, the string path happens to be the address of a folder on the company's intranet - ...
9
votes
2answers
185 views
Why does PDO print my password when the connection fails?
I have a simple website where I establish a connection to a Mysql server using PDO.
$dbh = new PDO('mysql:host=localhost;dbname=DB;port=3306', 'USER',
'SECRET',array(PDO::MYSQL_ATTR_INIT_COMMAND ...
9
votes
6answers
12k views
How to detect the physical connected state of a network cable/connector?
In a Linux environment, I need to detect the physical connected or disconnected state of an RJ45 connector to its socket. Preferably using BASH scripting only.
The following solutions which have ...
9
votes
5answers
7k views
Best Portable way to connect to SQL server using c++
I need some help into this problem:
Basically i want to connect my program which uses c/c++ to a SQL server database (MS SQL server express or standard edition) , because of our users demands the ...
9
votes
13answers
3k views
Artificially create a connection timeout error
I've had a bug in our software that occurs when I receive a connection timeout. These errors are very rare (usually when my connection gets dropped by our internal network). How can I generate this ...
9
votes
9answers
65k views
Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?
I'm getting a ConnectException: Connection timed out with some frequency from my code. The URL I am trying to hit is up. The same code works for some users, but not others. It seems like once one ...
8
votes
6answers
240 views
What is the best way to handle this: large download via PHP + slow connection from client = script timeout before file is completely downloaded
My client wanted a way to offer downloads to users, but only after they fill out a registration form (basically name and email). An email is sent to the user with the links for the downloadable ...
8
votes
6answers
18k views
Cannot connect to MySQL 4.1+ using old authentication
I'm trying to connect to a mySQL database at http://bluesql.net, but when I try to connect, it gives this error:
Connect Error (2000) mysqlnd cannot connect to MySQL 4.1+ using old authentication
...
7
votes
1answer
2k views
Python [Errno 98] Address already in use
In my Python socket program, I sometimes need to interrupt it with ctrl-c. When I do this, it does close the connection using socket.close() however when I try to reopen it I have to wait what seems ...
7
votes
3answers
8k views
Xcode 4 - Connecting Outlets
This page shows how easily I can connect outlets http://developer.apple.com/technologies/tools/whats-new.html in Xcode 4, but I can't get it.
I right click and drag an outlet from the new ...
7
votes
5answers
22k views
iPhone TCP/IP Socket Server/Client Program
I have read a lot of questions regarding this subject on this website however they didn't quiet answer my question. If you can't be ### about my goal or background skip to the question.
My Goal
Is ...
7
votes
7answers
1k views
Is it possible to use RMI bidirectional between two classes?
I want to share some information between two classes (A and B), which are running in different java programs. Instead of writing a whole communication protocol I want to use the java build-in rmi ...
7
votes
1answer
1k views
Best way to check OleDbConnection state
Apparently (MSDN) sometimes OleDbConnection.ResetState() does nothing, so even if the connection fails OleDbConnection.State will still be set to Open. I am looking for best workaround for this, so ...
7
votes
9answers
7k views
Go Daddy SQL Server 2005 Remote Connection
Is it possible to connect to my remote database hosted at godaddy from locally from my PC?
And if yes how?
I tried the connection string provided to me but it didn't work.
6
votes
4answers
276 views
MSSQL to MySQL data transfer
I am trying to transfer bulk data on a constant and continuous based from a MSSQL database to a MYSQL database. I wanted to use MSSQL's SSMS's replication but this apparently is only for MSSQL to ...
6
votes
1answer
110 views
Grails Connections behaving very differently in Integration test
We have a custom data source that extends BasicDataSource. We have overridden the getConnection method which does a couple things inside of it. When we run the webapp outside of testing, when we ...
6
votes
8answers
4k views
Java detect lost connection
When I'm using e.g. PuTTY and my connection gets lost (or when I do a manual "ipconfig /release" on Windows), it responds directly and notifies my connection was lost.
I want to create a Java program ...
6
votes
4answers
6k views
Using POSIX message queues instead of TCP sockets - how to establish “connection”?
I have client and server programs which now communicate via TCP. I'm trying out using POSIX message queues instead (in cases where the client and server are on the same machine, of course). My hope ...
6
votes
6answers
5k views
How do I retrieve a URL from a web site using Java?
I want to use HTTP GET and POST commands to retrieve URLs from a website and parse the HTML. How do I do this?
6
votes
4answers
6k views
Connect to Exchange mailbox with Python
I need to connect to an Exchange mailbox in a Python script, without using any profile setup on the local machine (including using Outlook). If I use win32com to create a MAPI.Session I could logon ...
5
votes
0answers
209 views
Rails produces “PGError: server closed the connection unexpectedly” after some timeout
I have the setup of my Rails app as following:
Rails: 3.0.5 (under Apache proxy) running on RHEL 5.6
Postgres: 8.4, running on Windows Server 2008
The 2 servers are on the same LAN.
The problem ...
5
votes
1answer
504 views
“Game Center account services are currently unavailable” on Simulator
I dont know since when this happened, maybe after the upgrade to Mac OS Lion and Xcode 4.1. But I am not sure.
I have quite a large project for iOS which is constrained by the Game Center / Game Kit. ...
5
votes
2answers
981 views
The underlying connection was closed: An unexpected error occurred on a receive
First, sorry for my en english, i'm french and it's well known that french people are pretty bad in foreign languages.
I'm here because i have a problem while downloading some files through ftp ...
5
votes
2answers
255 views
How to set your sensitive data in the application code when creating ADO.NET Model?d some tag a
I am creating a model for a database and was curious at the following statement in the ADO.NET Entity Model wizard where you have the options of choosing Yes or No as where to store sensitive data -
...
5
votes
4answers
146 views
A problem connecting to a MySQL DB using JDBC
Here's how I'm trying to connect:
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
} catch (Exception e) {
throw new DbConnectionException();
}
try {
connection = ...
5
votes
3answers
2k views
Java - Exceptions, and how best to retry when a connection is reset?
I have some code which connects to a URL to downlaod a file, and then performs some processing on it. However, sometimes I am receiving the error java.net.SocketException: Connection reset
I would ...
5
votes
2answers
2k views
How to connect and use Firebird db embedded server with Visual C# 2010
I was trying to use Firebird embedded server with Microsoft Visual C# 2010.
so here is what I done till now:
Downloaded Firebird .Net Data Provider (Firebird Client v2.5.2).
Downloaded Firebird ...
5
votes
2answers
5k views
Android HTTP User Agent
Can i ask how to get http_user_agent real device?
When i use WebView, i can get the real value like this:
[HTTP_USER_AGENT] => Mozilla/5.0(Linux; U; Android 2.2; en-gb; LG-P500 Build/FRF91)
...
5
votes
3answers
966 views
Is rollback needed if java.sql.Connection#commit() throws exception?
According to JAVA documentation, Connection#commit() can throw SQLException. My question is whether or not a rollback should still be issued in this scenario.
For example:
Connection con = null;
try ...
5
votes
6answers
1k views
Simulating Slow Internet Connection
I know this is kind of an odd question. Since I usually develop applications based on the "assumption" that all users have a slow internet connection. But, does anybody think that there is a way to ...
5
votes
1answer
707 views
How to force a connection to a a2dp bluetooth device by an activity or service
I'm using my Nexus One with Android 2.2 Froyo in my car dock. For the audio output I'm using a a2dp receiver which is hooked up to my car stereo.
Now, when I put the phone in the car dock it ...
5
votes
5answers
2k views
How to check FTP connection?
Is there a simple, fast way to check that a FTP connection (includes host, port, username and password) is valid and working? I'm using C#. Thank you.
5
votes
3answers
522 views
Redirect a TCP connection
I have something like a proxy server (written in java) running between my clients and the actual video server (made in c++). Everything the clients send goes through this proxy and is then redirected ...