Return-Path: Delivered-To: apmail-db-derby-user-archive@www.apache.org Received: (qmail 67292 invoked from network); 19 Feb 2007 08:59:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Feb 2007 08:59:02 -0000 Received: (qmail 8381 invoked by uid 500); 19 Feb 2007 08:59:09 -0000 Delivered-To: apmail-db-derby-user-archive@db.apache.org Received: (qmail 8293 invoked by uid 500); 19 Feb 2007 08:59:09 -0000 Mailing-List: contact derby-user-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Reply-To: "Derby Discussion" Delivered-To: mailing list derby-user@db.apache.org Received: (qmail 8282 invoked by uid 99); 19 Feb 2007 08:59:08 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Feb 2007 00:59:08 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [192.18.1.36] (HELO gmp-ea-fw-1.sun.com) (192.18.1.36) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Feb 2007 00:58:57 -0800 Received: from d1-emea-09.sun.com (d1-emea-09.sun.com [192.18.2.119]) by gmp-ea-fw-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id l1J8wZXR005205 for ; Mon, 19 Feb 2007 08:58:35 GMT Received: from conversion-daemon.d1-emea-09.sun.com by d1-emea-09.sun.com (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) id <0JDP00D01CXLE000@d1-emea-09.sun.com> (original mail from John.Embretsen@Sun.COM) for derby-user@db.apache.org; Mon, 19 Feb 2007 08:58:35 +0000 (GMT) Received: from [129.159.112.236] by d1-emea-09.sun.com (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTPSA id <0JDP003QGCXHUW95@d1-emea-09.sun.com> for derby-user@db.apache.org; Mon, 19 Feb 2007 08:58:35 +0000 (GMT) Date: Mon, 19 Feb 2007 09:57:34 +0100 From: John Embretsen Subject: Re: Eclipse Plug-in Lab code is failing to find driver in derbyclient.jar In-reply-to: <45D70C0F.3070504@pobox.com> Sender: John.Embretsen@Sun.COM To: Derby Discussion Reply-to: derby-user@db.apache.org Message-id: <45D9667E.3040805@Sun.COM> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT References: <45D66AB6.9000002@pobox.com> <45D68996.2040400@amberpoint.com> <45D70C0F.3070504@pobox.com> User-Agent: Thunderbird 1.5.0.9 (X11/20061229) X-Virus-Checked: Checked by ClamAV on apache.org A. Rick Anderson wrote: > I've gone back and literally stripped the entire lab to the absolute > minimum below, but I am getting the exact same behavior. It throws an > exception when I attempt to get the ClientDriver connection. I haven't tried the eclipse plug-in for Derby, but I'm wondering if your error may have been caused by a small typo in your URL... > private static final String derbyClientURL = > "jdbc:derby://localhost:1527/jayDB:user=APP;password=APP;"; Here you use colon (:) to separate the database name from the attribute user=APP, but it should have been semicolon (;). Does it help changing "jayDB:user=" to "jayDB;user="? -- John