<?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: Can anyone provide support on streamlit connectivity with databricks delta table/sql end point in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5113#M1625</link>
    <description>&lt;P&gt;Hi @ananthakrishna raikar​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting your question in our community! We are happy to assist you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To help us provide you with the most accurate information, could you please take a moment to review the responses and select the one that best answers your question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also help other community members who may have similar questions in the future. Thank you for your participation and let us know if you need any further assistance!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 29 Apr 2023 05:41:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-04-29T05:41:25Z</dc:date>
    <item>
      <title>Can anyone provide support on streamlit connectivity with databricks delta table/sql end point</title>
      <link>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5111#M1623</link>
      <description>&lt;P&gt;Can anyone provide support on streamlit connectivity with databricks delta table/sql end point&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 15:59:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5111#M1623</guid>
      <dc:creator>ankris</dc:creator>
      <dc:date>2023-04-27T15:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone provide support on streamlit connectivity with databricks delta table/sql end point</title>
      <link>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5112#M1624</link>
      <description>&lt;P&gt;@ananthakrishna raikar​&amp;nbsp;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Certainly! Streamlit can be used to connect to Databricks Delta tables and SQL endpoints through the use of the Databricks SQL Endpoint JDBC/ODBC driver.&lt;/P&gt;&lt;P&gt;Here's a sample code snippet to connect Streamlit with Databricks Delta:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;import streamlit as st
import pandas as pd
import sqlalchemy
&amp;nbsp;
# Set up a connection to the Databricks SQL Endpoint using SQLAlchemy
# Replace with your own values for the JDBC/ODBC driver and endpoint URL
engine = sqlalchemy.create_engine("databricks+odbc://&amp;lt;Driver Name&amp;gt;:&amp;lt;Host Name&amp;gt;:&amp;lt;Port Number&amp;gt;?Authentication=&amp;lt;Auth Type&amp;gt;")
&amp;nbsp;
# Define a function to execute SQL queries and return the results as a Pandas dataframe
def run_query(query):
    with engine.connect() as con:
        rs = con.execute(query)
        df = pd.DataFrame(rs.fetchall(), columns=rs.keys())
    return df
&amp;nbsp;
# Example query to retrieve data from a Delta table
query = "SELECT * FROM my_delta_table"
&amp;nbsp;
# Call the function to execute the query and display the results in Streamlit
result_df = run_query(query)
st.dataframe(result_df)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Make sure to replace the values in the engine variable with your own JDBC/ODBC driver name, host name, port number, and authentication type.&lt;/P&gt;&lt;P&gt;Also, note that Databricks Delta tables can be accessed through the Databricks Delta JDBC driver, while Databricks SQL endpoints can be accessed through the Databricks SQL Endpoint JDBC/ODBC driver.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 17:40:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5112#M1624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-28T17:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone provide support on streamlit connectivity with databricks delta table/sql end point</title>
      <link>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5113#M1625</link>
      <description>&lt;P&gt;Hi @ananthakrishna raikar​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting your question in our community! We are happy to assist you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To help us provide you with the most accurate information, could you please take a moment to review the responses and select the one that best answers your question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also help other community members who may have similar questions in the future. Thank you for your participation and let us know if you need any further assistance!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Apr 2023 05:41:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5113#M1625</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-29T05:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone provide support on streamlit connectivity with databricks delta table/sql end point</title>
      <link>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5114#M1626</link>
      <description>&lt;P&gt;Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really i would like to thank you for prompt support.&lt;/P&gt;&lt;P&gt;Meantime am facing challenges while connecting delta table around 5 MB data.&lt;/P&gt;&lt;P&gt;we would like to connect minimum 150 MB data stored in delta table .&lt;/P&gt;&lt;P&gt;Appreciate your valuable guidance/support on the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,  &lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 16:05:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/5114#M1626</guid>
      <dc:creator>ankris</dc:creator>
      <dc:date>2023-05-01T16:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone provide support on streamlit connectivity with databricks delta table/sql end point</title>
      <link>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/120572#M46193</link>
      <description>&lt;P&gt;I have an Question .&lt;/P&gt;&lt;P&gt;I am Trying an Build an App In Databricks Using Streamlit by connecting to endpoint when I sent a question in. An app it is giving only text format answers but I need the all formats that the end point will send like tables, graph, barchart etc.. can you help me with this&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 17:46:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-anyone-provide-support-on-streamlit-connectivity-with/m-p/120572#M46193</guid>
      <dc:creator>nagendragampala</dc:creator>
      <dc:date>2025-05-29T17:46:22Z</dc:date>
    </item>
  </channel>
</rss>

