timeseries / qstudio

qStudio - Free SQL Analysis Tool
https://www.timestored.com/qstudio/
Apache License 2.0
420 stars 18 forks source link

.sql file name support #12

Closed jdjohn555 closed 4 months ago

jdjohn555 commented 11 months ago

Unless user has kdb, should default to using .sql filenames.

ryanhamilton commented 4 months ago
            ServerConfig sc = connectionManager.getServer(queryManager.getSelectedServerName());
            if(openDocumentsModel.getSelectedDocument().getTitle().endsWith(".q")) {
                return "q";
            }
            return (sc != null && !sc.isKDB()) ? "sql" : "q";

image

ryanhamilton commented 4 months ago

Released.