Advertisement

09.10.2008 at 11:23PM PDT, ID: 23721918
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.2

java.net.BindException: Address already in use

Asked by priyapratheep in MySQL Server, New to Java Programming

Tags:

I am trying to do one program which copy data from sap to mysql.Data is in bulk quantity.

when i run the program i am getting exception of

java.net.BindException: Address already in use
        at java.net.PlainSocketImpl.socketBind(Native Method)
        at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
        at java.net.Socket.bind(Socket.java:553)
        at java.net.Socket.<init>(Socket.java:363)
        at java.net.Socket.<init>(Socket.java:178)
        at org.gjt.mm.mysql.MysqlIO.<init>(MysqlIO.java:114)
        at org.gjt.mm.mysql.Connection.<init>(Connection.java:229)
        at org.gjt.mm.mysql.Driver.connect(Driver.java:126)
        at java.sql.DriverManager.getConnection(DriverManager.java:525)
        at java.sql.DriverManager.getConnection(DriverManager.java:193)
        at mySAP.mysqlBean.getConnection(mysqlBean.java:52)
        at mySAP.mysqlBean.getRecordCount(mysqlBean.java:96)
        at zpoviewDataRetriever.chkRecordExist(zpoviewDataRetriever.java:80)

The exception line in the program is
      try {
                  Class.forName(DbDriver).newInstance();
                  con = DriverManager.getConnection(url + DbName + "?user=" + DbUser
                              + "&password=" + DbPassword);
                  stmt = con.createStatement();
                  
            } catch (Exception e) {
                  System.out.println("error in connction to sql in check record exist" + e);
            }
            
            
            
            try
            {
             rec_count = mysql.getRecordCount("sapMaterialMaster",
                        "Select count(*) from zpoview where EBELN='"+chk_ebeln+"' and EBELP='"+chk_ebelp+"' and ETENR ='"+chk_etenr+"'");
             stmt.close();
             con.close();
             
            } catch (Exception e) {
                  System.out.println("in record count" + e);
                  
            }

I am calling the above function,before inserting data into table i will check whether data is already there in table or not..most of time it is working fine with out exception but some times i am getting the above exception

server is linux based one.


any hints


Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
try {
			Class.forName(DbDriver).newInstance();
			con = DriverManager.getConnection(url + DbName + "?user=" + DbUser
					+ "&password=" + DbPassword);
			stmt = con.createStatement();
			
		} catch (Exception e) {
			System.out.println("error in connction to sql in check record exist" + e);
		}
		
		
		
		try
		{
		 rec_count = mysql.getRecordCount("sapMaterialMaster",
				"Select count(*) from zpoview where EBELN='"+chk_ebeln+"' and EBELP='"+chk_ebelp+"' and ETENR ='"+chk_etenr+"'");
		 stmt.close();
		 con.close();
		 
		} catch (Exception e) {
			System.out.println("in record count" + e);
			
		}
 
Loading Advertisement...
 
[+][-]09.10.2008 at 11:55PM PDT, ID: 22446942

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 11:58PM PDT, ID: 22446960

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:00AM PDT, ID: 22446972

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:03AM PDT, ID: 22446986

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:04AM PDT, ID: 22446992

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:08AM PDT, ID: 22447013

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:15AM PDT, ID: 22447044

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:19AM PDT, ID: 22447069

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:28AM PDT, ID: 22447111

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.11.2008 at 12:58AM PDT, ID: 22447220

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: MySQL Server, New to Java Programming
Tags: java,mysql,jco
Sign Up Now!
Solution Provided By: cmalakar
Participating Experts: 3
Solution Grade: B
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628