<?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: Connection string MySQL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978857#M334340</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by "The connection string doesn't work" ? Do you get an error message and if yes how does it look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Oct 2015 12:15:31 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2015-10-01T12:15:31Z</dc:date>
    <item>
      <title>Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978849#M334332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have more then 500 connections to MySQL DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have all the details of the connections in a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there an option that use connection string with the table without configure ODBC for each DB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried:&lt;/P&gt;&lt;P&gt;ConnectionString = "DRIVER={MySQL ODBC 5.2 Unicode Driver};&amp;nbsp; SERVER=10.10.10.10; Port=3306;&amp;nbsp; USER=venu;&amp;nbsp; PASSWORD=venu; OPTION=3;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have an Idea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ariel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 11:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978849#M334332</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2015-10-01T11:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978850#M334333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can only keep a single DBMS connection open at any time. How do you want to select the particular database connection that should be open at a specific moment? Is it ok to use a specific variable out of a set of (apparently) 500? For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ODBC CONNECT TO '$(DBConnection392)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 11:59:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978850#M334333</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-10-01T11:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978851#M334334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a table already loaded early in your load script you could do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ConnectionStrings:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ConnId, ConnString&lt;/P&gt;&lt;P&gt;0 § &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DRIVER={MySQL ODBC 5.2 Unicode Driver};&amp;nbsp; SERVER=10.10.10.10; Port=3306;&amp;nbsp; USER=venu;&amp;nbsp; PASSWORD=venu; OPTION=3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;1 § &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DRIVER={MySQL ODBC 5.2 Unicode Driver};&amp;nbsp; SERVER=10.10.10.20; Port=3306;&amp;nbsp; USER=mars;&amp;nbsp; PASSWORD=april; OPTION=4;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;] (delimiter is §);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conn = Peek('ConnString', 0 , 'ConnectionStrings');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO [$(Conn)];&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conn = Peek('ConnString',1 , 'ConnectionStrings');&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO [$(Conn)];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;........&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;........&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978851#M334334</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-01T12:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978852#M334335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter.&lt;/P&gt;&lt;P&gt;Thanks for the quick answer,&lt;/P&gt;&lt;P&gt;But, this is not the problem.&lt;/P&gt;&lt;P&gt;I'm using one connection in a QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Today i'm using ODBC connection.i, have more then 500 connections in a different QVW .(i have more then&amp;nbsp; 500 different customer - each customer have a different DB in a different server - each one have a different QVW)&lt;/P&gt;&lt;P&gt;Each day i need to add another connection in the ODBC. (New Customer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make it hand-free. so when a new customer is created in the DB i will have the connection details. (there is a table in the DB contain all the customers and their connection details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make connection string that uses variables with the connection details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ariel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978852#M334335</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2015-10-01T12:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978853#M334336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Imagine that your Connection String Table is called 'ConnectionStringTable' and its layout consists of a field DBName and a corresponding field DBConnectionString. Then you can simply define a huge range of variables like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;FOR i = 0 to NoOfRows('ConnectionStringTable') - 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; LET DBName&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = peek('DBName', i, 'ConnectionStringTable');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; LET DBConnection$(i)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = peek('DBConnectionString', i, 'ConnectionStringTable');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; LET DBConnection$(vDBName) = peek('DBConnectionString', i, 'ConnectionStringTable');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;NEXT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;LET DBName =;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You now have 1000 variables at your disposal to select from, either using a sequence number or a Database name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978853#M334336</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-10-01T12:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978854#M334337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, all clear. See below.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978854#M334337</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-10-01T12:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978855#M334338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;Thanks for the quick answer,&lt;/P&gt;&lt;P&gt;But this is not my problem/&lt;/P&gt;&lt;P&gt;The connection string doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help with that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ariel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978855#M334338</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2015-10-01T12:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978856#M334339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi Peter,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks for the quick answer,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;But this is not my problem.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The connection string doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can you help with that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Ariel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978856#M334339</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2015-10-01T12:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978857#M334340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by "The connection string doesn't work" ? Do you get an error message and if yes how does it look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:15:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978857#M334340</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-01T12:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978858#M334341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually I had some typing errors but try this instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ConnectionStrings:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ConnId | ConnString&lt;/P&gt;&lt;P&gt;0 | DRIVER={MySQL ODBC 5.2 Unicode Driver};&amp;nbsp; SERVER=10.10.10.10; Port=3306;&amp;nbsp; USER=venu;&amp;nbsp; PASSWORD=venu; OPTION=3;&lt;/P&gt;&lt;P&gt;1 | DRIVER={MySQL ODBC 5.2 Unicode Driver};&amp;nbsp; SERVER=10.10.10.20; Port=3306;&amp;nbsp; USER=mars;&amp;nbsp; PASSWORD=april; OPTION=4;&lt;/P&gt;&lt;P&gt;] (delimiter is '|');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conn = Peek('ConnString', 0 , 'ConnectionStrings');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO [$(Conn)];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978858#M334341</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-01T12:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978859#M334342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN&gt;This is what i'm getting.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;No matter what I put inside - it doesn't wok.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;IMG alt="2015-10-01 15_31_24-Connect.jpg" class="jive-image image-1" src="/legacyfs/online/100636_2015-10-01 15_31_24-Connect.jpg" style="height: 494px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:36:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978859#M334342</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2015-10-01T12:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978860#M334343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMHO this has nothing to do with your connection string as such, but with failing SQL server authentication. The login prompt keeps coming back, whatever you enter in the two input fields, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can solve this problem by using a windows account that has SQL Server access privileges by default, or by switching SQL server to mixed authentication mode (SQL Server+Windows Integrated Authentication) and using a SQL Server-defined UserID+Password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to verify this explanation with your SQL Server dba.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 13:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978860#M334343</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-10-01T13:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978861#M334344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now that I'm glancing over our latest posts again, this question came up: why does the dialog say "SQL Server login" when in reality you seem to want to connect to a MySQL database? Driver mixup?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 13:04:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978861#M334344</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-10-01T13:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Connection string MySQL</title>
      <link>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978862#M334345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i found the solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #3d3d3d;"&gt;CONNECT TO [Provider=MSDASQL.1;Persist Security Info=False;Extended Properties="DRIVER={MySQL ODBC 5.1 Driver};&lt;BR /&gt; UID=$(vUser);Server=&lt;SPAN style="color: #3d3d3d; font-family: 'Courier New'; font-size: 13.3333px;"&gt;$(vServer)&lt;/SPAN&gt;;Database=&lt;SPAN style="color: #3d3d3d; font-family: 'Courier New'; font-size: 13.3333px;"&gt;$(vDB)&lt;/SPAN&gt;;Password=&lt;SPAN style="color: #3d3d3d; font-family: 'Courier New'; font-size: 13.3333px;"&gt;$(vPassword)&lt;/SPAN&gt;;OPTION=3;PORT=&lt;SPAN style="color: #3d3d3d; font-family: 'Courier New'; font-size: 13.3333px;"&gt;$(vPort)&lt;/SPAN&gt;;"];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ariel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Oct 2015 09:05:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connection-string-MySQL/m-p/978862#M334345</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2015-10-04T09:05:20Z</dc:date>
    </item>
  </channel>
</rss>

