mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
Aqua Data Studio is a database query and administration tool that allows developers to easily create, edit, and execute SQL scripts, as well as browse and visually modify database structures. Aqua Data Studio provides an integrated database environment with a single consistent interface to all major relational databases. It is free for personal or educational use, but a commercial license is required for all other usages.
17 lines
532 B
Bash
17 lines
532 B
Bash
--- datastudio.sh.orig Wed Aug 4 15:15:16 2004
|
|
+++ datastudio.sh Fri Feb 11 16:08:59 2005
|
|
@@ -1,7 +1,7 @@
|
|
#!/bin/sh
|
|
#SET ADS_HOME to the root installation directory for DataStudio
|
|
|
|
-ADS_HOME=`dirname $0`
|
|
+ADS_HOME=%%ADS_HOME%%
|
|
|
|
CLASSES=$ADS_HOME/lib/datastudio.jar
|
|
CLASSES=$ADS_HOME/lib/oracle.jar:$CLASSES
|
|
@@ -20,4 +20,4 @@
|
|
CLASSES=$ADS_HOME/lib/mail.jar:$CLASSES
|
|
CLASSES=$ADS_HOME/lib/activation.jar:$CLASSES
|
|
|
|
-java -cp $CLASSES com.aquafold.datastudio.DataStudio
|
|
+java -cp $CLASSES com.aquafold.datastudio.DataStudio &
|