| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | #############################################################################  Licensed Materials - Property of IBM##  "Restricted Materials of IBM"##  IBM Informix Dynamic Server#  Copyright IBM Corporation 2008 All rights reserved.##  Title: README##  Description: The examples included in this directory are listed here. #               A brief description of how to run the examples in also #               provided this file.############################################################################The examples in this directory include:    * A couple Java user-defined functions demonstrating the use of the        com.informix.udr interface:        Env.java        Env.sql    * A user-defined function using server-side JDBC        JDBC.java        JDBC.sql    * A user-defined function testing large objects w/ and w/o JDBC        LO.java        LO.sql    * A user-defined type called "circle" implemented partly in Java        Circle.java        circle.h        circle.c        Circle.sqlHere are the steps for running the examples:	1. Customize the URLs used by the install_jar calls in all SQL       scripts. Replace "$INFORMIXDIR" with the directory where        the Informix server is installed.    2. Type "runbld.bat" to build the examples. Make sure       * Following files are included in your CLASSPATH environment          variable before attempting runbld.bat -         $INFORMIXDIR/extend/krakatoa/krakatoa(_g).jar         $INFORMIXDIR/extend/krakatoa/jdbc(_g).jar       * JAVAHOME environment variable points to proper JDK          installation       * DevStudio\VC\bin is included in PATH environment variable.    3. Execute "run.bat" to run all examples.  Make sure you have        created your default smart blob space.
 |