How To Enable/ Disable Auto Reconnect in MySQLJuly 20th, 2007 What is auto reconnect in MySQL?
The MySQL client library can perform an automatic reconnect to the server if it finds that the connection is down when you attempt to send a statement to the server to be executed. In this case, the library tries once to reconnect to the server and send the statement again.
3 Tips To Significantly Speed Up BSNL Dataone Broadband ConnectionDecember 17th, 2006 In this article I will discuss 3 important tips to significantly speed up your internet access through BSNL Dataone broadband connection. Tip 1: One of the major problems with BSNL Dataone Broadband connection is the DNS servers they provide by default.
MySQL Tip: MySQL Server Has Gone Away Or Lost connection to server during query FixJuly 24th, 2007 A much dreaded MySQL error message during queries is "MySQL server has gone away". An alternative message is "Lost connection to server during query".
Solving pppoe: Timeout waiting for PADO packetsJune 6th, 2007 Our DSL link, provided by BSNL (aka World's crappiest broadband service), was down yesterday causing enormous hardship. However today when it came back up, I could connect it using Windows (yeah, we still have couple of spare laptops lying around) but not on Linux.
Two Biggest Downsides of Using Windows XP SP2 on Remote Machines and Their SolutionsDecember 1st, 2008 Do not tell me about Windows and its bugs. No matter what I try doing new, half the time is consumed in detecting the bugs and fixing them.
How To Append File Using SSHOctober 12th, 2008 Have you ever searched scp manual for ways to append a file using it? scp is an excellent command to rapidly copy files and directories to / from a remote location. Unfortunately it is of no help when you just want to append a file over ssh connection.
How To: Open Client Socket in Java With TimeoutJune 6th, 2006 Often we need to create a (client) socket connection in java but we do not want to wait indefinitely for the connection to open. We need a way to timeout socket connections.
I Don't Want to Restart My PC after Every Automatic Windows Updates - SolutionMarch 13th, 2009 Okay letting automatic updates wasn't enough. When they finish, you are prompted to restart your computer.
How to close all connections in HSQLDB (also prevents a locking defect)March 5th, 2005 I have noticed that despite closing all connections and exiting a standalone HSQLDB database, at least one connection still remains open. The defect is manifested in HSQLDB 1.7.3 and HSQLDB 1.8.0 RC 8.
How To Connect Broadband & EPABX on Same LineSeptember 24th, 2007 In small businesses you will often have the ADSL broadband and telephone line from the same connection. You may also need to setup an EPABX on the connection to share the phone line.
How To Solve Apache Ant java Task Execution ErrorsJuly 26th, 2006 I have seen myriad errors when executing java task. For example I have seen: javax.xml.parsers.FactoryConfigurationError?: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl? not found when executing the java task in jdk1.5.0
The problems with debugging the errors is that the commandline used by java task is not visible, even in verbose mode.
HSQLDB Database Connection Close Doesn't Write to Disk - SolutionJanuary 17th, 2006 HSQLDB, the famous fast RDBMS written in Java, introduced a new feature which affects code ported over from previous versions. From version 1.7.2, in-process databases are no longer closed when the last connection to the database is explicitly closed via JDBC.
How To Get Reliable & Affordable Broadband in IndiaJuly 29th, 2007 Broadband service in India is much less reliable than their counterparts in USA. While in USA, I used Pacific Bell 1.5 Mbps connection for 3 years without a single minute of downtime or any other problems.
Tips on Configuring (A)DSL ModemsOctober 20th, 2007 Modern DSL modems by default allows you to establish a DSL link through them to provide internet connectivity. The actual connection is handled by software running on your computer.
Tips on Downloading With Rsync Over Slow ConnectionMay 2nd, 2007 In the process of mirroring Fedora Core updates repository over a slow (256 Kbps) connection using rsync, I realized that the process can be extremely frustrating as you spend lots of time looking at the console, waiting for something to happen...anything. Then I found the magic option to show a progress meter - --progress.