โ05-12-2023 10:13 AM
driver_manager = spark._sc._gateway.jvm.java.sql.DriverManager
connection = driver_manager.getConnection(mssql_url, mssql_user, mssql_pass)
connection.prepareCall("EXEC sys.sp_tables").execute()
connection.close()
The above code works fine but however I am unable to capture the output Params from Stored Procedure
Can someone please share the snippet to capture output value
โ05-12-2023 02:42 PM
I think there is an `executeQuery()` function that also works and returns a resultset. Something like this (I have not tested though):
conn = DriverManager.getConnection(url, username, password);
stmt = conn.createStatement();
sql = "SELECT * FROM mytable";
rs = stmt.executeQuery(sql);
โ05-12-2023 02:42 PM
I think there is an `executeQuery()` function that also works and returns a resultset. Something like this (I have not tested though):
conn = DriverManager.getConnection(url, username, password);
stmt = conn.createStatement();
sql = "SELECT * FROM mytable";
rs = stmt.executeQuery(sql);
โ05-13-2023 03:15 AM
If I print(rs) I am not receiving the expected result
โ06-09-2023 09:48 AM
Can you provide more details on the output? I am not entirely sure if the print statement would show the value of rs as it may just show the type of the python object since it is not a string variable.
โ11-03-2023 04:59 AM
โ05-30-2024 01:19 AM
This blog helped me with the output of the stored procedure: https://medium.com/@judy3.yang/how-to-run-sql-procedure-in-databricks-notebook-e28023555565
Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโt want to miss the chance to attend and share knowledge.
If there isnโt a group near you, start one and help create a community that brings people together.
Request a New Group