 |
|
 |
|
Next: MySql installation.
|
| Author |
Message |
External

Since: Mar 16, 2008 Posts: 8
|
(Msg. 1) Posted: Sun Mar 16, 2008 3:38 pm
Post subject: Newbie - problem accessing DB2 with Java program. Archived from groups: comp>databases>ibm-db2, others (more info?)
|
|
|
In my installation we have DB2 on a mainframe computer. I am able to
access DB2 from my PC (WinXP) using some utilities. I wrote a Java
program to access DB2, but I am getting errors.
After command:
Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
I am getting exception:
Exception java.lang.ClassNotFoundException:
COM.ibm.db2.jdbc.app.DB2Driver
I copied db2java.zip and db2jcc.jar files to a default directory of
JBuilder, even to the same directory where I have my program, but it
did not help.
What I am doing wrong?
Thanks,
Zalek >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 16, 2008 Posts: 8
|
(Msg. 2) Posted: Sun Mar 16, 2008 4:17 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: comp>databases>ibm-db2, others (more info?)
|
|
|
On Mar 16, 6:49 pm, Arne Vajhøj wrote:
> zalek wrote:
> > In my installation we have DB2 on a mainframe computer. I am able to
> > access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> > program to access DB2, but I am getting errors.
> > After command:
> > Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
>
> > I am getting exception:
> > Exception java.lang.ClassNotFoundException:
> > COM.ibm.db2.jdbc.app.DB2Driver
>
> > I copied db2java.zip and db2jcc.jar files to a default directory of
> > JBuilder, even to the same directory where I have my program, but it
> > did not help.
> > What I am doing wrong?
>
> You need to put the JDBC driver jar file in classpath. Just putting
> then in those directories does not put them in classpath.
>
> Arne
I tried - it did not help.
I am using JBuilder to write my program, so I moved db2java.zip and
db2jcc.jar to
C:\JBuilder2005\jdk1.4\bin and
C:\JBuilder2005\jdk1.4\lib
On top of it I found a directory in a classpath variable and move this
files to this directory - nothing helped. Still getting the same
error.
Zalek >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 16, 2008 Posts: 8
|
(Msg. 3) Posted: Sun Mar 16, 2008 5:04 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Mar 16, 7:21 pm, Arne Vajhøj wrote:
> zalek wrote:
> > On Mar 16, 6:49 pm, Arne Vajhøj wrote:
> >> zalek wrote:
> >>> In my installation we have DB2 on a mainframe computer. I am able to
> >>> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> >>> program to access DB2, but I am getting errors.
> >>> After command:
> >>> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
> >>> I am getting exception:
> >>> Exception java.lang.ClassNotFoundException:
> >>> COM.ibm.db2.jdbc.app.DB2Driver
> >>> I copied db2java.zip and db2jcc.jar files to a default directory of
> >>> JBuilder, even to the same directory where I have my program, but it
> >>> did not help.
> >>> What I am doing wrong?
> >> You need to put the JDBC driver jar file in classpath. Just putting
> >> then in those directories does not put them in classpath.
>
> > I tried - it did not help.
> > I am using JBuilder to write my program, so I moved db2java.zip and
> > db2jcc.jar to
> > C:\JBuilder2005\jdk1.4\bin and
> > C:\JBuilder2005\jdk1.4\lib
>
> > On top of it I found a directory in a classpath variable and move this
> > files to this directory - nothing helped. Still getting the same
> > error.
>
> I repeat:
>
> Just putting a jar file in a directory does not put it in classpath.
>
> (with a few exceptions that does not apply here)
>
> You need explicitly to tell JBuilder to use this jar file.
>
> Arne
Thanks Arne,
I added files to JBuilder classpath, so now the import command is
working and it shows DB2Driver, here is a picture from my program:
http://www.geocities.com/bloomzalek/pictures/java.JPG
but still I am getting:
Exception java.lang.ClassNotFoundException:
COM.ibm.db2.jdbc.net.DB2Driver
Thanks,
Zalek >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 16, 2008 Posts: 2
|
(Msg. 4) Posted: Sun Mar 16, 2008 6:37 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Mar 16, 7:04 pm, zalek wrote:
> On Mar 16, 7:21 pm, Arne Vajhøj wrote:
>
>
>
> > zalek wrote:
> > > On Mar 16, 6:49 pm, Arne Vajhøj wrote:
> > >> zalek wrote:
> > >>> In my installation we have DB2 on a mainframe computer. I am able to
> > >>> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> > >>> program to access DB2, but I am getting errors.
> > >>> After command:
> > >>> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
> > >>> I am getting exception:
> > >>> Exception java.lang.ClassNotFoundException:
> > >>> COM.ibm.db2.jdbc.app.DB2Driver
> > >>> I copied db2java.zip and db2jcc.jar files to a default directory of
> > >>> JBuilder, even to the same directory where I have my program, but it
> > >>> did not help.
> > >>> What I am doing wrong?
> > >> You need to put the JDBC driver jar file in classpath. Just putting
> > >> then in those directories does not put them in classpath.
>
> > > I tried - it did not help.
> > > I am using JBuilder to write my program, so I moved db2java.zip and
> > > db2jcc.jar to
> > > C:\JBuilder2005\jdk1.4\bin and
> > > C:\JBuilder2005\jdk1.4\lib
>
> > > On top of it I found a directory in a classpath variable and move this
> > > files to this directory - nothing helped. Still getting the same
> > > error.
>
> > I repeat:
>
> > Just putting a jar file in a directory does not put it in classpath.
>
> > (with a few exceptions that does not apply here)
>
> > You need explicitly to tell JBuilder to use this jar file.
>
> > Arne
>
> Thanks Arne,
>
> I added files to JBuilder classpath, so now the import command is
> working and it shows DB2Driver, here is a picture from my program:http://www.geocities.com/bloomzalek/pictures/java.JPG
> but still I am getting:
> Exception java.lang.ClassNotFoundException:
> COM.ibm.db2.jdbc.net.DB2Driver
>
> Thanks,
>
> Zalek
Another very nice way to use classes (actually jar files) without
touching classpath is to put these jar files to the $JAVA_HOME/jre/lib/
ext/ directory.
For example, in my case, when I put db2java.zip and
db2jcc.jar to the
"C:\Program Files\Java\jre1.6.0_03\lib\ext\"
it is available for any Java application.
Just make sure that you put these jar files to the Java what you use!
Or put it to the all Java installations on your computer if you are
not sure which one you use
Alex.
http://www.myjavaserver.com/~alexfromohio/
http://www.myjavaserver.com/~alexfromohio/ >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 02, 2008 Posts: 37
|
(Msg. 5) Posted: Sun Mar 16, 2008 6:49 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
zalek wrote:
> In my installation we have DB2 on a mainframe computer. I am able to
> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> program to access DB2, but I am getting errors.
> After command:
> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
>
> I am getting exception:
> Exception java.lang.ClassNotFoundException:
> COM.ibm.db2.jdbc.app.DB2Driver
>
> I copied db2java.zip and db2jcc.jar files to a default directory of
> JBuilder, even to the same directory where I have my program, but it
> did not help.
> What I am doing wrong?
You need to put the JDBC driver jar file in classpath. Just putting
then in those directories does not put them in classpath.
Arne >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 16, 2008 Posts: 8
|
(Msg. 6) Posted: Sun Mar 16, 2008 6:50 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Mar 16, 9:37 pm, wrote:
> On Mar 16, 7:04 pm, zalek wrote:
>
>
>
> > On Mar 16, 7:21 pm, Arne Vajhøj wrote:
>
> > > zalek wrote:
> > > > On Mar 16, 6:49 pm, Arne Vajhøj wrote:
> > > >> zalek wrote:
> > > >>> In my installation we have DB2 on a mainframe computer. I am able to
> > > >>> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> > > >>> program to access DB2, but I am getting errors.
> > > >>> After command:
> > > >>> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
> > > >>> I am getting exception:
> > > >>> Exception java.lang.ClassNotFoundException:
> > > >>> COM.ibm.db2.jdbc.app.DB2Driver
> > > >>> I copied db2java.zip and db2jcc.jar files to a default directory of
> > > >>> JBuilder, even to the same directory where I have my program, but it
> > > >>> did not help.
> > > >>> What I am doing wrong?
> > > >> You need to put the JDBC driver jar file in classpath. Just putting
> > > >> then in those directories does not put them in classpath.
>
> > > > I tried - it did not help.
> > > > I am using JBuilder to write my program, so I moved db2java.zip and
> > > > db2jcc.jar to
> > > > C:\JBuilder2005\jdk1.4\bin and
> > > > C:\JBuilder2005\jdk1.4\lib
>
> > > > On top of it I found a directory in a classpath variable and move this
> > > > files to this directory - nothing helped. Still getting the same
> > > > error.
>
> > > I repeat:
>
> > > Just putting a jar file in a directory does not put it in classpath.
>
> > > (with a few exceptions that does not apply here)
>
> > > You need explicitly to tell JBuilder to use this jar file.
>
> > > Arne
>
> > Thanks Arne,
>
> > I added files to JBuilder classpath, so now the import command is
> > working and it shows DB2Driver, here is a picture from my program:http://www.geocities.com/bloomzalek/pictures/java.JPG
> > but still I am getting:
> > Exception java.lang.ClassNotFoundException:
> > COM.ibm.db2.jdbc.net.DB2Driver
>
> > Thanks,
>
> > Zalek
>
> Another very nice way to use classes (actually jar files) without
> touching classpath is to put these jar files to the $JAVA_HOME/jre/lib/
> ext/ directory.
> For example, in my case, when I put db2java.zip and
> db2jcc.jar to the
> "C:\Program Files\Java\jre1.6.0_03\lib\ext\"
> it is available for any Java application.
>
> Just make sure that you put these jar files to the Java what you use!
> Or put it to the all Java installations on your computer if you are
> not sure which one you use
>
> Alex.http://www.myjavaserver.com/~alexfromohio/
>
> http://www.myjavaserver.com/~alexfromohio/
Alex,
This is what I don't understand. Import command shows that the package
COM.ibm.db2.jdbc.net.DB2Driver is available - it shows also it
includes DB2Driver class. So why I am getting a message class not
found?
Zalek >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 02, 2008 Posts: 37
|
(Msg. 7) Posted: Sun Mar 16, 2008 7:21 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
zalek wrote:
> On Mar 16, 6:49 pm, Arne Vajhøj wrote:
>> zalek wrote:
>>> In my installation we have DB2 on a mainframe computer. I am able to
>>> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
>>> program to access DB2, but I am getting errors.
>>> After command:
>>> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
>>> I am getting exception:
>>> Exception java.lang.ClassNotFoundException:
>>> COM.ibm.db2.jdbc.app.DB2Driver
>>> I copied db2java.zip and db2jcc.jar files to a default directory of
>>> JBuilder, even to the same directory where I have my program, but it
>>> did not help.
>>> What I am doing wrong?
>> You need to put the JDBC driver jar file in classpath. Just putting
>> then in those directories does not put them in classpath.
>
> I tried - it did not help.
> I am using JBuilder to write my program, so I moved db2java.zip and
> db2jcc.jar to
> C:\JBuilder2005\jdk1.4\bin and
> C:\JBuilder2005\jdk1.4\lib
>
> On top of it I found a directory in a classpath variable and move this
> files to this directory - nothing helped. Still getting the same
> error.
I repeat:
Just putting a jar file in a directory does not put it in classpath.
(with a few exceptions that does not apply here)
You need explicitly to tell JBuilder to use this jar file.
Arne >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Feb 15, 2008 Posts: 43
|
(Msg. 8) Posted: Sun Mar 16, 2008 9:50 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
wrote:
> Another very nice way to use classes (actually jar files) without
> touching classpath is to put these jar files to the $JAVA_HOME/jre/lib/
> ext/ directory.
You mean a very *bad* way to use JAR files is to put them there.
It is also useless for those writing software to deploy elsewhere - for those
folks it is necessary to master deployment with classpaths specific to the
application.
Java extension directories are a way to customize the Java platform, not
suitable for creating application classpaths. At least, not for JVMs that are
going to run more than one application with different library requirements.
--
Lew >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 02, 2008 Posts: 37
|
(Msg. 9) Posted: Sun Mar 16, 2008 10:05 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
zalek wrote:
> On Mar 16, 7:21 pm, Arne Vajhøj wrote:
>> zalek wrote:
>>> On Mar 16, 6:49 pm, Arne Vajhøj wrote:
>>>> zalek wrote:
>>>>> In my installation we have DB2 on a mainframe computer. I am able to
>>>>> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
>>>>> program to access DB2, but I am getting errors.
>>>>> After command:
>>>>> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
>>>>> I am getting exception:
>>>>> Exception java.lang.ClassNotFoundException:
>>>>> COM.ibm.db2.jdbc.app.DB2Driver
>>>>> I copied db2java.zip and db2jcc.jar files to a default directory of
>>>>> JBuilder, even to the same directory where I have my program, but it
>>>>> did not help.
>>>>> What I am doing wrong?
>>>> You need to put the JDBC driver jar file in classpath. Just putting
>>>> then in those directories does not put them in classpath.
>>> I tried - it did not help.
>>> I am using JBuilder to write my program, so I moved db2java.zip and
>>> db2jcc.jar to
>>> C:\JBuilder2005\jdk1.4\bin and
>>> C:\JBuilder2005\jdk1.4\lib
>>> On top of it I found a directory in a classpath variable and move this
>>> files to this directory - nothing helped. Still getting the same
>>> error.
>> I repeat:
>>
>> Just putting a jar file in a directory does not put it in classpath.
>>
>> (with a few exceptions that does not apply here)
>>
>> You need explicitly to tell JBuilder to use this jar file.
>
> I added files to JBuilder classpath, so now the import command is
> working and it shows DB2Driver, here is a picture from my program:
> http://www.geocities.com/bloomzalek/pictures/java.JPG
> but still I am getting:
> Exception java.lang.ClassNotFoundException:
> COM.ibm.db2.jdbc.net.DB2Driver
Exactly where did you add it to classpath ?
You seems to be using JBuilder classis (non-Eclipse based).
You add it in:
project
project properties
required libraries
add
...
Arne >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 02, 2008 Posts: 37
|
(Msg. 10) Posted: Sun Mar 16, 2008 10:17 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
wrote:
> Another very nice way to use classes (actually jar files) without
> touching classpath is to put these jar files to the $JAVA_HOME/jre/lib/
> ext/ directory.
> For example, in my case, when I put db2java.zip and
> db2jcc.jar to the
> "C:\Program Files\Java\jre1.6.0_03\lib\ext\"
> it is available for any Java application.
>
> Just make sure that you put these jar files to the Java what you use!
> Or put it to the all Java installations on your computer if you are
> not sure which one you use
Very bad way.
Builds will break when Java is updated.
It does not work with multiple versions of the same software.
Etc..
Arne >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 22, 2004 Posts: 2
|
(Msg. 11) Posted: Mon Mar 17, 2008 1:16 am
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: comp>lang>java>databases (more info?)
|
|
|
zalek wrote:
> In my installation we have DB2 on a mainframe computer. I am able to
> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> program to access DB2, but I am getting errors.
> After command:
> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
>
> I am getting exception:
> Exception java.lang.ClassNotFoundException:
> COM.ibm.db2.jdbc.app.DB2Driver
>
> I copied db2java.zip and db2jcc.jar files to a default directory of
> JBuilder, even to the same directory where I have my program, but it
> did not help.
> What I am doing wrong?
>
> Thanks,
>
> Zalek
Thre's a good series of IBM DB2 Technical articles on mix-and-match DB2
client and server platform named :
Connectivity cheat sheet for Application Developers
on Part 4 :
http://www.ibm.com/developerworks/db2/library/techarticle/dm-0401chong/i
ndex.html
you could find a detailed answer.
Best regards,
Davide
--
Ing. Davide Grandi
davide.grandi.RemoveThis@mclink.it >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Feb 22, 2008 Posts: 16
|
(Msg. 12) Posted: Mon Mar 17, 2008 11:33 am
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: comp>databases>ibm-db2, others (more info?)
|
|
|
zalek wrote:
> In my installation we have DB2 on a mainframe computer. I am able to
> access DB2 from my PC (WinXP) using some utilities. I wrote a Java
> program to access DB2, but I am getting errors.
> After command:
> Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
>
> I am getting exception:
> Exception java.lang.ClassNotFoundException:
> COM.ibm.db2.jdbc.app.DB2Driver
Case matters, I've not used DB2 but are you certain the COM is capitalised?
I'd expect
com.ibm.db2.jdbc.app.DB2Driver
instead of
COM.ibm.db2.jdbc.app.DB2Driver
Also, you are cross-posting to four newsgroups, a lot of people will
have their newsreaders configured to treat highly cross-posted messages
as SPAM and ignore them. IME it is better to pick one newsgroup.
Followups set to c.l.j.d only.
--
RGB >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Feb 15, 2008 Posts: 43
|
(Msg. 13) Posted: Mon Mar 17, 2008 11:34 am
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: comp>lang>java>databases (more info?)
|
|
|
zalek wrote:
>> COM.ibm.db2.jdbc.app.DB2Driver
RedGrittyBrick wrote:
> Case matters, I've not used DB2 but are you certain the COM is capitalised?
>
> I'd expect
> com.ibm.db2.jdbc.app.DB2Driver
> instead of
> COM.ibm.db2.jdbc.app.DB2Driver
And you'd be wrong. Case matters.
<http://www.ibm.com/developerworks/db2/library/techarticle/0203zikopoulos/0203zikopoulos.html#type2>
(and ... #type3 as well).
I have yet to find out why IBM did that.
--
Lew >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 16, 2008 Posts: 8
|
(Msg. 14) Posted: Mon Mar 17, 2008 6:20 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: comp>databases>ibm-db2, others (more info?)
|
|
|
On Mar 16, 10:17 pm, Arne Vajhøj wrote:
> wrote:
> > Another very nice way to use classes (actually jar files) without
> > touching classpath is to put these jar files to the $JAVA_HOME/jre/lib/
> > ext/ directory.
> > For example, in my case, when I put db2java.zip and
> > db2jcc.jar to the
> > "C:\Program Files\Java\jre1.6.0_03\lib\ext\"
> > it is available for any Java application.
>
> > Just make sure that you put these jar files to the Java what you use!
> > Or put it to the all Java installations on your computer if you are
> > not sure which one you use
>
> Very bad way.
>
> Builds will break when Java is updated.
>
> It does not work with multiple versions of the same software.
>
> Etc..
>
> Arne
Guys,
Thanks to all for your help - Arne was 100% right - it is my fault.
After receiving class not found conditions I copied db2java.zip and
db2jcc.jar to any possible directory - it does not help. I removed
these files, put to only 1 directory and using "properties" in
JBuilder I added pointed to this directory - and now my Java program
is working.
Thanks again!
Zalek >> Stay informed about: Newbie - problem accessing DB2 with Java program. |
|
| Back to top |
|
 |  |
External

Since: Mar 02, 2008 Posts: 37
|
(Msg. 15) Posted: Mon Mar 17, 2008 8:36 pm
Post subject: Re: Newbie - problem accessing DB2 with Java program. [Login to view extended thread Info.] Archived from groups: comp>lang>java>databases (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
| Related Topics: | Accessing mainframe DB2 in Java. - Hello, I am a mainframe Cobol programmer (yes - Cobol programmers are still around, mostly in caves) and I am writing a java code to access DB2. In a Cobol world after each SQL command we are checking for return conditions like success (sqlcode=0), not....
Java Requierment - Hi, Dear business partners we have an urgent requirement on .net developer Thanks & Regards Pavani.c2c@gmail.com Pavani_savvy@gmail.com
Need to Learn about the Java ODBC - From February to July of last year I worked for a company where I wrote C code that accessed a PostgreSQL database with SQL commands and generated the output my supervisor wanted. Now I'm working for a different company that doesn't have a C..
free database for java - Hello. I am looking for best free database for java & navigator tool (Till I found someone to invest on my software ...) After I have asked some people : I have found Derby db & Squirrel-sql db-navigator. .... but I see some opinions that Derb...
Java Database for mobile phone - I'm searching for a simple Java database for mobile phone (motorola v550). I would like to create a database with few fields containing texts. Is there some free/shareware software? Is there a very simple Java spreadsheet for mobile phone motorola v550?... |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|