30 lines
990 B
XML
30 lines
990 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<VBox
|
|
xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="com.andrewlalis.perfin.control.SqlConsoleViewController"
|
|
>
|
|
<ScrollPane fitToWidth="true" fitToHeight="true" VBox.vgrow="ALWAYS">
|
|
<TextArea
|
|
fx:id="sqlEditorTextArea"
|
|
promptText="Write your SQL query here..."
|
|
styleClass="mono-font,small-font"
|
|
/>
|
|
</ScrollPane>
|
|
<HBox styleClass="std-padding,std-spacing">
|
|
<Button text="Execute Query" onAction="#executeQuery"/>
|
|
<Button text="View Schema" onAction="#showSchema"/>
|
|
</HBox>
|
|
<ScrollPane fitToHeight="true" fitToWidth="true">
|
|
<TextArea
|
|
fx:id="outputTextArea"
|
|
styleClass="mono-font,small-font"
|
|
maxHeight="800"
|
|
/>
|
|
</ScrollPane>
|
|
</VBox>
|