New answers tagged connection
0
Apparently, this was my fault. I had opened a JDialog to get the user input and was sending the message from the JDialog before disposing of it. And, when the JDialog was disposed of, then apparently that caused the close. When I removed the write from the JDialog close method, then it closed the connection.
0
Your sinatra is listening on localhost:4567, instead of 0.0.0.0 so it's only available for localhost.
0
0
To communicate with the remote databse, you require web service which can fetch data from or suit data to remote database.
I am not sure about which web platforms are you using currently but I would suggest you to go with REST with JSON.
0
How about a simple web service in the middle?
It helps to prevent you putting database username/pw directly in the app too.
App -> Http requests -> Web service -> Database
The Http requests can be done via Android HttpClient
The web service can be in php for example. (There is a lot example for php to database on google.)
0
I had this issue but with the Postgres driver and I'm using Eclipse. If you're using Tomcat 7, try adding the JAR file to the lib folder in your Tomcat directory. That worked for me. I didn't have to use Class.forName() or put the JAR in my classpath. I hope this helps you.
0
Just use 127.0.0.1 loopback address for testing your initial socket code. Server bind()s and listen()s on some known port, client connect()s to it. Once you figure out that setup you can move on to routing between real addresses.
1
HttpSession is where user info should be stored (with some concerns).
In your case, where you seem to have many different web applications, each of them will have a different session, and you will need to update all of them.
I prefer another approach (and this is a personal opinion, which can be discussed) which is based in the ThreadLocal class.
You can ...
0
/* RegistrationDAO*/
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.tcs.ignite.connectionname.DAO;
import com.tcs.ignite.connectionname.bean.Register;
import com.tcs.ignite.connectionname.util.Eyeconnection;
import ...
0
1) After you call delete your array looks like this -
[[1, 1], [2, 2], undefined]
The length is still 3. This is expected behaviour.
2) Posting this much code is not helpful. My JS skill is non-existent. I answered your question with some Googling and the following code -
items = [[1,1],[2,2],[3,3]];
delete items[2];
console.log(items);
...
0
This should work:
require "sinatra"
require "sinatra/config_file"
config_file 'path/to/config.yml'
DB = TinyTds::Client.new(
:username => settings.name,
:password => settings.password,
:dataserver => settings.hostname,
:database => settings.database
)
get '/' do
@result = DB.do_stuff
haml :index
end
What I would suggest ...
0
There is probably a faulty solder joint, board trace, or loose wire. This is most likely not a software problem.
1
How's your SqlServer set up? If the server is setup to use integrated security, you really don't need a username/password as Chris pointed out. In that case, the connection string in your web.config <ConnectionString> and <AppSettings> sections should look like
Data Source=.\SQLExpress;Integrated Security=True;User ...
0
Neither of those are recommended, and can actually be dangerous.
Instead, use a Stopwatch class to measure elapsed duration. Reference documentation here.
0
Ideally, the connection string should have been externalised so that it could be modified easily. If it's more of a policy constraint on IPs then I think whichever way we do it; it could still be considered a violation. Anyway, I'm assuming you have already given it a thought.
On any OS you have a HOSTS file that can be used to override DNS name resolution. ...
1
Your main problem is assumptions.
You are assuming that there is no connection passed, judging by indirect consequence.
But a programmer should be always logically correct in their reasoning.
Talking of connection? Verify the very connection. var_dump($con) in the constructor. var_dump($this->con) in the method. If it fails - only now you can blame ...
1
If you are using SQLExpress, and you have SQLExpress installed locally using the default instance, you don't need to worry about usernames/passwords for the database. DNN will attach the MDF file in the app_Data folder automatically.
If you are using another INSTANCE of SQL, than you will want to create the Database, and then associate a username/password ...
1
If you are going to have many (hundreds) of queries per second then implementing a connection pool is the way to go. See the answer to this question for more details. However, if you a Java novice (we all were one day!) then I don't imagine you will be needing this requirement, and probably will struggle to implement it.
Instead, the simple pattern of ...
0
Unless the mysqld service is running the mysql.sock file is not present in the directory /var/lib/mysql; Please start the mysqld using service mysqld start as root user;
and then run mysql from shell to start the mysql database; This worked for me with same error message;
1
That depends. It seems that you're waiting for user input before going from Confirmation to Phase1 and/or Phase2. That may take a long time, so it's possible the connection times out (default timeout is 15 seconds). In this scenario it's preferable to close the connection in Confirmation and re-open it after the user made his choice.
OTOH, in ...
0
5 Minutes is a little short for the ping time, can you configure the server to hold the connection longer? 30 minute ping or higher would be ideal. Here is an example of an application that holds a background tcp connection and will wake up the device from a deep sleep on incoming tcp traffic. https://github.com/schwiz/android-websocket-example
0
you should do something like this
private Connection conn;
public Connection getConn(){
if(conn == null || conn.isClosed)
conn = DriverManager.getConnection(server, user, pass);
return conn;
}
in the class you gonna use the connection... you always need to close the connection it´s a good practice and your database gonna thank you
0
First of all it is not a good idea to use root as the control user as root user has privileges more than needed by the control user. Create a MySQL user to be used as the control user as described here and add the username and password to the config file.
1
There is nothing wrong with creating an object to manage your connections, however, connections should be opened and closed and can be used in multi-threaded environments, so having a static connection is not a good idea. For a method that needs a connection, get a connection use it, close it. Even if you are not using it in a multi-threaded environment, the ...
1
The "Connections" status variable just refers to the
The number of connection attempts (successful or not) to the MySQL server,
and not the number of active connections.
Here is the link: http://dev.mysql.com/doc/refman/5.1/en/server-status-variables.html#statvar_Connections
To get the number of open connections, check the 'Threads_connected' ...
0
As you can see from logs, redis tries to communicate with a client that has closed its connection.
Thats probably because some of your client are not closing the connection with redis after they are done with it.
This can eventually lead redis to run out of connections (depending on your connection limits and the amount of traffic you have)
An easy ...
1
As I'm learned, the Firefox doesn't know if I cut the network connection. So I've created a little XMLHttpRequest (XHR) to set a Boolean:
var netOnline;
function createXMLHttpRequest() {
return Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
.createInstance(Components.interfaces.nsIXMLHttpRequest);
}
function issueRequest() {
...
0
Odd question, but have you tried applying a password to the database? Depending on the version of MySQL, I have had some issues with leaving the root password unassigned (on local machine you can be safe and just assign 'root' as the password as well). Another option would be to create a user account with permissions and try connection with those ...
1
For this you need to have following permission in your manifest.
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
0
https://developer.mozilla.org/en-US/docs/Online_and_offline_events is what you're looking for.
And now I'll just ramble to get beyond 30 chars, thanks stackoverflow.
0
There are couple of exceptions which could be thrown during performing IO Operation and you should handle them gracefully here is complete list of exceptions extended by IOException http://developer.android.com/reference/java/io/IOException.html
you don't need to handle all of them but few of them, you can delete your file in case if corrupt file is ...
0
The above works.
Had to stop/start the mongod server
0
This website contains good information for setting up connection string. There are so many options I usually have to turn to a reference to get it set up correctly.
3
You are using SqlCeConnection not a SqlConnection
This class (SqlCeConnection) is for Sql Compact Edition where the syntax rules of the connection string are different. For example:
Data Source=MyData.sdf;Persist Security Info=False;
Instead your connection string is for a Sql Server or Sql Server Express.
So, if your target database is a SqlServer db as ...
0
Instead of Data Source, try Server, e.g:
string connectionString = "Server=adamssqlserver;Database=master";
0
Try following:
public boolean checkOnlineState() {
ConnectivityManager CManager =
(ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo NInfo = CManager.getActiveNetworkInfo();
if (NInfo != null && NInfo.isConnectedOrConnecting()) {
return true;
}
return false;
}
dont forget the ...
0
What are the advantages of using one over the other? Should I always stick to Secure or should I go for insecure?
The only advantage in using insecure, is that you don't prompt the user when creating a communication channel (this one would be an easy prey "Man in the middle" attacks), but that doesn't mean that it will always work. Here's a question ...
0
Try to use the same User-Agent then your browser.
System.setProperty("http.agent", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1");
2
Pooling connexions is definitely a good idea if you're trying to improve performance. Opening connections can be costly so it's better to keep them alive.
I'm not sure what you mean by "live java server", if you're in a Java EE server there should already by a connection pool implemented in it and you could use it.
There are many for plain JDBC pools, for ...
0
CDMA comes in several flavors. Assuming your device has a single radio, it comes (basically) in CDMA-1X and EvDO flavors. CDMA-1X is using the old circuit-switched network to move data around. Thus, when you start a voice call, you just took away the pipe for the data. The switches can handle it by "putting your data stream on hold", but you do lose the ...
0
"Unable to connect" sounds like a blocked connection attempt due to a closed/filtered port. Check if you can actually access the port on the remote server:
telnet mysql.collegename.edu 3306
If the database is listening on a non-default port you need to add the port to the connection string:
...
0
That error message looks like a generic one from the browser. If refreshing the page doesn't work, check the ErrorLog.txt file to see what the problem might be: http://docs.marklogic.com/guide/admin/logfiles#id_22670
If the log doesn't contain an obvious problem, the next step is to contact support.
1
Did you try to refresh after waiting a minute?
It is not unlikely MarkLogic had to restart for some reason. Normally it warns about this, and shows a automatically reloading page, but sometimes it initiates the restart quicker than it can show the page, and the browser ends up showing a failed to connect message like above. That isn't harmfull, just wait ...
0
It seems you have not restarted the webserver after install of php-mysql. Please restart the webserver it should work.
I spent two hours debugging that and the simple solution was restart
0
My guess is that you need to wrap the VALUES clause results in single quotes as the SQL you are generating will be invalid.
VALUES ('" + textbox1 + "')
Brackets are only required when referring to table or column names. Not when you're referring to string literals.
0
I found the solution:
What you need are a set of jar-files that are provided with your specific installation of Progress OpenEdge. These files, which are located in a folder called "java", are not commonly available on the internet and they should meet the exact version that you are using. If necessary, you need to contact your database provider. Use these ...
0
Perhaps, your connection was closed due to timeout.
You can make use of Connection#isValid in order to verify whether or not your connection is still open.
You may take a look at Connection timeout for DriverManager getConnection. There are several good tips listed.
Also, You may consider the use of Connection Pool in your code. Apache commons is a good ...
0
Dmitri, Just change require_once ('dogs.php'); to require ('dogs.php');
The problem is that you requires the dogs.php file everytime you call the function, however ,as you might know, require_once only calls a file once per execution time. Just change it and should work fine.
Cheers,
0
You may want to (for example) add a servlet or web-service to your web-application that will interact with your previously created function library, and your android app can send requests over network to those servlets/services.
0
Although I disabled before, somehow windows firewall was opened, and it was blocking phone's connection requests.
Top 50 recent answers are included





