mohan
mohan

Reputation: 75

Run a Spark SQL query on Databricks from .Net UI

I want my users to run the Spark SQL queries in UI and see the result set of the query.

Internally .Net Rest API will pass the query from UI to Databricks cluster or notebook or odbc to run the query. And resultset should show to the end user .

My backend platform is databricks .

Please suggest how to achieve this with some code/code links. Thanks in advance !

Upvotes: 1

Views: 1079

Answers (1)

Alex Ott
Alex Ott

Reputation: 87154

Just use Databricks' ODBC integration with System.Data.Odbc package in .Net - have you tried it?

Upvotes: 1

Related Questions