<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: The method get?nt(int) is undefined for the type ResultSet in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219941#M14546</link>
    <description>Hi,
&lt;BR /&gt;Pls post the job screen shots for easy understand.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Kumar.talend</description>
    <pubDate>Fri, 20 Feb 2015 13:56:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-02-20T13:56:54Z</dc:date>
    <item>
      <title>The method get?nt(int) is undefined for the type ResultSet</title>
      <link>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219940#M14545</link>
      <description>Hi&amp;nbsp;
&lt;BR /&gt; Talend Version TOS_DI-Win32-20141207_1530-V5.6.1
&lt;BR /&gt; Jdk :Java Se development Kit 7u75
&lt;BR /&gt; java: java 7u75
&lt;BR /&gt; I have the same problem with mr bahad?r , in my scenario I want to get data from MSSQL and store it to MYSQL , connections are done , and schemas are gotten , but when I start the job I get this errors ;
&lt;BR /&gt; Starting job Job1 at 12:51 20/02/2015.
&lt;BR /&gt;&amp;nbsp;
&lt;BR /&gt; connecting to socket on port 3887
&lt;BR /&gt; connected
&lt;BR /&gt; Exception in thread "main" java.lang.Error: Unresolved compilation problems:&amp;nbsp;
&lt;BR /&gt; The method get?nt(int) is undefined for the type ResultSet
&lt;BR /&gt; The method set?nt(int, int) is undefined for the type PreparedStatement
&lt;BR /&gt;at newproject.job1_0_1.Job1.tMSSqlInput_1Process(Job1.java:702)
&lt;BR /&gt; at newproject.job1_0_1.Job1.runJobInTOS(Job1.java:1264)
&lt;BR /&gt; at newproject.job1_0_1.Job1.main(Job1.java:1121)
&lt;BR /&gt; Job Job1 ended at 12:51 20/02/2015. 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;BR /&gt;Thanks for help &amp;amp; Best Regards</description>
      <pubDate>Fri, 20 Feb 2015 13:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219940#M14545</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-20T13:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: The method get?nt(int) is undefined for the type ResultSet</title>
      <link>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219941#M14546</link>
      <description>Hi,
&lt;BR /&gt;Pls post the job screen shots for easy understand.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Kumar.talend</description>
      <pubDate>Fri, 20 Feb 2015 13:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219941#M14546</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-20T13:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: The method get?nt(int) is undefined for the type ResultSet</title>
      <link>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219942#M14547</link>
      <description>Hi, 
&lt;BR /&gt;I use the result set's getInt(x) to get an integer problem with no issue and maybe the following will be of help.&amp;nbsp; And my apologies in advance if you already know of what is presented below. 
&lt;BR /&gt;-&amp;gt; when using the getInt(x) method on a result set, the x value denotes the index of the column in the result set or the column label 
&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; you want to access.&amp;nbsp; 
&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ResultSet myResultSet = do sql statement. 
&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; int resultsetValue = myResultSet(1) - will get the value from the first column in the result set. Note that the first column must be 
&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; an int else you will get an SQLException. 
&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int resultsetValue = myResultSet(columnName) - will get the value for the named column.&amp;nbsp; Again the column must be an int. 
&lt;BR /&gt;-&amp;gt; if the above does not help, are your java.sql imports set-up correctly? 
&lt;BR /&gt;Hopefully one of the above mentioned helps you - cannot think of anything else at the moment that would be causing you this issue. 
&lt;BR /&gt;&amp;nbsp;</description>
      <pubDate>Fri, 20 Feb 2015 14:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219942#M14547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-20T14:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: The method get?nt(int) is undefined for the type ResultSet</title>
      <link>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219943#M14548</link>
      <description>Hi 
&lt;BR /&gt;just for test , I have mssql input (one integer coloumn) one tmap , and one mysql output and tables are set correctly to get data . what I wanted to do is copy integer data from mssql and store it to mysql .When I started the job I got the error shown ; 
&lt;BR /&gt; 
&lt;BR /&gt;Starting job deneme at 22:37 21/02/2015. 
&lt;BR /&gt; connecting to socket on port 4077 
&lt;BR /&gt; connected 
&lt;BR /&gt;Exception in thread "main" java.lang.Error: Unresolved compilation problem:&amp;nbsp; 
&lt;BR /&gt;The method get?nt(int) is undefined for the type ResultSet 
&lt;BR /&gt;at prj1.deneme_0_1.deneme.tMSSqlInput_1Process(deneme.java:705) 
&lt;BR /&gt;at prj1.deneme_0_1.deneme.runJobInTOS(deneme.java:1271) 
&lt;BR /&gt;at prj1.deneme_0_1.deneme.main(deneme.java:1128) 
&lt;BR /&gt;Job deneme ended at 22:37 21/02/2015. 
&lt;BR /&gt;Thanks &amp;amp; Best Regards 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCjy.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152944iA3E555738CCEF44F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCjy.png" alt="0683p000009MCjy.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Sat, 21 Feb 2015 20:44:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/The-method-get-nt-int-is-undefined-for-the-type-ResultSet/m-p/2219943#M14548</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-21T20:44:32Z</dc:date>
    </item>
  </channel>
</rss>

