Return-Path: Delivered-To: apmail-ibatis-user-java-archive@www.apache.org Received: (qmail 84011 invoked from network); 24 Aug 2007 00:02:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Aug 2007 00:02:05 -0000 Received: (qmail 65500 invoked by uid 500); 24 Aug 2007 00:01:55 -0000 Delivered-To: apmail-ibatis-user-java-archive@ibatis.apache.org Received: (qmail 65483 invoked by uid 500); 24 Aug 2007 00:01:55 -0000 Mailing-List: contact user-java-help@ibatis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user-java@ibatis.apache.org Delivered-To: mailing list user-java@ibatis.apache.org Received: (qmail 65472 invoked by uid 99); 24 Aug 2007 00:01:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Aug 2007 17:01:55 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [68.142.200.145] (HELO web30802.mail.mud.yahoo.com) (68.142.200.145) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 24 Aug 2007 00:01:50 +0000 Received: (qmail 86080 invoked by uid 60001); 24 Aug 2007 00:01:28 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=kq2T0sAOclLlvZX0DQKHwXE+PTfGt5WtYkKj0A87opBFfGIut98jknD+kyB722ENdckGsfosBKY62+BvPMj6zJ8wJ3lKNrF+1j7XbkviwhRy36EQndWyZibdtmQGKJqDLc+E1E9lFDLHSyv95xWLzrEeoqXvc5CNXYclCbXhjD8=; X-YMail-OSG: p_DnINMVM1lX6q5JtYkQ2ZqhHUfFzpaYGUhU86ugvki4r_9IY16iDd.XnMJcxxsFuQfdXS2wtQ-- Received: from [12.171.160.202] by web30802.mail.mud.yahoo.com via HTTP; Thu, 23 Aug 2007 17:01:28 PDT Date: Thu, 23 Aug 2007 17:01:28 -0700 (PDT) From: Robert Glover Subject: Re: Re: Can anyone offer help on "There is no WRITEABLE property named 'lName'" To: user-java@ibatis.apache.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <277719.84544.qm@web30802.mail.mud.yahoo.com> X-Virus-Checked: Checked by ClamAV on apache.org One comment, then one question. The comment: The suggestions worked perfectly. Thanks. Here's the final product:
...snip... >I have two tables which Abator turns into the same class name, causing a >compile error because two classes cannot have the same name in the same >package. ...snip... >use the "domainObjectName" attribute of the element - this way, you can >name the generated objects anything you wish. It's like rename for a table. > >Jeff Butler the question: I'm reading this very interesting little book called, "Oracle Regular Expresions" (pocket reference, O'Reilly, by Gennick/Linsely). Oracle regular expression are only available in version 10g and higher. It would be a huge help if I could use Oracle regular expressions with abator. Here is an example from the book of using an Oracle regular expression: SELECT park_name FROM park WHERE REGEXP_LIKE(description, '[[:digit:]]{3}-[[:digit:]]{4}'); If there is a way to do that with Abator it would be tremendously helpful in my current project, in place of "LIKE". Robert Glover