You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AI Query Assistant - a full integration of AI-powered SQL generation directly into the SQL Console.
You describe what you want in plain English, and the assistant writes the SQL - schema-aware, so it only uses tables and columns that actually exist in your database.
Silent Mode: Every AI-generated statement gets a /* AI: ... */ header that records the original question.
When your cursor is inside such a statement, Ctrl+Shift+S regenerates the SQL in place.
no dialog, no friction. Edit the comment to refine the question, hit the shortcut, review and execute.
Fixed: Session was not closed on exception in Importer.execute().
Fixed resource leaks: streams and writers are now properly closed via try-with-resources
in ExtractionModel, RestrictionModel, CommandLineParser, ModelBuilder,
IntraDatabaseEntityGraph and SQLConsole.
Fixed: InterruptedException in shutdown hook now restores the interrupt flag and exits the wait loop.
Fixed: LOB insert methods (insertClob, insertSQLXML) refactored to eliminate duplicate code;
resource leak in stream handling corrected.