Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 88864 invoked from network); 6 Nov 2007 15:46:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Nov 2007 15:46:15 -0000 Received: (qmail 833 invoked by uid 500); 6 Nov 2007 15:46:02 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 688 invoked by uid 500); 6 Nov 2007 15:46:01 -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 679 invoked by uid 99); 6 Nov 2007 15:46:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 07:46:01 -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.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 15:46:42 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 938D471420A for ; Tue, 6 Nov 2007 07:45:50 -0800 (PST) Message-ID: <12165500.1194363950578.JavaMail.jira@brutus> Date: Tue, 6 Nov 2007 07:45:50 -0800 (PST) From: "John H. Embretsen (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-3176) J2ME support for phoneME platform disabled in 10.3 In-Reply-To: <7367602.1194360771239.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-3176?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12540460 ] John H. Embretsen commented on DERBY-3176: ------------------------------------------ >From derby-3176-01-phoneME-aa.diff: + else if (javaSpec != null && "Personal Basis Profile Specification".equals( javaSpec ) ) Shouldn't this rather say + else if (javaSpec != null && "Foundation Profile Specification".equals( javaSpec ) ) At least that's what my fairly recent, self-built phoneME cvm reports... (I need to test it against Derby, not sure I have all the required parts wired in yet). If the Personal Basis Profile works against Derby, perhaps we should check for both Strings? > J2ME support for phoneME platform disabled in 10.3 > -------------------------------------------------- > > Key: DERBY-3176 > URL: https://issues.apache.org/jira/browse/DERBY-3176 > Project: Derby > Issue Type: Bug > Components: JDBC > Affects Versions: 10.3.1.4 > Reporter: Rick Hillegas > Assignee: Rick Hillegas > Attachments: derby-3176-01-phoneME-aa.diff > > > Derby 10.2 runs on the phoneME small device platform. However, on that platform Derby 10.3 fails to boot databases, complaining that Derby cannot find an appropriate implementation of DataValueFactory. > For details on how to install and run the phoneME platform, please see http://blogs.sun.com/wittyman/entry/javadb_on_sun_javame_cdc These are great instructions but I needed to adjust them as follows: > 1) I had to use 10.2 because 10.3 and the development mainline would not run on this platform > 2) I needed to to set LD_LIBRARY_PATH so that the vm could find the necessary shared libraries. > Here is the phoneME startup script which worked for me: > #! /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 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.