<?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: parsing and nullpointer exception error while loading CSV file into MySQL database table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240661#M28080</link>
    <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The first step is to use replaceAll java function to remove the "-" from incoming string value. There are lot of posts in Talend community in this subject area like the one below.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCo8gCAC" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/resolved-Replace-string-with-quot-quot-with-quot-quot/td-p/92389&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Once you remove the problematic characters, use tConvertType component to convert the incoming String data to any numeric data type of your choice.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I hope I have answered your query. Please spare a second to mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jul 2019 20:05:11 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-07-22T20:05:11Z</dc:date>
    <item>
      <title>parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240658#M28077</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to load multiple csv files into MySQL database( for now trying to load one single csv file ). For this, I'm using four components :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;tDBConnection--&amp;gt; tFileInputdelimited--&amp;gt;tConvertType--&amp;gt;tMap--&amp;gt;tDBoutput(MySQL)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: I'm using tConvertType for retrieving empty values as null values.&lt;/P&gt;
&lt;P&gt;So, when I run the job...I face the below error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Starting job load_job_source_db at 17:19 19/07/2019.&lt;/P&gt;
&lt;P&gt;[statistics] connecting to socket on port 3618&lt;BR /&gt;[statistics] connected&lt;BR /&gt;Couldn't parse value for column 'Agglomerates' in 'row1', value is 'Carla Polson'. Details: java.lang.NumberFormatException: For input string: "Carla Polson"&lt;BR /&gt;Couldn't parse value for column 'Agglomerates' in 'row1', value is 'Carla Polson'. Details: java.lang.NumberFormatException: For input string: "Carla Polson"&lt;BR /&gt;Couldn't parse value for column 'Agglomerates' in 'row1', value is 'Dan'. Details: java.lang.NumberFormatException: For input string: "Dan"&lt;/P&gt;
&lt;P&gt;Exception in component tMap_1 (load_job_source_db)&lt;BR /&gt;java.lang.NullPointerException&lt;BR /&gt;at java.text.SimpleDateFormat.parse(Unknown Source)&lt;BR /&gt;at java.text.DateFormat.parse(Unknown Source)&lt;BR /&gt;at routines.TalendDate.parseDate(TalendDate.java:928)&lt;BR /&gt;at routines.TalendDate.parseDate(TalendDate.java:886)&lt;BR /&gt;at testproject1.load_job_source_db_0_1.load_job_source_db.tFileInputDelimited_1Process(load_job_source_db.java:3530)&lt;BR /&gt;at testproject1.load_job_source_db_0_1.load_job_source_db.tDBConnection_1Process(load_job_source_db.java:453)&lt;BR /&gt;at testproject1.load_job_source_db_0_1.load_job_source_db.runJobInTOS(load_job_source_db.java:4295)&lt;BR /&gt;at testproject1.load_job_source_db_0_1.load_job_source_db.main(load_job_source_db.java:4145)&lt;BR /&gt;[statistics] disconnected&lt;/P&gt;
&lt;P&gt;Job load_job_source_db ended at 17:19 19/07/2019. [exit code=1]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm attaching screenshots:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) my design workspace&lt;/P&gt;
&lt;P&gt;2) tFileImputdelimited component properties&lt;/P&gt;
&lt;P&gt;3)tmap mappings&lt;/P&gt;
&lt;P&gt;4)tDBOutput component properties&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help me with this, also let me know if you guys need anything else.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;
&lt;P&gt;Praneeth Reddy&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jul 2019 16:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240658#M28077</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-21T16:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240659#M28078</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Your input schema seems to be wrong. It is trying to load the string value to a numeric data type column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Couldn't parse value for column 'Agglomerates' in 'row1', value is 'Carla Polson'. Details: java.lang.NumberFormatException: For input string: "Carla Polson"&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;First thing you will have to do is to double check your schema for all the components. Please also add Die on Error check box in the tFileInputDelimited so that you will get error while reading the file itself. Since you have not selected it, the wrong data is passed to next component where it is failing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 15:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240659#M28078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T15:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240660#M28079</link>
      <description>&lt;P&gt;Hello Nikhil,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks for our reply. I tried checking 'die on error' in tfileinputdelimited.&lt;/P&gt; 
&lt;P&gt;I was able to get rid of parsing error for now but I still receive another parsing error :&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Exception in component tFileInputDelimited_1 (loading_SDB)&lt;BR /&gt;java.lang.RuntimeException: Couldn't parse value for column 'Phone' in 'row1', value is '773-6211'. Details: java.lang.NumberFormatException: For input string: "773-6211"&lt;BR /&gt;at testproject1.loading_sdb_0_1.loading_SDB.tFileInputDelimited_1Process(loading_SDB.java:3613)&lt;BR /&gt;at testproject1.loading_sdb_0_1.loading_SDB.tDBConnection_1Process(loading_SDB.java:463)&lt;BR /&gt;at testproject1.loading_sdb_0_1.loading_SDB.runJobInTOS(loading_SDB.java:5336)&lt;BR /&gt;at testproject1.loading_sdb_0_1.loading_SDB.main(loading_SDB.java:5186)&lt;BR /&gt;Caused by: java.lang.NumberFormatException: For input string: "773-6211"&lt;BR /&gt;at java.lang.NumberFormatException.forInputString(Unknown Source)&lt;BR /&gt;at java.lang.Long.parseLong(Unknown Source)&lt;BR /&gt;at java.lang.Long.parseLong(Unknown Source)&lt;BR /&gt;at routines.system.ParserUtils.parseTo_long(ParserUtils.java:174)&lt;BR /&gt;at routines.system.ParserUtils.parseTo_Long(ParserUtils.java:189)&lt;BR /&gt;at testproject1.loading_sdb_0_1.loading_SDB.tFileInputDelimited_1Process(loading_SDB.java:3604)&lt;BR /&gt;... 3 more&lt;BR /&gt;[statistics] disconnected&lt;/P&gt; 
&lt;P&gt;Job loading_SDB ended at 14:01 22/07/2019. [exit code=1]&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I understand the value '773-6211' has a special character which is not allowing to let it parse.&lt;/P&gt; 
&lt;P&gt;I'm unable to remove special character from 'phone' column( as it's a long datatype column).&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Is there any workaround for this?&lt;/P&gt; 
&lt;P&gt;Kindly, please help and looking forward to you reply.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks and regards,&lt;/P&gt; 
&lt;P&gt;Praneeth&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 19:15:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240660#M28079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T19:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240661#M28080</link>
      <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The first step is to use replaceAll java function to remove the "-" from incoming string value. There are lot of posts in Talend community in this subject area like the one below.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCo8gCAC" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/resolved-Replace-string-with-quot-quot-with-quot-quot/td-p/92389&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Once you remove the problematic characters, use tConvertType component to convert the incoming String data to any numeric data type of your choice.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I hope I have answered your query. Please spare a second to mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 20:05:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240661#M28080</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T20:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240662#M28081</link>
      <description>&lt;P&gt;Hello Nikhil,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I agree and I've already used ReplaceAll function in tmap. As mentioned above, the incoming data from .csv file for 'Phone' column is of long datatype. So, I'm unable to apply replaceall function on this 'phone' column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm attaching screenshots for my current job design. Also, I'm quite new to Talend so please let me know if I'm going in the right direction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using tmap_1 to convert Phone column(long datatype) to string datatype by using below expression:&lt;/P&gt;
&lt;P&gt;row1.Phone.toString()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;later, I'm using tmmap-2 to replaceall function as below:&lt;/P&gt;
&lt;P&gt;conv_output.Phone.replaceAll("\\D","")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But still I'm facing the error.Sorry for the trouble, I would really appreciate if you can schedule a webinar to resolve issues faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Praneeth&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Praneeth&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LvxB"&gt;job_design2.PNG&lt;/A&gt;</description>
      <pubDate>Mon, 22 Jul 2019 20:50:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240662#M28081</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T20:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240663#M28082</link>
      <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; Please read the phone data from file itself as String. Then do the replace all function to remove the unwanted characters. Once the data is in right format, you can use tConvertType to convert the value to Long or you can retain the data in String itself.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 21:45:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240663#M28082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T21:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240664#M28083</link>
      <description>&lt;P&gt;Hello Nikhil,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Followed your steps and I've loaded the csv file from directory as desired in tFileinputdelimited.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used following jjob design:&lt;/P&gt;
&lt;P&gt;DB_connection--&amp;gt;tFileInputdelimited--&amp;gt;tConvertType--&amp;gt;tMap--&amp;gt;DB_output(Mysql)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though, I use tConvertType to read empty values as nulls, I still receive below error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Exception in component tMap_1 (loading_SDB_2)&lt;BR /&gt;java.lang.NullPointerException&lt;BR /&gt;at testproject1.loading_sdb_2_0_1.loading_SDB_2.tFileInputDelimited_1Process(loading_SDB_2.java:3830)&lt;BR /&gt;at testproject1.loading_sdb_2_0_1.loading_SDB_2.tDBConnection_1Process(loading_SDB_2.java:453)&lt;BR /&gt;at testproject1.loading_sdb_2_0_1.loading_SDB_2.runJobInTOS(loading_SDB_2.java:4618)&lt;BR /&gt;at testproject1.loading_sdb_2_0_1.loading_SDB_2.main(loading_SDB_2.java:4468)&lt;BR /&gt;[statistics] disconnected&lt;/P&gt;
&lt;P&gt;Job loading_SDB_2 ended at 15:37 23/07/2019. [exit code=1]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, I used expressions in tmap to check for nulls:if true: if false method. As I have float values while I'm reading my input file...I'm not sure how to check for nulls float datatype column. Also, I'm attaching screenshots of my tMap configurations please look into it and let me know how to solve this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: when I uncheck 'die on error' in tMap...the job runs succesfully but I see no data in my MySQL database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards,&lt;/P&gt;
&lt;P&gt;Praneeth&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LwKd"&gt;tmap_11.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LwKn"&gt;tmap_22.PNG&lt;/A&gt;</description>
      <pubDate>Tue, 23 Jul 2019 20:42:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240664#M28083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T20:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240665#M28084</link>
      <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The issue is because you are trying to match an input null value value in the equal function (which you have used in almost all your string variables. If you are reading from a file, the empty value is ideally considered as a null.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Even if you have to compare empty string using an equal function, you should do it only after a Relational.ISNULL() function. So the first check should be null or not in your tMap before attempting for equal function. Then it should work fine.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; I hope I have answered your original query. Could you please spare a second to mark the topic as resolved? Kudos will be a bonus!&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 21:30:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240665#M28084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T21:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240666#M28085</link>
      <description>&lt;P&gt;Hello Nikhil,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you and I really appreciate your patience. Using Relational.ISNULL() I could get rid of nullpointerexception error.&lt;/P&gt;&lt;P&gt;My job runs successfully with no errors at all but still I don't see any data being populated in the MySQL database table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I even checked 'die on error'&amp;nbsp; in my tDBoutput(MySQL) component. I'm attaching screenshots please have a look at it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lw9k"&gt;job_design_3.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lvzw"&gt;tDB_prop_2.PNG&lt;/A&gt;</description>
      <pubDate>Wed, 24 Jul 2019 15:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240666#M28085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T15:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240667#M28086</link>
      <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Its because you have not committed the values to database.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;If you want to do auto commit, please select the option in your DB connection component.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M63t.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153422i26DA09823E7E9EBE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M63t.png" alt="0683p000009M63t.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; Else you can also use a tDBCommit and connect it through OnSubJobOK from previous subjob.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Please spare a second to mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 15:06:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240667#M28086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T15:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240668#M28087</link>
      <description>&lt;P&gt;Hey Nikhil,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a Lot! It works!....now I'm trying to load multiple .csv files of the same format to the same MySQL DB I've used previously.&lt;/P&gt;
&lt;P&gt;I used tFileList for iteration of all the files. But I receive below error for the tFileList component :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error in the component's properties:The method add(String) in the type List&amp;lt;String&amp;gt; is not applicable for the arguments ().&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm attaching screenshots again, please have a look at them and let me know what's the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Praneeth&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lw9p"&gt;job_design_4.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lubu"&gt;tFileInput_prop.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lw9z"&gt;tFileList_prop.PNG&lt;/A&gt;</description>
      <pubDate>Wed, 24 Jul 2019 16:09:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240668#M28087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T16:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240669#M28088</link>
      <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I would recommend to create it as a separate post so that original query will get sufficient focus. We have resolved your original query and this is a totally different issue. Could you please spare a second to mark the current topic as resolved? It will help other community members during their reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 16:13:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240669#M28088</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T16:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: parsing and nullpointer exception error while loading CSV file into MySQL database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240670#M28089</link>
      <description>&lt;P&gt;Okay. I've posted another topic under subject name 'Loading multiple CSV files into MySQL database '. Kindly, please address my issue over there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Praneeth&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 16:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/parsing-and-nullpointer-exception-error-while-loading-CSV-file/m-p/2240670#M28089</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T16:20:28Z</dc:date>
    </item>
  </channel>
</rss>

