<?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: Trying to play with new ADBC Azure Databricks connector in Power Query</title>
    <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4840705#M155195</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I tried this directly with NativeQuery connector&amp;nbsp; &amp;amp; seem to work for me:&lt;/P&gt;&lt;P&gt;"M" Query template below:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;let&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; data = Value.NativeQuery(Databricks.Catalogs(&amp;lt;&lt;EM&gt;DatabricksServerName&lt;/EM&gt;&amp;gt;, &amp;lt;&lt;EM&gt;DatabricksHTTPPath&lt;/EM&gt;&amp;gt;, [Catalog=&amp;lt;&lt;EM&gt;DatabricksDatabase&lt;/EM&gt;&amp;gt;, Implementation="2.0"]){[Name=&amp;lt;&lt;EM&gt;DatabricksDatabase&lt;/EM&gt;&amp;gt;,Kind="Database"]}[Data]," &amp;nbsp;&lt;BR /&gt;  Select ... From table A Join B On... WHERE&amp;nbsp; ..&amp;nbsp;&lt;BR /&gt;", null, [EnableFolding=true])&amp;nbsp;&lt;BR /&gt;in&amp;nbsp;data&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Or Is yours a different issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Oct 2025 14:13:28 GMT</pubDate>
    <dc:creator>ManmohanSapEXL</dc:creator>
    <dc:date>2025-10-02T14:13:28Z</dc:date>
    <item>
      <title>Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4764887#M153038</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added in my Databricks function&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Implementation="2.0"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as adviced here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-gb/power-query/connectors/databricks-azure#arrow-database-connectivity-driver-connector-implementation-preview" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-gb/power-query/connectors/databricks-azure#arrow-database-connectivity-driver-connector-implementation-preview&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm calling this function in each of my source queries as followed.&lt;/P&gt;&lt;P&gt;But instead of returning the result of the SQL query, it lists the databases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea on how to fix the Databricks function ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 08:18:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4764887#M153038</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-07-16T08:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4766251#M153094</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're currently using the Databricks.Query() function, which just shows a list of databases instead of running your SQL query. To fix this, you need to use the Databricks.Execute() function instead. This function lets you directly run a SQL query on your Databricks connection. You also need to pass the host name, SQL endpoint, your actual query text, and options like the catalog and implementation version. Try Replace the below query inside the quotes with your own.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Databricks.Execute(HostName, SqlEndPoint,
"SELECT col1, col2 FROM ds_rt_admin.data_area_xyz",
[Catalog = Databricks_Catalog, Implementation = "2.0"])&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 05:09:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4766251#M153094</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-17T05:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4766511#M153106</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately the solution proposed does not work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't find any documentation on the function Databricks.Execute()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using a custom SQL Query as detailed here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/partners/bi/power-bi#using-a-custom-sql-query" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/azure/databricks/partners/bi/power-bi#using-a-custom-sql-query&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without the option&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Implementation = "2.0"&lt;/PRE&gt;&lt;P&gt;The function works fine and return the result of the SQL query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 08:03:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4766511#M153106</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-07-17T08:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4767776#M153140</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Apologies for the confusion in my earlier response I appreciate your patience.&lt;/P&gt;
&lt;P&gt;You're absolutely right there is no official Databricks.Execute() function in Power Query. That was a mistake on my part.&lt;/P&gt;
&lt;P&gt;The correct approach, as per Microsoft documentation for Databricks + Power BI with Implementation = "2.0", is to use the Databricks.Query() function and pass your SQL inside the Query field like below.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Databricks.Query(HostName,SqlEndPoint,[Catalog = Databricks_Catalog,
Query = "SELECT * FROM your_table",Implementation = "2.0"])&lt;/LI-CODE&gt;
&lt;P&gt;Again, apologies for the confusion caused earlier. I hope this clears it up, and let me know if you need help adjusting your existing queries.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 05:03:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4767776#M153140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-18T05:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4767845#M153144</link>
      <description>&lt;P&gt;Hello&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Solution does not work unfortunately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems query option inside the brackets is not evaluated by power query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the result if I try to define the Query option outside the brackets:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your support&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 06:19:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4767845#M153144</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-07-18T06:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4771537#M153239</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the issue still persists, I’d recommend raising a support ticket with Microsoft. The support team can look into the backend and provide more in-depth assistance tailored to your environment.&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank"&gt;https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 03:10:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4771537#M153239</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-22T03:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4775191#M153344</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just checking, have you had a chance to open a support ticket, as suggested. If so, we'd love to hear the current status or any updates from that.&lt;/P&gt;
&lt;P&gt;If the issue was resolved through the support ticket, it would be great if you could share the solution here as well. It could really help other community members find answers more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 13:19:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4775191#M153344</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-24T13:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4775196#M153345</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No, I haven't got time to create the support ticket yet.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 13:21:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4775196#M153345</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-07-24T13:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4783768#M153611</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just checking, have you had a chance to open a support ticket, as suggested. If so, we'd love to hear the current status or any updates from that.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prasanna Kumar&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 05:03:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4783768#M153611</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-01T05:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4784552#M153646</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have just opened a support ticket, I will keep you posted here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Maxence&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 13:59:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4784552#M153646</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-08-01T13:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4786937#M153706</link>
      <description>&lt;P&gt;Power BI support team informed me they have managed to reproduce the issue and have transfered the case to Databricks team for investigation.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 15:23:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4786937#M153706</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-08-04T15:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4787517#M153716</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the update. If possible, please share any progress and updates from the Databricks team here as they become available. It will help other community members who are facing the similar issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna kumar&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 06:46:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4787517#M153716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-05T06:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4840705#M155195</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I tried this directly with NativeQuery connector&amp;nbsp; &amp;amp; seem to work for me:&lt;/P&gt;&lt;P&gt;"M" Query template below:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;let&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; data = Value.NativeQuery(Databricks.Catalogs(&amp;lt;&lt;EM&gt;DatabricksServerName&lt;/EM&gt;&amp;gt;, &amp;lt;&lt;EM&gt;DatabricksHTTPPath&lt;/EM&gt;&amp;gt;, [Catalog=&amp;lt;&lt;EM&gt;DatabricksDatabase&lt;/EM&gt;&amp;gt;, Implementation="2.0"]){[Name=&amp;lt;&lt;EM&gt;DatabricksDatabase&lt;/EM&gt;&amp;gt;,Kind="Database"]}[Data]," &amp;nbsp;&lt;BR /&gt;  Select ... From table A Join B On... WHERE&amp;nbsp; ..&amp;nbsp;&lt;BR /&gt;", null, [EnableFolding=true])&amp;nbsp;&lt;BR /&gt;in&amp;nbsp;data&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Or Is yours a different issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 14:13:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4840705#M155195</guid>
      <dc:creator>ManmohanSapEXL</dc:creator>
      <dc:date>2025-10-02T14:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4840759#M155198</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I confirm it works fine now.&lt;/P&gt;&lt;P&gt;In fact, following the ticket I have raised to Microsoft Support team, Databricks team have fixed the driver in september version of Power BI desktop &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 15:33:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4840759#M155198</guid>
      <dc:creator>maxbarj</dc:creator>
      <dc:date>2025-10-02T15:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to play with new ADBC Azure Databricks connector</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4841008#M155210</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="695356" data-lia-user-login="maxbarj" class="lia-mention lia-mention-user"&gt;maxbarj&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the update. Could you please accept the specific response that helped resolve the issue. This will assist other community members who may face the same problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 03:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Trying-to-play-with-new-ADBC-Azure-Databricks-connector/m-p/4841008#M155210</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-10-03T03:45:18Z</dc:date>
    </item>
  </channel>
</rss>

