Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 25103 invoked from network); 16 Nov 2007 14:16:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Nov 2007 14:16:44 -0000 Received: (qmail 75793 invoked by uid 500); 16 Nov 2007 14:16:31 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 75760 invoked by uid 500); 16 Nov 2007 14:16:31 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 75749 invoked by uid 99); 16 Nov 2007 14:16:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Nov 2007 06:16:31 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Nov 2007 14:16:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CB8851A9832; Fri, 16 Nov 2007 06:16:22 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r595671 - /db/derby/docs/trunk/src/ref/rrefsqlj28468.dita Date: Fri, 16 Nov 2007 14:16:22 -0000 To: derby-commits@db.apache.org From: dag@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071116141622.CB8851A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dag Date: Fri Nov 16 06:16:21 2007 New Revision: 595671 URL: http://svn.apache.org/viewvc?rev=595671&view=rev Log: DERBY-1749 Implement Bracketed SQL comments (/*...*/ comments) Patch d1749-rrefsqlj28468.dita.diff add documentation for this feature. Provided by Thomas Nielsen. Modified: db/derby/docs/trunk/src/ref/rrefsqlj28468.dita Modified: db/derby/docs/trunk/src/ref/rrefsqlj28468.dita URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/ref/rrefsqlj28468.dita?rev=595671&r1=595670&r2=595671&view=diff ============================================================================== --- db/derby/docs/trunk/src/ref/rrefsqlj28468.dita (original) +++ db/derby/docs/trunk/src/ref/rrefsqlj28468.dita Fri Nov 16 06:16:21 2007 @@ -68,9 +68,11 @@
  • % and _ are character wildcards when used within character strings following a LIKE operator (except when escaped with an escape character). See .
  • -
  • Two dashes (--) and a newline character delimit a comment, as per the -SQL-92 standard. The two dashes start the comment and the newline character -ends the comment.
  • +
  • Comments can be either single- or multiline as per the SQL-92 standard. Singleline +comments start with two dashes (--) and end with the newline character. Multiline +comments are bracketed and start with forward slash star (/*), and end with star +forward slash (*/). Note that bracketed comments may be nested. Any text between +the starting and ending comment character sequence is ignored.