Replies: 2 comments
-
sql.txt |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey @0xsharz, are you still facing this issue? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I encountered an issue while using the default SQLTool. When attempting to list or export large datasets, the application would crash. This occurred because it first printed all the data in the chat before using FileTool to export it.
To resolve this problem, I added a new function to SQLTool called
save_query_results
. This function automatically executes queries for larger datasets that the user wants to export and saves the results directly to a specified file. This approach bypasses the need to print the data in the chat, preventing the application from breaking down when handling large amounts of data.Hope you like it :)
Beta Was this translation helpful? Give feedback.
All reactions