@echo. @echo The frameworks scripts have been deprecated. Please use the new scripts in @echo the /bin directory. See the file frameworks.DEPRECATED.txt for more @echo information. @echo. @REM Licensed to the Apache Software Foundation (ASF) under one or more @REM contributor license agreements. See the NOTICE file distributed with @REM this work for additional information regarding copyright ownership. @REM The ASF licenses this file to you under the Apache License, Version 2.0 @REM (the "License"); you may not use this file except in compliance with @REM the License. You may obtain a copy of the License at @REM @REM http://www.apache.org/licenses/LICENSE-2.0 @REM @REM Unless required by applicable law or agreed to in writing, software @REM distributed under the License is distributed on an "AS IS" BASIS, @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @REM See the License for the specific language governing permissions and @REM limitations under the License. @REM --------------------------------------------------------- @REM -- This batch file is an example of how to run commands @REM -- in the Network Server framework @REM -- @REM -- REQUIREMENTS: @REM -- You must have the derby jar files as well as the @REM -- derby network server class files in your classpath. @REM -- @REM -- Check the setNetworkServerCP.bat file for an example of @REM -- what to set. @REM -- @REM -- This file for use on Windows systems @REM --------------------------------------------------------- @echo off rem set DERBY_INSTALL= @if "%DERBY_HOME%"=="" set DERBY_HOME=%DERBY_INSTALL% @if "%DERBY_HOME%"=="" goto noderbyhome @if "%JAVA_HOME%"=="" goto nojavahome @if not exist "%JAVA_HOME%\bin\java.exe" goto nojavahome @REM --------------------------------------------------------- @REM -- start Derby as a Network server @REM --------------------------------------------------------- "%JAVA_HOME%\bin\java" -cp "%DERBY_HOME%\lib\derby.jar;%DERBY_HOME%\lib\derbytools.jar;%DERBY_HOME%\lib\derbynet.jar;%CLASSPATH%" org.apache.derby.drda.NetworkServerControl %* @goto end @REM --------------------------------------------------------- @REM -- To use a different JVM with a different syntax, simply edit @REM -- this file @REM --------------------------------------------------------- :nojavahome echo JAVA_HOME not set or could not find java executable in JAVA_HOME. echo Please set JAVA_HOME to the location of a valid Java installation. goto end :noderbyhome echo DERBY_HOME or DERBY_INSTALL not set. Set one of these variables echo to the location of your Derby installation. goto end :end