https://github.com/fornever/interclient
A legacy connector for InterBase.
https://github.com/fornever/interclient
Last synced: about 1 year ago
JSON representation
A legacy connector for InterBase.
- Host: GitHub
- URL: https://github.com/fornever/interclient
- Owner: ForNeVeR
- Created: 2015-08-15T13:57:04.000Z (almost 11 years ago)
- Default Branch: develop
- Last Pushed: 2015-08-18T16:34:12.000Z (almost 11 years ago)
- Last Synced: 2025-02-05T21:39:26.915Z (over 1 year ago)
- Language: Java
- Homepage: http://firebird.cvs.sourceforge.net/viewvc/firebird/interclient/20/dev/
- Size: 2.8 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.legacy
Awesome Lists containing this project
README
The firebird/make.sh script will build interserver and will compile the
java sources.
(Also see end of this note for some quick build procedures - Mark 01-02-01).
The firebird/makeDeliverables.sh script will create the file InterClient.tar
in the product directory.
#
# make "build" version on linux
#
IC_PLATFORM=linux; export IC_PLATFORM
IC_BUILD_DIR=`pwd`; export IC_BUILD_DIR
firebird/make.sh -build
firebird/makeDeliverables.sh -build
To install InterClient/interserver:
1) Extract InterClient.tar to a temp[orary] directory,
2) cd to it
for example,
cd [temp]/interclient_install_temp_dir
3) execute "install.sh" to install InterClient.
Tom Coleman 27-Dec-00
#------------------------------------------------------------------------------
Some quick build procedures mainly for linux but something similar should
also work for other platforms.
For linux to build interserver:
cd interserver and:
cat Makefile.linux Makefile.unix > Makefile
make clean
make
And for the interclient.jar
cd packages
make -f Makefile.unix
make jar
These do not "package the product" as per Tom's original instructions but they
do build versions that can then be used for debugging etc.
Other platforms have similar quick build instructions, a small big of looking
in the firebird (or sbin) directory should be all that is required.
Mark O'Donohue 01-02-01