I am trying to write an Ant (1.8.2) script to shutdown HSQLDB (2.1.0) from the command line - basically I need to be able to shutdown HSQLDB from a Windows batch file - after searching the web it seems like there is no built-in command line way to do it - please correct me if I am wrong.
I've started the database up with the shipped batch file runServer.bat.
Here is my ant file (shutdown.xml):
<project>
<target name="hsqldb-stop">
<sql
classpath="C:\programs\hsqldb\hsqldb-2.1.0\hsqldb\lib"
driver="org.hsqldb.jdbcDriver"
url="jdbc:hsqldb:hsql://localhost:9001"
userid="sa" password=""
autocommit="true">SHUTDOWN</sql>
</target>
</project>
classpath is where I have the C:\programs\hsqldb\hsqldb-2.1.0\hsqldb\lib\hsqldb.jar file.
All the other details are those that I use when I access the database from Java, and they do work there.
When I run it I get:
>ant -buildfile shutdown.xml
Buildfile: shutdown.xml
BUILD SUCCESSFUL
Total time: 0 seconds
HOWEVER the database is not being shutdown. Its shell is still open. Can you see what is wrong here?
Thanks!
ant -verbose -buildfile shutdown.xml hsqldb-stopto explicitly name the target and show feedback. – fredt Sep 8 '11 at 18:50hsqldb-stopto the command, as you suggested. Also, I had to explicitly state the jar file in the command path, i.e.classpath="C:\programs\hsqldb\hsqldb-2.1.0\hsqldb\lib\hsqldb.jar". Now it works. Could you tell why I had to do it this way? I thought Ant scripts being run without any specific target, simply run any target they can? Also, I thought classpath only gives the directory containing the jars, not the actual jars. – rapt Sep 8 '11 at 20:05