Link to home
Start Free TrialLog in
Avatar of priyapratheep
priyapratheep

asked on

com.mysql.jdbc.CommunicationsException: The driver was unable to create a connection due to an inability to establish the client portion of a socket.

HI
i am doing in program(java), which check the database if the record is already there...if the record is already there then program will update the table and if the record is not there it will update the table.

for checking the table whether the record is there or not i am using the following code
 public int chkRecordExist(String chk_mpn, String chk_region)
          {
              
              Connection con1 = null;
              Statement stmt1 = null;
              ResultSet rs;

              int rec_count = 0;
              try
              {
                    con1 =  connections();;
                      stmt1 = con1.createStatement();
              }
              catch(Exception e)
              {
                  System.out.println((new StringBuilder("error in connction to sql in check record exist")).append(e).toString());
              }
              try
              {  
                    
                    chk_mpn=chk_mpn.replace("\"", "");
                    chk_region=chk_region.replace("\"", "");
                    
                  String getCountQuery = "select count(*) from inbound_to_future where MPN = '"+chk_mpn+"'and Region = '"+chk_region+"'";
                  System.out.println("record count query"+getCountQuery);
                  for(rs = stmt1.executeQuery(getCountQuery); rs.next();)
                        rec_count = rs.getInt(1);

              
                  stmt1.close();
                  con1.close();
              }
              catch(Exception e)
              {
                  System.out.println("in record count");
              }
              return rec_count;
          }
      

after running some set of data i am getting error of
com.mysql.jdbc.CommunicationsException: The driver was unable to create a connection due to an inability to establish the client portion of a socket.

This is usually caused by a limit on the number of sockets imposed by the operating system. This limit is usually configurable.

For Unix-based platforms, see the manual page for the 'ulimit' command. Kernel or system reconfiguration may also be required.

For Windows-based platforms, see Microsoft Knowledge Base Article 196271 (Q196271).
I understood that it is because i am opening and closing the connection many times in short interval of time...

can anybody give me suggestion to do this....that is to check the table whether the record is already there or not...
iattach my program with this


import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.sql.*;
import java.util.StringTokenizer;
 
public class UloadData {
 
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		UloadData uploaddataObj = new UloadData();
		uploaddataObj.uploadToTable();
	}
 
	 public int chkRecordExist(String chk_mpn, String chk_region)
	    {
	        
	        Connection con1 = null;
	        Statement stmt1 = null;
	        ResultSet rs;
 
	        int rec_count = 0;
	        try
	        {
	        	con1 =  connections();;
			    stmt1 = con1.createStatement();
	        }
	        catch(Exception e)
	        {
	            System.out.println((new StringBuilder("error in connction to sql in check record exist")).append(e).toString());
	        }
	        try
	        {   
	        	
	        	chk_mpn=chk_mpn.replace("\"", "");
	        	chk_region=chk_region.replace("\"", "");
	        	
	            String getCountQuery = "select count(*) from inbound_to_future where MPN = '"+chk_mpn+"'and Region = '"+chk_region+"'";
	            System.out.println("record count query"+getCountQuery);
	            for(rs = stmt1.executeQuery(getCountQuery); rs.next();)
	            	rec_count = rs.getInt(1);
 
	         
	            stmt1.close();
	            con1.close();
	        }
	        catch(Exception e)
	        {
	            System.out.println("in record count");
	        }
	        return rec_count;
	    }
	
	public void uploadToTable() {
		Connection con = null;
		Statement stmt = null;
		ResultSet rs;
		String chk_mpn="";String chk_region="";
		try
		{
			con =  connections();;
		    stmt = con.createStatement();
		
		} catch (Exception eee) {
			System.out.println("error in connection " + eee.toString());
		}
		
	
        int i=0;
String thisLine = "";
		try {
			FileInputStream fin = new FileInputStream(
					"D:\\futureElectronics\\temp\\future.csv");
			BufferedReader myInput = new BufferedReader(new InputStreamReader(
					fin));
			
			while((thisLine = myInput.readLine()) != null) 
            {
             int counter = 0;
             i=i+1;  
             StringTokenizer tk = new StringTokenizer(thisLine, ",");
             String data[] = new String[tk.countTokens()];
             while(tk.hasMoreElements()) 
             {
                data[counter] = (String)tk.nextElement();
               
               
               if (counter==2){
            	   String chk_mpn1=data[counter];
            	//   chk_mpn=chk_mpn.replaceAll("\\s+$", "");
            	   chk_mpn=chk_mpn1.replaceAll("\\s+$", "");
               }
               if (counter==3){
            	   chk_region=data[counter];
            	   chk_region=chk_region.trim();
               }
               
               counter++;
                }
             String PartnerName=data[counter-6];
             String ManufacturerName=data[counter-5];
             String MPN=data[counter-4];
             String Region=data[counter-3];
             String ATS=data[counter-2];
             String SOQ=data[counter-1];
             
             PartnerName=PartnerName.replaceAll("\\s+$", "");
             ManufacturerName=ManufacturerName.replaceAll("\\s+$", "");
             MPN=MPN.replaceAll("\\s+$", "");
             Region=Region.replaceAll("\\s+$", "");
             ATS=ATS.replaceAll("\\s+$", "");
             SOQ=SOQ.replaceAll("\\s+$", "");
             
                
             PartnerName=PartnerName.replace("\"", "");
             ManufacturerName=ManufacturerName.replace("\"", "");
             MPN=MPN.replace("\"", "");
             Region=Region.replace("\"", "");
             ATS=ATS.replace("\"", "");
             SOQ=SOQ.replace("\"", "");
                                      
             String Q="INSERT INTO inbound_to_future(PartnerName,ManufacturerName,MPN,Region,ATS,SOQ) VALUES ('" + PartnerName + "','" + ManufacturerName + "','" + MPN+ "','" + Region+ "','"+ATS+"','"+SOQ+"')";
             String QU="update inbound_to_future set PartnerName = '"+PartnerName+"',ManufacturerName ='"+ManufacturerName+"',MPN='"+MPN+"',Region='"+Region+"',ATS='"+ATS+"',SOQ='"+SOQ+"' where MPN='"+MPN+"' and Region='"+Region+"'"; 
            
             
             
             int tot=chkRecordExist(chk_mpn,chk_region);
             
             
             
             if (tot>0)
             {
            	 System.out.println("update qery"+QU);
            	 stmt.executeUpdate(QU);
            	 
            
             }
             else
             {
            	 System.out.println("Insert qery"+Q);
            	 stmt.executeUpdate(Q);
            	
     		 
             }
 
     		
     		
            } 
		} catch (Exception eee) {
			System.out.println("error in File Reading " + eee.toString());
		}
	}
 
	public Connection connections() {
		Connection con = null;
		try {
			
			//Class.forName("org.gjt.mm.mysql.Driver").newInstance();
			Class.forName("com.mysql.jdbc.Driver").newInstance();
			con = DriverManager
					.getConnection("");
			
 
		} catch (Exception eee) {
			System.out.println("error " + eee.toString());
		}
		return con;
	}
	public void  closeConnections(Connection con) {
		try
		{
		con.close();
		} catch (Exception eee) {
			System.out.println("error in closeing connection " + eee.toString());
		}
	}
}

Open in new window

Avatar of Kevin Cross
Kevin Cross
Flag of United States of America image

Where are you passing the location of you MySQL server and the proper credentials?  Hopefully you just omitted in this post to hide details, but just make sure in your real code you are actually connecting to a MySQL server using a username and password with enough rights to do what you need.
Avatar of priyapratheep
priyapratheep

ASKER

Obviously i should remove the userid and pwd since i am goint to post in a fourm....
this is a working code where i remove userid and pwd
i solve my problem by giving sleep at chkRecordExist()

but it is not a proper way right ?....

my exception is becuase of frequent opening and closing of connection....

any suggetions regarding this?

before inserting or updating records should check record is already there or not...any other idea to do this

any suggestions pls?

usually how people will check data is already in table or not while bulk updations?
Couple of things:
+For checking record exists, I would say this is up to you but probably unnecessary if you have a primary key defined.  Make the combination of those two values unique together so the database will reject duplication.
+If you still want to check, open one connection at the beginning of bulk update/insert so that calls to the this function don't keep openning new connection.
+If you prefer this way, ensure that you close connection in a finally block.  If your code gets an exception, it will not close the connection as it is in the try block with rest of code.  Move it to the finally block and you should be fine as you close code has a try on it so if connection already closed at that point or doesn't exist, it won't matter.
first thing i cant use since if there is record exist then i should update the field..not to quit...ok if i put my update statement in exception block then if really a excetion came then it will update right?

here also i opened connection for updation and i am closing that at the end of bulkupdation/insertion.while on checking only i am opeining and closing the connection...pls check my code...

anyway thanks for the suggestions

pls advice me what to do? and have a look at my code....
ASKER CERTIFIED SOLUTION
Avatar of Kevin Cross
Kevin Cross
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial