[go: up one dir, main page]

Menu

Tree [r800] / trunk / oratcl /
 History

HTTPS access


File Date Author Commit
 compat 2001-09-12 tmh [r347] add a backwards compatability example
 doc 2017-09-21 tmh [r785] expand orainfo command with nlsgetinfo subcommand
 generic 2017-10-12 tmh [r798] fixes for bug #71 long type handling
 library 2017-11-23 tmh [r800] add function ::Oratcl::utils::getLogo to Expose...
 tclconfig 2007-12-16 tmh [r675] update README
 tests 2017-09-29 tmh [r793] update to TEA 3.10
 COPYRIGHT 2009-10-03 tmh [r755] bump the version to 4.6 in the CVS head
 CVS_TAGS 2009-10-03 tmh [r753] add tag
 ChangeLog 2017-11-22 tmh [r799] converted to SVN for source code management.
 ChangeLog.2003 2005-01-27 tmh [r517] Missed a file
 INSTALL 2005-02-02 tmh [r524] Minor change to INSTALL instructions
 Makefile.in 2017-10-02 tmh [r794] update Makefile.in with minor changes
 README 2005-11-18 tmh [r547] Add handling for environment variable ORACLE_LI...
 aclocal.m4 2005-01-27 tmh [r516] Merge "Hopefully" all development work done in ...
 configure 2017-09-29 tmh [r793] update to TEA 3.10
 configure.in 2017-09-29 tmh [r793] update to TEA 3.10
 license.terms 2017-09-21 tmh [r784] update copyright dates
 teapot.txt.in 2009-10-27 tmh [r766] teapot build

Read Me

Oratcl -  Tcl interface to Oracle database server

WHAT IS ORATCL?

Oratcl is an extension to Tool Command Language (Tcl) that provides access
to a Oracle Database server.  Oratcl adds additional Tcl commands that 
login to an Oracle Server, pass SQL code, read results, etc.  Oratcl was 
inspired by similar tools written for Perl (sybperl, oraperl) but was written 
from scratch instead of borrowing on the work of either Perl extension.

Oratcl was based on (Tom Poindexter's) earlier effort with Sybtcl.  

Oratcl features:
  -supports multiple connections to the same or different Oracle Servers
  -sends Sql code or anonymous PL blocks to the server
  -caches return rows from the server for efficiency
  -converts results to strings and returns rows as Tcl lists
  -allows cursor variables to be returned from PL/SQL (Oracle 7.2+)
  -allows user defined null values to be returned
  -Version 7 stored procedures can be executed and return values accessed
  -accesses column names, lengths, and datatypes of rows & return values
  -provides feedback of Oracle messages and codes
  -reads/writes long columns
  -commit, rollback, and autocommit options

Oratcl 3.* features:
  -describe tables (names, lengths, datatypes)
  -reads/writes lob values (binary and character)
  -more configuration optioins

Oratcl is explained in greater detail in "Tcl/Tk Tools", edited by Mark 
Harrison, and published by O'Reilly and Associates.  "Tcl/Tk Tools" is 
a new book that covers many of the popular Tcl extensions, written by
the authors of each extension (Tom wrote the chapters on Sybtcl and Oratcl.)
1st Edition published September 1997, ISBN: 1-56592-218-2
See your local bookstore, or try: 
	http://www.softpro.com
	http://www.amazon.com
	http://www.ora.com
	http://www.barnesandnoble.com


BUG REPORTS

Comments, suggestions, et.al., should be mailed to me at the above email
address, or posted to comp.lang.tcl if general enough nature.  
Hell, you can even mail to me if you like Oratcl!

Mail bug reports to:	tmh@users.sourceforge.net

If you post a question or bug report to comp.lang.tcl, I may not see it,
so please copy me also.

Please ALWAYS include: 
        -version of Oratcl
        -version of Tcl, Tk
        -version of Oracle server and OCI libary
        -version of your operating system
	-switches used with configure (see config.status)
        -compiler used, stock cc or Gcc
        -samples of SQL or Oratcl code causing problems
        -relevant database table definitions, views, procedures

ORATCL WWW PAGE
 
	http://oratcl.sourceforge.net

TCL DATABASE MAILING LIST

A mailing list is available for specific discussions about using Tcl with
databases, including Oratcl, Sybtcl, etc.  Feel free to join and mail to the
list.  The list is hosted by De Clarke.

To subscribe to this list send mail to
 
        listserv@ucolick.org
 
and in the body of the message write
 
        subscribe tcldb
 
To unsubscribe... (well, you get the idea).
 
Please remember to write to tcldb-owner with problems about the
list itself, or to postmaster@ucolick.org if you have difficulties
getting through to the tcldb-owner address.  Please do not send
subscribe and unsubscribe messages to the list itself.

 
INSTALLATION
 
Quickie install instructions:
 
        ./configure --prefix=/same/prefix/path/as/with/tcl/configure  \
                    --exec-prefix=/same/exec-prefix/path/as/with/tcl/configure 
        make
        make install
 
Didn't work? You'll have to read the INSTALL file.  Maybe you should read it
anyway.

See the file ChangeLog for changes in versions of Oratcl.

-finis-