Sponsored Content
Special Forums News, Links, Events and Announcements Software Releases - RSS News tox 1.1 build 0 (Default branch) Post 302241654 by Linux Bot on Tuesday 30th of September 2008 02:00:02 AM
Old 09-30-2008
tox 1.1 build 0 (Default branch)

ImageThe tox (Tomcat, Oracle, and XML) Web archive is afoundation for development of HTTP-basedapplications using Tomcat (or some other servletcontainer) and an Oracle RDBMS. It requires codingprimarily in PL/SQL, JavaScript, and XSLT, butalso in HTML, CSS, and potentially Java. Itenables the construction of applications using themodel/view/controller (MVC) design pattern. With acontroller that executes interpreted XML forcreating the model and view, developers canconstruct new functionality. The model isretrieved either via includes or by the executionof Oracle's stored procedures, and then passed toan XML stylesheet transform to construct andreturn the view. Different combinations andoptions provide rich dynamic content.License: GNU General Public License v2Changes:
This release fixes a bug where model parameters could not contain a single quote. It improves performance by using StringBuilder instead of StringBuffer. It improves performance by testing for verbose debugging outside of the debug class rather than inside the debug class method. It utilizes Java 1.5 URLConnection.setReadTimeout in the href class, thus eliminating the need for a sub-class thread to perform the timeout function.Image

Image

More...
 
DBIx::Class::Storage::DBI::Oracle::WhereJoins(3)	User Contributed Perl Documentation	  DBIx::Class::Storage::DBI::Oracle::WhereJoins(3)

NAME
DBIx::Class::Storage::DBI::Oracle::WhereJoins - Oracle joins in WHERE syntax support (instead of ANSI). PURPOSE
This module is used with Oracle < 9.0 due to lack of support for standard ANSI join syntax. SYNOPSIS
DBIx::Class should automagically detect Oracle and use this module with no work from you. DESCRIPTION
This class implements Oracle's WhereJoin support. Instead of: SELECT x FROM y JOIN z ON y.id = z.id It will write: SELECT x FROM y, z WHERE y.id = z.id It should properly support left joins, and right joins. Full outer joins are not possible due to the fact that Oracle requires the entire query be written to union the results of a left and right join, and by the time this module is called to create the where query and table definition part of the SQL query, it's already too late. METHODS
See DBIx::Class::SQLMaker::OracleJoins for implementation details. BUGS
Does not support full outer joins. Probably lots more. SEE ALSO
DBIx::Class::SQLMaker DBIx::Class::SQLMaker::OracleJoins DBIx::Class::Storage::DBI::Oracle::Generic DBIx::Class AUTHOR
Justin Wheeler "<jwheeler@datademons.com>" CONTRIBUTORS
David Jack Olrik "<djo@cpan.org>" LICENSE
This module is licensed under the same terms as Perl itself. perl v5.18.2 2013-07-12 DBIx::Class::Storage::DBI::Oracle::WhereJoins(3)
All times are GMT -4. The time now is 09:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy