|
View:
New views
7 Messages
—
Rating Filter:
Alert me
|
|
|
bin/*.bat improvementsI corrected and improved the batch files for hsqldb v1.9 beta 6. Class packages were incorrect, and pushd/popd was used instead of cd.
runManager.bat @pushd ..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.util.DatabaseManager %1 %2 %3 %4 %5 %6 %7 %8 %9 @popd runServer.bat @pushd ..\data @java -classpath ../lib/hsqldb.jar org.hsqldb.server.Server %1 %2 %3 %4 %5 %6 %7 %8 %9 @popd runManagerSwing.bat @pushd ..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.util.DatabaseManagerSwing %1 %2 %3 %4 %5 %6 %7 %8 %9 @popd runWebServer.bat @pushd ..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.server.WebServer %1 %2 %3 %4 %5 %6 %7 %8 %9 @popd runUtil.bat @pushd ..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.util.%1 %2 %3 %4 %5 %6 %7 %8 %9 @popd runSqlTool.bat @pushd %~dp0\..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.cmdline.SqlTool %1 %2 %3 %4 %5 %6 %7 %8 %9 @popd |
|
|
Re: bin/*.bat improvements
I don't think that pushd / popd is available on most of the windows platforms without an extra download - It might be available on vista but not on windows 2000 ? (Or am I wrong?)
On Tue, 2009-10-20 at 09:34 -0700, mslinn wrote: I corrected and improved the batch files for hsqldb v1.9 beta 6. Class packages were incorrect, and pushd/popd was used instead of cd. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ hsqldb-developers mailing list hsqldb-developers@... https://lists.sourceforge.net/lists/listinfo/hsqldb-developers |
|
|
Re: bin/*.bat improvementsI believe Windows 2000 has had support discontinued for years now. Not sure if pushd/popd was an extra download or not. Why should this matter? XP, the successor O/S, will also be retired shortly. I don't think W2K is on many vendor's support matrix at this point. I still have a couple of machines in a closet that run W2K, but I don't expect a 486 to run anything current.
|
|
|
Re: bin/*.bat improvementsBTW, pushd/popd is definitely available on XP as a standard feature.
|
|
|
Re: bin/*.bat improvementsOne could always write something like:
|
|
|
Re: bin/*.bat improvementsOne could always write something like:
<pre>set cwd=%cd% cd whereever ... cd %CWD% |
|
|
Re: bin/*.bat improvements
ok I stand corrected, though win2k is still widely in use because it is a server platform . xp isn't the successor but win2003 also has the pushd /popd function so I withdraw my point.
On Tue, 2009-10-20 at 15:38 -0700, mslinn wrote: I believe Windows 2000 has had support discontinued for years now. Not sure if pushd/popd was an extra download or not. Why should this matter? XP, the successor O/S, will also be retired shortly. I don't think W2K is on many vendor's support matrix at this point. I still have a couple of machines in a closet that run W2K, but I don't expect a 486 to run anything current. -- View this message in context: http://www.nabble.com/bin-*.bat-improvements-tp25978389p25983754.html Sent from the HSQLDB - Dev mailing list archive at Nabble.com. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ hsqldb-developers mailing list hsqldb-developers@... https://lists.sourceforge.net/lists/listinfo/hsqldb-developers -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ hsqldb-developers mailing list hsqldb-developers@... https://lists.sourceforge.net/lists/listinfo/hsqldb-developers |
| Free embeddable forum powered by Nabble | Forum Help |