connection

Not inserting into database!

Code not inserting into MySQL Database!?!? Excerpt Register.php $register = mysql_query("INSTER INTO users VALUE ('','$firstname','$lastname','$username','$password_db','$dob_db','$gender_db')"); echo "Success!"; Connect.php <?php //connect $error = "Problem connecting to database. Please try again late...

Bluetooth socket connection

Hi How can i know if a BluetoothSocket is still connected to the endpoint? How can i detect if the socket has been disconnected by the endpoint? Thanks ...

JComException while connecting to a URL

jp.ne.so_net.ga2.no_ji.jcom.JComException: IDispatch::Invoke(0x52,1) failed HRESULT=0x80020009L. I am getting the above exception while connecting to an URL. I have no idea why my code is throwing such exception. Need help. Thanks in advance! ...

how can i manage connections in Indy ? (Delphi)

Hi , i am writing a simple client/server chat program with indy 10 (blocking mode) and there is a question that how can i manage connections ? for example imagine a user that is online on server , we must make a connection tunnel for future requests . In other words, when a user is online server should not need username and password for ...

Various connection time to SQL Server accross a LAN

I am connecting to a SQL Server Express 2005 on another PC on our company LAN. On my PC (which has Windows7) the connection is immediate. On our tester PC (who has Windows XP), the connection takes about 5 to 6 seconds every time. This is the same network and the same server. I am not talking about a connection through an application, ...

PHP MySQL connection

I'm been looking through the Internet for an answer for a long time. How could I control users and connections between php and MySQL. My question is, when we create a mysql database through php, actually we create the user in a user table in mysql. When I connect to the database, all the user we created is using same mysql user account t...

Can't connect to cassandra : NodeContext killing all pooled connections for session

When I try to connect to cassandra within my java application I receive the exception at the end of this message. I am using pelops library to access database. Database is working on linux and my development environment is on windos 7. Intresting line is WARNING: 10.0.0.7 NodeContext killing all pooled connections for session 44 10.0....

how to connect to a peer computer on same network using blackberry

Hey guys, i want to develop an application for my Blackberry smart phone that scans the WIFI network on which i am currently connected and show me a list of connected hosts (PCs), i also want to browse the files shared on those machine (obviously only those whom i am allowed to see) & transfer them to my device from the remote machine o...

Using a different Connection within Doctrine_Table in symfony 1.4 / sfMasterSlavePlugin

Hi all :) In my symfony project i'm working with doctrine for my data models. Also i have the sfMasterSlavePlugin installed to use different connections for different kinds of queries (writes vs. reads). Because of the small delay in mysql's replication my code is failing to fetch a freshly inserted record. To get around this problem i...

Device Manager fails to find Android debug USB connection.

I have tried with zero success to get a USB debug connection from a WinXP dev box to a brand X Android 1.6 tablet. I believe I had everything configured correctly on the Android and installed correctly on the dev box, but when the two are connected with a USB cable NOTHING HAPPENS; i.e. Windows finds no new hardware much less a new USB d...

How to disconnect a bluetooth connection (HTC Desire)

Hello everyone, I need to connect my android to a bluetooth device. I use the BluetoothChat sample from Google. I had some trouble to do this with a Google Nexus one, because the Nexus was making the connection but disconnects right after. I need to initiate twice time the connection as workaround (see connectionLost()). Now, it works...

Why with PHP hundreds of DB connections dont matter..but in C++ app they do?

In most web (PHP) apps, there is mysql_connect and some DB actions which means that if 1000 users is connected, 1000 connections are opened? But with C++ app it is incredibly slow...what is the main difference? Thanks ...

Binding parameters to OLEDB command throws error.

Hello fellows, I am using AS 400 OLEDB with .NET. It uses '?' instead of '@param to bind parameters with a command Now there is a situation where the command is like SELECT ... FROM (SELECT ... ROW_NUMBER() OVER(ORDER BY ColumnName) as RowNum FROM Employees e ) as DerivedTableName WHERE RowNum BETWEEN @startRowIndex ...

TableView - Tab Navigation - Connection Inspector Issue

Hey, I'm very new and im pretty confused. I have 3 tabs, using my tab navigation template. News Tab - > RssFunController(view) MAP - > SecondView Podcast -> ThirdView Ok my question is , I want to display a simply table with items in SecondView, I have created a NSMutableArray *listOfItems; in file RootViewController.h And in...

WCF: How to connect to service by IP:Port

I need to test WCF service, but have only one computer, so my service and client are running on the same machine. Here is the App.config of WCF Service: <host> <baseAddresses> <add baseAddress="http://localhost:8000/MyService"/&gt; </baseAddresses> </host> <endpoint address="" binding="wsDualHttpBinding" contract="...

How to connect to internet programatically?

HI, I'm building an Android application requiring internet connection, and I'm using ConnectivityManager to check whether the device is connected to internet or not. Now, what's the best strategy if it's not connected? Should I quit the application and tell the user to first connect to internet? or is there any way to ask the user if he...

C# connection becomes null

Hi I'm developing a class to manage the operations on a Mysql database. I have the following code: using System; using MySql.Data.MySqlClient; public class MysqlAccess { private MySqlConnection pCnn; public enum OperationType {Select = 1,Insert = 2,Update = 3,Delete = 4}; public MysqlAccess() { MySqlConnecti...

iPhone Objective-C: combining methods together.

Hey everyone, I'm a complete noob at objective-C, so this might be a very silly question to a lot of you. Currently, I have a view with a 'SignIn' button, which when clicked, activates a sigupUp IBAction that I have defined below. Basically, this method needs to make a JSON call and get back some data about the user. So, right now, my...

PHP: list files on ftp server?

howdy, can't get it done! <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FTP Download</title> </head> <body> <?php set_time_limit(300);//for setting $path='/userupload'; $ftp_server='202. …'; $ftp_server_port="21"; $ftp_user_name='al…';...

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. ...