RE: JDBC-ODBC for Linux

2000-07-06 Thread Patrick Lacson
Thanks for the tip. I ended up just scrapping the Access DB and using SQL Server. -P -Original Message- From: Christopher Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 06, 2000 6:17 PM To: Patrick Lacson Cc: [EMAIL PROTECTED] Subject: Re: JDBC-ODBC for Linux --On Thursday, Jul

Re: JDBC-ODBC for Linux

2000-07-06 Thread Christopher Smith
--On Thursday, July 06, 2000 11:56 AM -0700 Patrick Lacson <[EMAIL PROTECTED]> wrote: > Newbie question: Is it possible to have an Access datbase file located on > the linux box and connect to it using the free Sun JDBC-ODBC driver? If > so where can I find more info. The actual code using the

JDBC-ODBC for Linux

2000-07-06 Thread Patrick Lacson
Newbie question: Is it possible to have an Access datbase file located on the linux box and connect to it using the free Sun JDBC-ODBC driver? If so where can I find more info. TIA! -Patrick -- To UNSUBSCRIBE, email to [EMAIL

Re: applet's param!

2000-07-06 Thread Christopher Hinds
Hello , could you be a little more vague , I'm not confused enough. Which OS? Well since you have included the IE in the discusion that implies W@#%^&( NT) so you have posted this question to the wrong list Cheers Chris wangmq wrote: > If I use the below applet tag, ie browser can view

Re: servlets sharing i/o file

2000-07-06 Thread Rousseau, John
On Thursday Jul 6, 2000, Marcos Lloret wrote: > hi, > > i have running a sevlets that reads from a file a number and it adds > one more. after changes it saves. > i want to use the same file from another servlet. any problem?? if > both servlets try to open and save at the same time. > >

layout- grid-

2000-07-06 Thread Marcos Lloret
hi, i have an image added like this: mt = new MediaTracker(this); boleto = getImage(getDocumentBase(),"boleto.jpg"); mt.addImage(boleto,1); load = new Thread (this); load.start(); Dimension d = new Dimension(boleto.getWidth(this),b

Re: JNI_CreateJavaVM() == -1

2000-07-06 Thread chris
On Wed, 05 Jul 2000, Juergen Kreileder wrote: > > "chris" == chris <[EMAIL PROTECTED]> writes: > > chris> I'm getting started trying to use the JNI from a C++ > chris> program. JNI_CreateJavaVM() returns -1. Not much info > chris> there except that it has failed. Any clues as t

servlets sharing i/o file

2000-07-06 Thread Marcos Lloret
hi, i have running a sevlets that reads from a file a number and it adds one more. after changes it saves. i want to use the same file from another servlet. any problem?? if both servlets try to open and save at the same time. file = 4455 servlet 1

Re: Where can I download a complete Java-Linux source codes?

2000-07-06 Thread Erik Hu
Yes, I need the source code for my MSc research. I would like to modify the JDK for real-time in some aspects. I have the binary version of the JDK downloaded from www.blackdown.org. (JDK 1.2.2. RC4) I also have the source code version of the JDK downloaded from www.sun.com, but I cannot rebui

Re: String manipulation

2000-07-06 Thread Martin Schröder
On 2000-07-05 12:42:21 -0700, Man Chi Ly wrote: > On Wed, 5 Jul 2000, Tony J. Paul wrote: > > it like this, > > > > StringBuffer sb=new StringBuffer(); > > sb.append("SELECT COF_NAME, "); > > sb.append("SALES FROM COFFEES "); > > stmt.executeQuery(sb.toString()); > > I recall