Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 53840 invoked from network); 8 Aug 2006 21:47:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Aug 2006 21:47:33 -0000 Received: (qmail 51057 invoked by uid 500); 8 Aug 2006 21:47:33 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 51024 invoked by uid 500); 8 Aug 2006 21:47:33 -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 51013 invoked by uid 99); 8 Aug 2006 21:47:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Aug 2006 14:47:33 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Aug 2006 14:47:32 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 10EFD1A981A; Tue, 8 Aug 2006 14:47:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r429834 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/ Date: Tue, 08 Aug 2006 21:47:08 -0000 To: derby-commits@db.apache.org From: davidvc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060808214712.10EFD1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: davidvc Date: Tue Aug 8 14:47:07 2006 New Revision: 429834 URL: http://svn.apache.org/viewvc?rev=429834&view=rev Log: DERBY-1377: (Partial) - Dag's changes to impl/sql Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorInfo.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorTableReference.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericActivationHolder.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericClassInfo.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericColumnDescriptor.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericLanguageFactory.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameter.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameterValueSet.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericResultDescription.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStatement.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStorablePreparedStatement.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/LanguageDbPropertySetter.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/build.xml Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorInfo.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorInfo.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorInfo.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorInfo.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.CursorInfo - Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorTableReference.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorTableReference.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorTableReference.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/CursorTableReference.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.CursorTableReference - Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericActivationHolder.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericActivationHolder.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericActivationHolder.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericActivationHolder.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericActivationHolder - Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericClassInfo.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericClassInfo.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericClassInfo.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericClassInfo.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericClassInfo - Copyright 2000, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericColumnDescriptor.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericColumnDescriptor.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericColumnDescriptor.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericColumnDescriptor.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericColumnDescriptor - Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericLanguageFactory.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericLanguageFactory.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericLanguageFactory.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericLanguageFactory.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericLanguageFactory - Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameter.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameter.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameter.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameter.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericParameter - Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameterValueSet.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameterValueSet.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameterValueSet.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericParameterValueSet.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericParameterValueSet - Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericPreparedStatement - Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericResultDescription.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericResultDescription.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericResultDescription.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericResultDescription.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericResultDescription - Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStatement.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStatement.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStatement.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStatement.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericStatement - Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStorablePreparedStatement.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStorablePreparedStatement.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStorablePreparedStatement.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericStorablePreparedStatement.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.GenericStorablePreparedStatement - Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/LanguageDbPropertySetter.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/LanguageDbPropertySetter.java?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/LanguageDbPropertySetter.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/LanguageDbPropertySetter.java Tue Aug 8 14:47:07 2006 @@ -2,11 +2,12 @@ Derby - Class org.apache.derby.impl.sql.LanguageDbPropertySetter - Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/build.xml URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/build.xml?rev=429834&r1=429833&r2=429834&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/build.xml (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/build.xml Tue Aug 8 14:47:07 2006 @@ -1,4 +1,20 @@ +