Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
102 views

C# start a scheduled task

I'm trying to write a simple form in c# that will run a scheduled task one some computers. Whet I have so far is: private void button_Click(object sender, EventArgs e) { try { ...
4
votes
2answers
91 views

Can I make a section of code time out?

I'm working with a class that makes a remote connection to a server. A problem that I'm running into is if the connection doesn't get a response, it'll wait until it does. This class does not have a ...
2
votes
1answer
208 views

Connecting to a remote database

Is there a framework or class that allows Cocoa and Objective-C to interface with a remote database, be it SQLite, MySQL, or another (though preferably SQLite)?
2
votes
6answers
226 views

Getting a permission error when trying to connect to sql database

I have a sql server on a dedicated machine, running SQL 2008. I have the IP of the box, a database setup on it. I've built a small script that just does a connection test, and when I run it, I get ...
2
votes
3answers
1k views

Connect database from other computer

I'm using PHP with MySQL database. The PCs are having a network to each other. My problem is I want to connect to the MySQL database on another computer. I want to store data on that MySQL database ...
2
votes
2answers
1k views

Php - Connecting to remote database very slow

I have a new VPS server, and I'm trying to get it to connect to another server at the same ISP. When I connect via mysql's command line tool, the connection is very fast. When I use PHP to connect ...
1
vote
1answer
41 views

Cannot establish connection to SQL Server

I am trying to access SQL DB that is located on my computer from an application that is located on a server (has IIS7). I set the ConnectionString in the WebConfig with the IP of my computer and I ...
1
vote
2answers
370 views

Connecting to a SQL Server using Entity Framework 4

So on my development machine I have SQL Server Express and Visual Studio installed. I finished creating the application and everythings working. Here is the connection string in the App.config file: ...
1
vote
1answer
47 views

setting-up oracle-xe

I installed oracle-xe into my virtual box that running with Fedora 13 successfully. Although I can ping my virtual machine, I can not connect the database from outside the box. Do I have to make some ...
1
vote
2answers
461 views

SQL Query across two connections?

I have a stored procedure that runs against a local database, and fills a temp table. I'd then like to connect to a remote database and query it based on the values of the local temptables. Is that ...
0
votes
1answer
16 views

Connecting to Jira remotelly Using Netbeans or other client tools

I am using Atlassian JIRA™ (Professional Edition, Version: 3.0.3-#75 and Netbeans IDE 7.1 But when trying to validate a connection to Jira from netbeans it gave me this error "Jira RPC services are ...
0
votes
1answer
33 views

Connection to Vps [closed]

I want connect to my vps and edit a text.txt file. I want only pointers in the right direction, but am happy if you can give more information.
0
votes
2answers
67 views

Cannot log in using SQL authentication ONLY from a remote server

I am trying to connect to SQL Server 2008 from a remote server using 'sa' username and its password (I can log in normally with this username and password from my own computer - so "SQL Server and ...
0
votes
2answers
169 views

connecting my WP7(win phone 7) application to remote DB

I want my WP7 application to fetch data from the DB; so it sends the query as string, the server execute the query, then send the result back. how can I do that? whatever you can do for me I am so ...
0
votes
2answers
100 views

SQL Server Express - Remote Connection continues to fail

I have been unable to configure my SQL Server Express 2008 to allow remote connections. I followed the instructions from this guide: ...
0
votes
1answer
51 views

Ubuntu refusing every connection, after massive permission meltdown in /etc

This morning, while trying to migrate some files from my test server to my live server; I made a horrible mistake. I was trying to pull my /etc/apache2 from the sandbox, and put it live, so I was ...
0
votes
3answers
79 views

Logging with a user in a remote MySQL database

How to log with a diferent user in a MYSQL remote database? Here's what I've done: Logged as root in the MYSQL: 'create user 'user'@'%' IDENTIFIED BY 'password'; 'grant select on *.* to 'user'@'%'; ...
0
votes
0answers
86 views

MySQL: Find out if bind-adress is set

Is there anyway to figure out which bind-address value a MySQL server is running on? I've tried setting it via a freshly created my.cnf, and placing it in a couple of locations throughout my MAMP (not ...
0
votes
1answer
99 views

MSSQL 2005 SQLAgent Triggers

I need to set up a MSSQL trigger to connect to a remote mysql linux server and insert data into a table. Is there a way to do this? I'm leaning towards triggers rather than scheduled tasks ...
0
votes
1answer
267 views

Connecting to a local SQL server from a website

We have a small network behind a firewall (WatchGuard XTM 2 series) and network switch. On our network we have multiple instances of SQL server, but 1 in specific that I would like to be able to ...
0
votes
1answer
287 views

Objective C write to Remote URL

Ok, so I have the correct username / pass for a remote host, and I have a NSURL Object referring to the file on the server. How can I possibly write data to that server via Objective-C? I cannot find ...
0
votes
2answers
955 views

How to connect to MySQl db on linux server using toad?

How to connect to MySQl db on linux server using toad? what i should give on host? i get the error Can't connect to MySQL server on 'tinywall' (10061)
0
votes
1answer
173 views

Db2: no available conversion for the source page

I'm usind db2 8. Try to connect to the database (on the remotee computer, using vpn). While connecting I have an error: SQL0332N There is no available conversion for the source code page "1251" to ...
0
votes
2answers
8k views

How can I connect to Sql Server 2008 remotely using an IP Address?

When I publish my project clients will need to be able to setup the initial configuration, and part of that is the Sql Database Connection. I have an instance of Sql Server 2008 running on my system ...
0
votes
1answer
181 views

Connecting to a remote host syntax

In c# when I use the code : public System.IAsyncResult BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) I declare the EndPoint with the ip-address of the ...
0
votes
1answer
1k views

SQL Server 2008 remote connection only works once

When I connect to the SQL Server 2008 remotely it only works once, after that the server hangs. The service cannot be stopped or restarted and when trying to connect again it gives a 'Timeout' error. ...
-3
votes
2answers
200 views

How to get Remote machine OS version in perl without using third party tool [closed]

I have requirement where in I have to find OS running on remote machine in perl. The machine can be running on any OS from windows, linux to aix. I have seen few solutions but unfortunately all ...