<?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: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL in Data Warehouse</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605853#M2684</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="767797" data-lia-user-login="yulione" class="lia-mention lia-mention-user"&gt;yulione&lt;/a&gt;&amp;nbsp;can you please consult these 2 MS docs pages and see if the&amp;nbsp;&lt;SPAN&gt;PHP / Doctrine DBAL process supports the currenyl methods for connecting to Fabric Warehouse:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/connectivity" target="_blank"&gt;Connectivity to data warehousing - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/entra-id-authentication" target="_blank"&gt;Microsoft Entra Authentication in Fabric Data Warehouse - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Mar 2025 22:21:23 GMT</pubDate>
    <dc:creator>AndyDDC</dc:creator>
    <dc:date>2025-03-11T22:21:23Z</dc:date>
    <item>
      <title>Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4604759#M2675</link>
      <description>&lt;P&gt;My company is moving all our data to Microsoft Fabrics, which is great, however we have some PHP app who needs to access those datas.&lt;/P&gt;&lt;P&gt;All those apps are using Doctrine DBAL, and we can't find how to get the connection.&lt;/P&gt;&lt;P&gt;PHP 8.3.16 Doctrine DBAL : 4.2.2 ODBC DRIVER : 18 sqlsrv et pdo_sqlsrv drivers : 5.12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the following code to get the connection :&lt;/P&gt;&lt;PRE&gt;    $connectionParams = [
        'dbname' =&amp;gt; 'My_DB_Name',
        'user' =&amp;gt; 'xxxxx@xxxxxx.com',
        'password' =&amp;gt; 'MyPassword',
        'host' =&amp;gt; 'xxxxxxxxxxxxxx.datawarehouse.fabric.microsoft.com',
        'driver' =&amp;gt; 'pdo_sqlsrv', //doesn't work with sqlsrv either
        'port' =&amp;gt; 1433,
        'driverOptions' =&amp;gt; [ // tried few additional parameters, but are not accepeted or working
            //'Authentification' =&amp;gt; 'ActiveDirectoryPassword',
            //"Trustedconnection"=&amp;gt;"true"
            //'TrustServerCertificate' =&amp;gt; true
        ]
    ];
    $this-&amp;gt;conn = \Doctrine\DBAL\DriverManager::getConnection($connectionParams);&lt;/PRE&gt;&lt;P&gt;And this code to test&lt;/P&gt;&lt;PRE&gt;    try{
        $a = self::instance()-&amp;gt;fetchAssociative('SELECT * FROM Production_Data');
            //self:instance() return the connection from above
        echo('OK&amp;lt;br&amp;gt;');
        Toolbox::var_dump($a,false,0);
    }catch(\Throwable $e){
        echo($e-&amp;gt;getMessage());
    }&lt;/PRE&gt;&lt;P&gt;As a results, I have a blank page. No results at all, not even an error.... and 'OK' doesn't show up.... We also tried a classic PDO connection, but doesn't work either. We an reach and query the warehouse correctly using SQL Server Management studio though.&lt;/P&gt;&lt;P&gt;Thank you for your help !&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 09:07:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4604759#M2675</guid>
      <dc:creator>yulione</dc:creator>
      <dc:date>2025-03-11T09:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605195#M2681</link>
      <description>&lt;P&gt;SSMS on the same machine works?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you using encrypted connections?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 13:11:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605195#M2681</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-03-11T13:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605208#M2682</link>
      <description>&lt;P&gt;Hi Ibendlin,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using a laragon setup with encryption to make this test, and Yes SSMS on the same machine is working just fine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 13:25:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605208#M2682</guid>
      <dc:creator>yulione</dc:creator>
      <dc:date>2025-03-11T13:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605853#M2684</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="767797" data-lia-user-login="yulione" class="lia-mention lia-mention-user"&gt;yulione&lt;/a&gt;&amp;nbsp;can you please consult these 2 MS docs pages and see if the&amp;nbsp;&lt;SPAN&gt;PHP / Doctrine DBAL process supports the currenyl methods for connecting to Fabric Warehouse:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/connectivity" target="_blank"&gt;Connectivity to data warehousing - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/entra-id-authentication" target="_blank"&gt;Microsoft Entra Authentication in Fabric Data Warehouse - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 22:21:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4605853#M2684</guid>
      <dc:creator>AndyDDC</dc:creator>
      <dc:date>2025-03-11T22:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4606491#M2688</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="265587" data-lia-user-login="AndyDDC" class="lia-mention lia-mention-user"&gt;AndyDDC&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help ^^&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is nothing specifically written in Doctrine documentation about support of MFA method. However, doctrine supports ODBC connexion through 2 PHP drivers : sqlsrv and pdo_sqlsrv (&lt;A href="https://www.doctrine-project.org/projects/doctrine-dbal/en/4.2/reference/configuration.html" target="_self"&gt;doc here&lt;/A&gt;) and we are using them for a while now. As ODBC connexion is supported by fabrics, I assumed (maybe I'm wrong) that it should work too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft doc says that we should use&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/connectivity" target="_self"&gt;ODBC 18 or greater&lt;/A&gt; and &lt;A href="https://learn.microsoft.com/en-us/sql/connect/php/system-requirements-for-the-php-sql-driver?view=sql-server-ver16" target="_self"&gt;sqlsrv and pdo_sqlsrv 5.11 or greater&lt;/A&gt;, which I have.&amp;nbsp; (PHP is 8.3 and i'm using&amp;nbsp;&lt;SPAN&gt;64-bit php_sqlsrv_83_ts.dll and&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;64-bit php_pdo_sqlsrv_83_ts.dll found from &lt;A href="https://learn.microsoft.com/en-us/sql/connect/php/download-drivers-php-sql-server?view=sql-server-ver16#download" target="_self"&gt;Microsoft dedicated page&lt;/A&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;With this in mind, a classic PDO connexion (not using doctrine) gives the same results and same issue.&lt;/P&gt;&lt;P&gt;As for SSMS, maybe there is some instruction to give to the driver to says this is a entra MFA connexion ? I haven't seen anything related to that in &lt;A href="https://learn.microsoft.com/fr-fr/sql/connect/php/connection-options?view=sql-server-ver16" target="_self"&gt;driver doc&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've spent the last 2-3 month to try to figure it out... What I don't understant though is there is absolutly no error anywhere, even in system logs or anywhere else...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 08:06:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4606491#M2688</guid>
      <dc:creator>yulione</dc:creator>
      <dc:date>2025-03-12T08:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4606813#M2690</link>
      <description>&lt;P&gt;If you have a Pro license you can open a Pro ticket at &lt;A href="https://admin.powerplatform.microsoft.com/newsupportticket/powerbi" target="_blank"&gt;https://admin.powerplatform.microsoft.com/newsupportticket/powerbi&lt;/A&gt;&lt;BR /&gt;Otherwise you can raise an issue at &lt;A href="https://community.fabric.microsoft.com/t5/Issues/idb-p/Issues" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Issues/idb-p/Issues&lt;/A&gt; .&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 11:29:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4606813#M2690</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-03-12T11:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4607972#M2700</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="767797" data-lia-user-login="yulione" class="lia-mention lia-mention-user"&gt;yulione&lt;/a&gt;,&lt;BR /&gt;Thank you for reaching out to the Microsoft Forum Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the inconvenience caused. As suggested by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;, please raise a support ticket. To create a support ticket for Fabric and Power BI, refer to the steps outlined in the following guide:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank" rel="noopener"&gt;How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 06:33:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4607972#M2700</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-03-13T06:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4608135#M2702</link>
      <description>&lt;P&gt;Thank you all for your time and support.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As suggested I will open a ticket.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If possible I will try to post solution in this topic.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 08:14:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4608135#M2702</guid>
      <dc:creator>yulione</dc:creator>
      <dc:date>2025-03-13T08:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Query Microsoft Fabrics Warehouse using PHP / Doctrine DBAL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4655499#M2895</link>
      <description>&lt;P&gt;Hey again.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After several weeks of discussion with Microsoft, it appear that this is because Warehouse doesn't support&amp;nbsp;&lt;SPAN&gt;Multiple Active Result Sets (MARS). Setting&amp;nbsp;MultipleActiveResultSets=0 in option resolve the problem.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so, the final method for me was :&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;$connectionParams&lt;/SPAN&gt;&lt;SPAN&gt; = [&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'dbname'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;'my_DBname'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'user'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; xxx@xxx.com&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'password'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;'mypassword',&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'host'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;'xxxxxxxxxxxxxx.datawarehouse.fabric.microsoft.com'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'driver'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;'pdo_sqlsrv'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'port'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;1433&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'driverOptions'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; [&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Authentication'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;'ActiveDirectoryPassword'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'MultipleActiveResultSets'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Encrypt'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'TrustServerCertificate'&lt;/SPAN&gt;&lt;SPAN&gt; =&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ];&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;$this&lt;/SPAN&gt;&lt;SPAN&gt;-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;conn&lt;/SPAN&gt;&lt;SPAN&gt; = \Doctrine\DBAL\&lt;/SPAN&gt;&lt;SPAN&gt;DriverManager&lt;/SPAN&gt;&lt;SPAN&gt;::&lt;/SPAN&gt;&lt;SPAN&gt;getConnection&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$connectionParams&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 10:35:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Query-Microsoft-Fabrics-Warehouse-using-PHP-Doctrine-DBAL/m-p/4655499#M2895</guid>
      <dc:creator>yulione</dc:creator>
      <dc:date>2025-04-16T10:35:48Z</dc:date>
    </item>
  </channel>
</rss>

