Thread: JDBC for Java Micro Edition J2ME???
Hi, I am looking for a JDBC driver for Postgresql that can be used with the Java 2 Mirco Edition (J2ME) for Palm/PDA use. Does anybody know if such a driver exists or are there any other possibilities connecting java PDA applications with postgresql? Thanks a lot, Frederick __________________________________________________ Do You Yahoo!? Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/
What happens when you compile the driver with j2me? Dave > -----Original Message----- > From: pgsql-jdbc-owner@postgresql.org > [mailto:pgsql-jdbc-owner@postgresql.org] On Behalf Of > Frederick Klauschen > Sent: Saturday, March 16, 2002 1:22 PM > To: pgsql-jdbc@postgresql.org > Subject: [JDBC] JDBC for Java Micro Edition J2ME??? > > > Hi, > > I am looking for a JDBC driver for Postgresql > that can be used with the Java 2 Mirco Edition > (J2ME) for Palm/PDA use. > Does anybody know if such a driver exists or > are there any other possibilities connecting > java PDA applications with postgresql? > > Thanks a lot, > > Frederick > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/ > > ---------------------------(end of > broadcast)--------------------------- > TIP 3: if posting/reading through Usenet, please send an > appropriate subscribe-nomail command to > majordomo@postgresql.org so that your message can get through > to the mailing list cleanly > >
In the JDBC-Documentation, it says that you should not try to compile the driver with javac ... directly, just use the --with-java option. Since J2ME needs JDK2 for development and just seems to be some kind of toolbox, I don�t know if it is possible or how to compile the driver with j2me. Frederick --- Dave Cramer <Dave@micro-automation.net> wrote: > What happens when you compile the driver with j2me? > > Dave > > > -----Original Message----- > > From: pgsql-jdbc-owner@postgresql.org > > [mailto:pgsql-jdbc-owner@postgresql.org] On Behalf > Of > > Frederick Klauschen > > Sent: Saturday, March 16, 2002 1:22 PM > > To: pgsql-jdbc@postgresql.org > > Subject: [JDBC] JDBC for Java Micro Edition > J2ME??? > > > > > > Hi, > > > > I am looking for a JDBC driver for Postgresql > > that can be used with the Java 2 Mirco Edition > > (J2ME) for Palm/PDA use. > > Does anybody know if such a driver exists or > > are there any other possibilities connecting > > java PDA applications with postgresql? > > > > Thanks a lot, > > > > Frederick > > > > > > __________________________________________________ > > Do You Yahoo!? > > Yahoo! Sports - live college hoops coverage > http://sports.yahoo.com/ > > > > ---------------------------(end of > > broadcast)--------------------------- > > TIP 3: if posting/reading through Usenet, please > send an > > appropriate subscribe-nomail command to > > majordomo@postgresql.org so that your message can > get through > > to the mailing list cleanly > > > > > > > ---------------------------(end of > broadcast)--------------------------- > TIP 5: Have you checked our extensive FAQ? > > http://www.postgresql.org/users-lounge/docs/faq.html __________________________________________________ Do You Yahoo!? Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/
Oh, ok, now I understand the problem. You can compile the driver by hand with some instruction. Using ant you can compile it with: ant -Dmajor=7 -Dminor=2 -Dfullversion=7.2development -Ddef_pgport=5432 You will need to be in the src/interfaces/jdbc directory when you issue this command Then you can change the compile with the javac ant command. In build.xml there is an xml tag for javac and you can change the compiler there. Dave > -----Original Message----- > From: pgsql-jdbc-owner@postgresql.org > [mailto:pgsql-jdbc-owner@postgresql.org] On Behalf Of > Frederick Klauschen > Sent: Monday, March 18, 2002 3:27 AM > To: Dave@micro-automation.net; pgsql-jdbc@postgresql.org > Subject: Re: [JDBC] JDBC for Java Micro Edition J2ME??? > > > In the JDBC-Documentation, it says that you should > not try to compile the driver with javac ... directly, > just use the --with-java option. Since J2ME needs > JDK2 for development and just seems to be some kind > of toolbox, I don´t know if it is possible or how > to compile the driver with j2me. > > Frederick > > > --- Dave Cramer <Dave@micro-automation.net> wrote: > > What happens when you compile the driver with j2me? > > > > Dave > > > > > -----Original Message----- > > > From: pgsql-jdbc-owner@postgresql.org > > > [mailto:pgsql-jdbc-owner@postgresql.org] On Behalf > > Of > > > Frederick Klauschen > > > Sent: Saturday, March 16, 2002 1:22 PM > > > To: pgsql-jdbc@postgresql.org > > > Subject: [JDBC] JDBC for Java Micro Edition > > J2ME??? > > > > > > > > > Hi, > > > > > > I am looking for a JDBC driver for Postgresql > > > that can be used with the Java 2 Mirco Edition > > > (J2ME) for Palm/PDA use. > > > Does anybody know if such a driver exists or > > > are there any other possibilities connecting > > > java PDA applications with postgresql? > > > > > > Thanks a lot, > > > > > > Frederick > > > > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Yahoo! Sports - live college hoops coverage > > http://sports.yahoo.com/ > > > > > > ---------------------------(end of > > > broadcast)--------------------------- > > > TIP 3: if posting/reading through Usenet, please > > send an > > > appropriate subscribe-nomail command to > > > majordomo@postgresql.org so that your message can > > get through > > > to the mailing list cleanly > > > > > > > > > > > > ---------------------------(end of > > broadcast)--------------------------- > > TIP 5: Have you checked our extensive FAQ? > > > > http://www.postgresql.org/users-lounge/docs/faq.html > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/ > > ---------------------------(end of > broadcast)--------------------------- > TIP 6: Have you searched our list archives? > http://archives.postgresql.org