Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 28501 invoked from network); 5 Nov 2007 16:08:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Nov 2007 16:08:27 -0000 Received: (qmail 96860 invoked by uid 500); 5 Nov 2007 16:06:55 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 96834 invoked by uid 500); 5 Nov 2007 16:06:55 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 96820 invoked by uid 99); 5 Nov 2007 16:06:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Nov 2007 08:06:55 -0800 X-ASF-Spam-Status: No, hits=-1.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [192.18.43.132] (HELO sca-es-mail-1.sun.com) (192.18.43.132) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Nov 2007 16:06:56 +0000 Received: from fe-sfbay-10.sun.com ([192.18.43.129]) by sca-es-mail-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id lA5G6a8H028584 for ; Mon, 5 Nov 2007 08:06:36 -0800 (PST) Received: from conversion-daemon.fe-sfbay-10.sun.com by fe-sfbay-10.sun.com (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007)) id <0JR100C01JEDX700@fe-sfbay-10.sun.com> (original mail from Richard.Hillegas@Sun.COM) for derby-dev@db.apache.org; Mon, 05 Nov 2007 08:06:35 -0800 (PST) Received: from richard-hillegas-computer.local ([129.150.17.93]) by fe-sfbay-10.sun.com (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007)) with ESMTPSA id <0JR1008CHJEZG120@fe-sfbay-10.sun.com> for derby-dev@db.apache.org; Mon, 05 Nov 2007 08:06:35 -0800 (PST) Date: Mon, 05 Nov 2007 08:06:55 -0800 From: Rick Hillegas Subject: Can't run Derby 10.3 on CDC platform Sender: Richard.Hillegas@Sun.COM To: derby-dev@db.apache.org Message-id: <472F3F9F.80000@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) X-Virus-Checked: Checked by ClamAV on apache.org I am able to run Derby 10.2 on the phoneME implementation of the CDC platform. That is, using Derby 10.2 on that platform, I am able to successfully create a database and query the system tables. So far so good. However, when I run the same experiment with Derby 10.3, the database fails to boot because it can't find an appropriate DataValueFactory. This is true whether I use the Derby 10.3 jars, current jars built from the mainline, or the classtree built from the mainline. I would appreciate clues about what changed in 10.3 which would cause this behavior. Thanks, -Rick For the record, I'm including the script I use to boot a Derby database on the phoneME platform: #! /bin/bash # # Run an ij script in the phoneME vm # # $1 is the script to run export LD_LIBRARY_PATH=$CDC_HOME/lib cd ~/demo/tearoffToPhone/data $CDC_HOME/bin/cvm -Xbootclasspath/a:$JSR169_HOME/lib/jsr169.jar \ -cp $DERBYJARS/derby.jar:$DERBYJARS/derbytools.jar \ -Dij.dataSource=org.apache.derby.jdbc.EmbeddedSimpleDataSource \ -Dij.dataSource.databaseName=sample \ -Dij.dataSource.createDatabase=create \ org.apache.derby.tools.ij $1