forked from anudeepg/SQLeo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
32 lines (26 loc) · 1.1 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
To Build with ant on windows :
1. Checkout SQLeo source
2. launch
set JAVA_HOME=C:\Program Files\Java\jdkX.Y.0_Z
set ANT_HOME=D:\apache-ant-X.Y.Z
set PATH=%PATH%;%ANT_HOME%\bin
ant dist
To Build with eclipse :
1. Checkout SQLeo source and add an empty lib folder on project root path.
2. In Eclipe goto File->New->Other->Java Project from existing ant build file
and select the ant build file.
3. To run the application: Run com.sqleo.environment.Application.java
4. To export as JAR : Select project -> export as jar (deselect svn files)
and then select Main class (com.sqleo.environment.Application.java)
To run SQLeo Visual Query Builder, depending on your environment launch:
#java 8
java -jar SQLeoVQB.jar
#java 9, 10
java --add-modules="java.xml.bind" -jar SQLeoVQB.jar
#java 11
# windows
java -cp "SQLeoVQB.jar;lib/*" com.sqleo.environment.Application
#on Linux, MacOS
java -cp "SQLeoVQB.jar:lib/*" com.sqleo.environment.Application
LookAndFeel can also be selected
(Warning Metal is set by default because it is the only one that has been fully tested)