<?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: Connect to Databricks SQL Endpoint using Programming language in Warehousing &amp; Analytics</title>
    <link>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/51344#M1039</link>
    <description>&lt;P&gt;I found a similar question on Stackoverflow&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/77477103/ow-to-properly-connect-to-azure-databricks-warehouse-from-c-sharp-net-using-jdb" target="_blank"&gt;https://stackoverflow.com/questions/77477103/ow-to-properly-connect-to-azure-databricks-warehouse-from-c-sharp-net-using-jdb&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Nov 2023 23:58:52 GMT</pubDate>
    <dc:creator>StephanieAlba</dc:creator>
    <dc:date>2023-11-13T23:58:52Z</dc:date>
    <item>
      <title>Connect to Databricks SQL Endpoint using Programming language</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20208#M422</link>
      <description>&lt;P&gt;Hi, I would like to know whether there is a feasibility/options available to connect to databricks sql endpoint using a programming language like java/scala/c#. I can see JDBC URL, but would like to whether it can be considered as any other jdbc connection string to execute a query and get the result.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 12:55:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20208#M422</guid>
      <dc:creator>Mat</dc:creator>
      <dc:date>2025-03-21T12:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Connect to Databricks SQL Endpoint using Programming language</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20209#M423</link>
      <description>&lt;P&gt;"Further to current Question(Not an answer &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; )": Even '&lt;A href="https://docs.databricks.com/dev-tools/python-sql-connector.html?&amp;amp;_ga=2.160539389.178928665.1652886200-1722212986.1607976917#language-SQL%C2%A0endpoint" alt="https://docs.databricks.com/dev-tools/python-sql-connector.html?&amp;amp;_ga=2.160539389.178928665.1652886200-1722212986.1607976917#language-SQL%C2%A0endpoint" target="_blank"&gt;Databricks&amp;nbsp;SQL&amp;nbsp;Connector&lt;/A&gt;', I can see this is available only for Python. Is there any databricks sql connector options available for scala/java/c# to execute query outside the databricks cluster to get the data. ?&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 19:50:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20209#M423</guid>
      <dc:creator>Mat</dc:creator>
      <dc:date>2022-05-18T19:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Connect to Databricks SQL Endpoint using Programming language</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20210#M424</link>
      <description>&lt;P&gt;Hi. As you say, you can use JDBC/ODBC to connect to the SQL endpoints with the drivers supplied by Databricks [1] [2]. For the programming language you want to use, use a JDBC interface/library to connect to the endpoints. For Java, this is built in [3]. For other languages, like python or go, you can use pyodbc [4] and alexbrainman/odbc [5] respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[1] &lt;A href="https://databricks.com/spark/jdbc-drivers-download" target="test_blank"&gt;https://databricks.com/spark/jdbc-drivers-download&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[2] &lt;A href="https://databricks.com/spark/odbc-drivers-download" target="test_blank"&gt;https://databricks.com/spark/odbc-drivers-download&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[3] &lt;A href="https://www.javatpoint.com/java-jdbc" target="test_blank"&gt;https://www.javatpoint.com/java-jdbc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[4] &lt;A href="https://github.com/mkleehammer/pyodbc" target="test_blank"&gt;https://github.com/mkleehammer/pyodbc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[5] &lt;A href="https://github.com/alexbrainman/odbc" target="test_blank"&gt;https://github.com/alexbrainman/odbc&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 10:06:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20210#M424</guid>
      <dc:creator>Håkon_Åmdal</dc:creator>
      <dc:date>2022-05-24T10:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Connect to Databricks SQL Endpoint using Programming language</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20211#M425</link>
      <description>&lt;P&gt;I think databricks connect will be feasible solution. &lt;A href="https://docs.databricks.com/dev-tools/databricks-connect.html" target="test_blank"&gt;https://docs.databricks.com/dev-tools/databricks-connect.html&lt;/A&gt; and JDBC driver also be an option. Please let me know if this helps. @Mathavan Mani​&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 09:45:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/20211#M425</guid>
      <dc:creator>Atanu</dc:creator>
      <dc:date>2022-05-26T09:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Connect to Databricks SQL Endpoint using Programming language</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/51344#M1039</link>
      <description>&lt;P&gt;I found a similar question on Stackoverflow&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/77477103/ow-to-properly-connect-to-azure-databricks-warehouse-from-c-sharp-net-using-jdb" target="_blank"&gt;https://stackoverflow.com/questions/77477103/ow-to-properly-connect-to-azure-databricks-warehouse-from-c-sharp-net-using-jdb&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 23:58:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/connect-to-databricks-sql-endpoint-using-programming-language/m-p/51344#M1039</guid>
      <dc:creator>StephanieAlba</dc:creator>
      <dc:date>2023-11-13T23:58:52Z</dc:date>
    </item>
  </channel>
</rss>

