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

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

RE: JDBC & mSQL

2000-01-04 Thread Edson Carlos Ericksson Richter
An applet can do connection only to host from are served the page where applet is inside. And, you must provide that classes for connection. See docs for tag about putting classes accessible for browsers. IMPORTANT: If you are developing for Java 2 plataform, you must use Java Plug-in - not

Re: JDBC newbie question

1999-11-07 Thread James Seigel
Really 4 years? <> <> Peter Mount wrote: > On Sat, 6 Nov 1999, John N. Alegre wrote: > > > Peter, > > > > I have no problem on my end. I have 4 years expeience with Server Side > > Java. I want the most advanced JDBC driver/db combination. The question I am > > <> -

Re: JDBC newbie question

1999-11-07 Thread Peter Mount
On Sat, 6 Nov 1999, John N. Alegre wrote: > Peter, > > I have no problem on my end. I have 4 years expeience with Server Side > Java. I want the most advanced JDBC driver/db combination. The question I am > rasing is which JDBC drier is more robust and closer to the JDBC 2.0 speck. > Once I

Re: JDBC newbie question

1999-11-06 Thread John N. Alegre
Peter, I have no problem on my end. I have 4 years expeience with Server Side Java. I want the most advanced JDBC driver/db combination. The question I am rasing is which JDBC drier is more robust and closer to the JDBC 2.0 speck. Once I have a solid driver, there is no problem writing code

Re: JDBC newbie question

1999-11-01 Thread Eric vanberkel
Thanks to you too, Stick to whatever suits you... gr. Eric --- Jalaluddin Riaz <[EMAIL PROTECTED]> wrote: > hi, >thanks for help. i think i have got it sorted now. and > i'm gonna stick to > mysql, i've got used to it. > thanks again. > > > > > >I've been thru this. > > > >You go to

Re: JDBC newbie question

1999-10-26 Thread Peter Mount
On Mon, 25 Oct 1999, John N. Alegre wrote: > Has anyone else had this experience. I have been reluctant to move to > PostgrSQL for reasons of complexity and speed. Although I don't touch applets anymore, the problems with placing either all of the classes into a single jar file, or extracting t

Re: JDBC newbie question

1999-10-25 Thread John N. Alegre
Has anyone else had this experience. I have been reluctant to move to PostgrSQL for reasons of complexity and speed. Is the JDBC support that much more advanced in PostgrSQL? All comments welcome. john On 24-Oct-99 Eric vanberkel wrote: > I've been thru this. > > You go to check you have the

Re: JDBC newbie question

1999-10-24 Thread Eric vanberkel
I've been thru this. You go to check you have the 1.2.2 driver and not the 1.2.1, which did not work on my prev2 JDK + latest mysql Also for apps: java -cp .:$CLASSPATH proggie with a correct classpath set in applets $CLASSPATH won't work. You'll want to put into your html: .. .. put the mm

Re: JDBC newbie question

1999-10-20 Thread Cynthia Jeness
How are you getting the driver loaded? Also, the driver manager tries to discover the correct driver based on the URL you specify when you get a connection. So be sure that your URL is correct. Cynthia Jeness Jalaluddin Riaz wrote: > hi, > I am a newbie to JDBC programming and am having

Re: JDBC for mysql?

1999-10-15 Thread Matt Welsh
There is an interface called "mm.mysql.jdbc" at http://www.worldserver.com/mm.mysql/ I've used it and it works well. Matt Welsh, UC Berkeley Brian Gilman <[EMAIL PROTECTED]> writes: > Hello all! > > although this is not *exactly* a java Linux question, I > believe it is close e

Re: JDBC for mysql?

1999-10-15 Thread Brent Allsop
Brian Gilman <[EMAIL PROTECTED]>, I'm using Mark Matthews's MySQL JDBC driver and it is working great! You can find it at: http://www.worldserver.com/mm.mysql/> Brent Allsop -- To UNSUBSCRIBE, e

Re: JDBC for mysql?

1999-10-15 Thread jools enticknap
Hi Brian There are two available drivers for MySQL. http://www.tcx.se/Contrib/ Look for JDBC. :-) I use the mm.mysql driver, the twz driver seems to be a little overkil. Best regards --Jools P.S. If you have any Linux JDBC questions, TCX have there own mailing list, I suggest that you jo

Re: JDBC problem!

1999-10-04 Thread Peter Mount
On Wed, 29 Sep 1999, [EMAIL PROTECTED] wrote: > Try converting the int into a string. > E.g. > > int pid1; > > pid1=din.readInt(); > > String pid1; > pid1 = Integer.toString(din.readInt()); > > > > I didn't test it, but this seems like the prob

Re: JDBC problem!

1999-10-01 Thread schen
On Thu, 30 Sep 1999, ALPESH KOTHARI wrote: > Hello, > > What you told is perfectly true. But in my case it is > a different story! When I read only characters then > also it create the problem. To rectify it I have > modified my program and now I am reading only few > characters from the file(

Re: JDBC problem!

1999-09-30 Thread Weiqi Gao
ALPESH KOTHARI wrote: > > Hello, > > What you told is perfectly true. But in my case it is > a different story! When I read only characters then > also it create the problem. To rectify it I have > modified my program and now I am reading only few > characters from the file(i.e. not going till

Re: JDBC problem!

1999-09-30 Thread ALPESH KOTHARI
Hello, What you told is perfectly true. But in my case it is a different story! When I read only characters then also it create the problem. To rectify it I have modified my program and now I am reading only few characters from the file(i.e. not going till end of file). Then also the same proble

Re: JDBC problem!

1999-09-30 Thread schen
Hi Alpesh, everyone, On Wed, 29 Sep 1999, ALPESH KOTHARI wrote: > I have written one program in java2 to write the data > in postgresql. I am storing one integer and one string > in the database. When i read the string from the file > it is proper. But when i store it, it gives the > following e

Re: JDBC problem!

1999-09-29 Thread [EMAIL PROTECTED]
Try converting the int into a string. E.g. >int pid1; > pid1=din.readInt(); String pid1; pid1 = Integer.toString(din.readInt()); I didn't test it, but this seems like the problem. Troy > > Hello Everybody, > > I have written one progr

Re: JDBC problem!

1999-09-29 Thread Dallas C. Hockley
ALPESH KOTHARI wrote: > > Hello Everybody, [snip] > following exception: > java.sql.SQLException: ERROR: parser: parse error at > or near "" > [snip] > try > { > pid1=din.readInt(); >

Re: JDBC

1999-09-21 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > Thanks for the help so far regarding the JDBC-ODBC bridge. > > I have down loaded the mm.mysql driver for JDBC, which after reading the > docs, this is a class IV driver. Does this mean that it DOES NOT require the > ODBC bridge. Cos if does why is JRE still asking

Re: JDBC ODBC bridge

1999-09-17 Thread Carlos Alberto Román Zamitiz
And, why do you use JDBC ODBC Bridge? You can use pure JDBC only. Or can you explain your problem in detail? Mmm, I think you need the next line in your program: Class.forName("sun.jdbc.odbc.JdbcOdbc"); before you make the Connection object. "Nicholas.Knight" wrote: > I have obtained a driver f

Re: JDBC ODBC bridge

1999-09-16 Thread Nathan Meyers
"Nicholas.Knight" wrote: > > I have obtained a driver for MySQL for database support, but it keeps > returning an error of not being able to find JDBC ODBC bridge, where is it, > what is it and how do I install it!! Where did you get your MySQL jdbc driver? I use one from http://www.worldserver.

Re: JDBC ODBC bridge

1999-09-16 Thread Bernardo Paz Betancourt
Hi, I´m using Oracle and Java with JDBC ODBC so if you explicit a little bit your problme I may helpyou. Bernardo At 10:21 a.m. 16/09/99 +0100, you wrote: >I have obtained a driver for MySQL for database support, but it keeps >returning an error of not being able to find JDBC ODBC bridge, where

Re: JDBC - ODBC Bridge on Linux

1999-08-31 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > Why do you need a JDBC-ODBC bridge? Doesn't MySQL hava a good JDBC driver? I > thought theirs was one of the best available on Linux. > > Just wondering. > john > Try surfing `http://java.sun.com/products/jdbc/' to a list of JDBC drivers including one for MySQL.

RE: JDBC - ODBC Bridge on Linux

1999-08-28 Thread John N. Alegre
Why do you need a JDBC-ODBC bridge? Doesn't MySQL hava a good JDBC driver? I thought theirs was one of the best available on Linux. Just wondering. john On 27-Aug-99 Patrick & Freda wrote: > Hi everyone, > > I have installed MySQL, MyODBC and unixODBC on my Linux Redhat platform. > > Now i a

Re: JDBC - ODBC Bridge on Linux

1999-08-27 Thread Brad Cox
I'm using http://www.worldserver.com/~mmatthew/mysql/ Works great.. At 12:42 AM +0800 08/28/1999, Patrick & Freda wrote: >Hi everyone, > >I have installed MySQL, MyODBC and unixODBC on my Linux Redhat platform. > >Now i am looking for a JDK that contains the JDBC - ODBC classes and shared objec

Re: jdbc and oracle 8.0.5 using jdk1.2

1999-07-20 Thread sgee
This may not be exactly what you are looking for, but this is the code I use to connect to oracle. ( and it is for 1.1 ). /***/ /**

Re: JDBC in POSTGRESQL (HELP ME)

1999-06-25 Thread Anonymous
> My problem is using JDBC(ODBC) in POSTGRESQL. My machine has Red Hat >Linux 5.2. In the Howto Postgres document it is written that JDBC driver >is supplied with this CD. I created Database and tabels using psql >interactive prompt. Then I wrote one java program to access the tabels >created bef

Re: JDBC in POSTGRESQL (HELP ME)

1999-06-25 Thread Anonymous
Sitanshu Bhusan Nanda wrote: > Hi > My problem is using JDBC(ODBC) in POSTGRESQL. My machine has Red Hat > Linux 5.2. In the Howto Postgres document it is written that JDBC driver > is supplied with this CD. I created Database and tabels using psql > interactive prompt. Then I wrote one java pr

RE: jdbc drivers

1999-04-11 Thread Alexander F. Hartner
-Original Message- From: Alexander F. Hartner [SMTP:[EMAIL PROTECTED]] Sent: Sunday, April 11, 1999 20:49 To: 'Peter T Mount' Cc: [EMAIL PROTECTED] Subject: RE: jdbc drivers to contact to MS-Access i find the ODBC drivers which come with MS-office work

Re: jdbc drivers

1999-04-10 Thread Peter T Mount
On Fri, 9 Apr 1999, sheetal parade wrote: > Dear Friends, > > i am new in the world of Linux. > > i would like to know the jdbc drivers for different database available > for linux. also where can get them. > > Currently i am looking for jdbc drivers for foxpro, oracle, ms sql > server and ms

Re: JDBC for Oracle?????n

1999-03-26 Thread Christopher Rowan
Term confusion here? JDBC, an abstract database API, is part of Java and is included. JDBC requires drivers for vendor specific db access. In the case of Oracle, you need to look in the Oracle home jdbc/lib directory for a file called classes111.zip. Make sure this file is somewhere in your CL

Re: JDBC for Oracle?????n

1999-03-26 Thread John Summerfield
On Wed, 24 Mar 1999, Chien-Lung Wu wrote: > Dear firends: > I am a newbie of the JAVA and Oracle. However I have to install the Oracle on > my Linux box. I read some information said that JAVA 1.X can support JDBC. Now > this is my question. > 1. If I want to use JAVA to access Oracle, can I hav

Re: [RE: JDBC for Oracle?????]

1999-03-25 Thread Mistae
Hello, I am working in a project where I need to access our intranet database (M$ SQL Server) which has no IP addres, from the internet. I installed rmijdbc server and it allow me to reach the odbc datasources form applets running on netscape navigator but not in Internet explorer. For some reas

RE: JDBC for Oracle?????

1999-03-25 Thread Marcel Ruff
Hello, >1. If I want to use JAVA to access Oracle, can I have to install >JDBC for  ORACLE? Using the JDBC driver from http://www.oracle.com/st/products/jdbc/html/jdbc_collateral.html didn't work well in my case, i could only feed up to 1900 bytes of BLOB (as LONG RAW) data. Bigger sizes only fil

Re: JDBC for Oracle?????

1999-03-24 Thread Maureen Lecuona
Not a Java-Linux question but go to www.oracle.com and pick up the type 4 JDBC drivers. I am currently using them on my project which is entirely written with JDK1.1.7 (LINUX) and the thin 8.0.4 driver. Works reasonably well. Maureen Lecuona Chien-Lung Wu wrote: > > Dear firends: > I am a ne

Re: JDBC for Oracle?????

1999-03-24 Thread Match Grun
Look for the Oracle Thin-Client driver (classes111.zip) on their website. It is 100% java code. Match At 3/24/99 05:33 PM, Chien-Lung Wu wrote: >Dear firends: >I am a newbie of the JAVA and Oracle. However I have to install the Oracle on >my Linux box. I read some information said that JAVA 1.X

RE: JDBC for Oracle?????

1999-03-24 Thread Paolo Comitini
You can find the oracle jdbc driver on your Oracle CD or you can downloand it from http://www.oracle.com It works wery well with java 1.x on Linux. Bye Paolo Comitini On 24-Mar-99 Chien-Lung Wu wrote: > Dear firends: > I am a newbie of the JAVA and Oracle. However I have to install the Oracl

Re: JDBC/servlet problem

1999-01-11 Thread Scott Fraser
>> Thanks, tried it but it didn't work. Any other ideas? << Well looking in some old code I noticed this was how I got the driver "registered": >> // Do it both ways for kicks: Class clsDriver = Class.forName( "package.SomeDriverName" ); DriverManager.regist

Re: JDBC/servlet problem

1999-01-08 Thread Peter T Mount
On Thu, 7 Jan 1999, Ben Newman wrote: > Thanks, tried it but it didn't work. Any other ideas? Have you tried registering the jdbc driver yourself, rather than relying on the driver doing it itself? In the early days of the PostgreSQL driver, we had a similar problem. When we found that registe

Re: JDBC/servlet problem

1999-01-07 Thread Ben Newman
Thanks, tried it but it didn't work. Any other ideas? On Wed, 6 Jan 1999, Scott Fraser wrote: > >> > Connection: java.sql.SQLException: No suitable driver message. At first > I > though it was CLASSPATH problem, but I returned the CLASSPATH along with > > the error message and the jar file fo

Re: JDBC/servlet problem

1999-01-07 Thread Urban Widmark
On Wed, 6 Jan 1999, Ben Newman wrote: > I'm having a problem with servlets that use JDBC. I have a servlet that > runs a simple query and returns some rows. As a stand alone app it works > just fine, but when I switch it over to run as a servlet I get a Error > Connection: java.sql.SQLException

Re: JDBC/servlet problem

1999-01-06 Thread Scott Fraser
>> Connection: java.sql.SQLException: No suitable driver message. At first I though it was CLASSPATH problem, but I returned the CLASSPATH along with the error message and the jar file for the jdbc driver is listed. << Total long shot here, but I just noticed on one of our servers I unzipped th

Re: JDBC-connection in Linux

1998-12-14 Thread Christopher Hinds
Sorry all, I recievied a eval copy at JavaOne in March of this year and at that time they where free and very solid in terms of performance and reliabilty( even type 4, I never usded their JDBC-ODBC bridge). :-< Cheers Chris Rachel Greenham wrote: On Sat, 12 Dec 1998, Christopher Hinds wrote: >>T

Re: JDBC-connection in Linux

1998-12-14 Thread Rachel Greenham
On Sat, 12 Dec 1998, Christopher Hinds wrote: >>Try WebLogic's , they have multiple Type 4 (and Type 2) JDBC Drivers >for most of production comercial DBMSs > www.weblogic.com > >They may be free , in any event they do offer eval licenses Not free. We evaluated it with reference to connectin

Re: JDBC-connection in Linux

1998-12-13 Thread Java News Collector
At 07:38 PM 12/12/98 -0500, Leo Cyr wrote: >I too have had great success with postgresql (www.postgresql.org ;-) -- >I've used the driver and code I wrote on many platforms including 4.x+ >browsers and it works great so far. > >Is anyone using postgreSQL (6.3.2 or other) with postgresql.jar in any

RE: JDBC-connection in Linux

1998-12-13 Thread Java News Collector
At 02:17 AM 12/12/98 -0800, Tauren Mills wrote: >I'd highly recommend taking a look at MySQL. www.mysql.com > >I'm using RedHat 5.2, JRun 2.2.1, and MySQL with type 4 JDBC drivers. The >database and JDBC drivers are free. The database is faster than anything >else I've seen, including the big o

Re: JDBC-connection in Linux

1998-12-12 Thread Christopher Hinds
Try WebLogic's , they have multiple Type 4 (and Type 2) JDBC Drivers for most of production comercial DBMSs www.weblogic.com They may be free , in any event they do offer eval licenses Cheers Chris Thor Erik Karlsen wrote: > Im developing a system that uses both servlets and applets. So far

Re: JDBC-connection in Linux

1998-12-12 Thread Leo Cyr
I have seen no direct comparison between MySQL and postgresql (around 6.3.2) are the jdbc drivers stable, complete, ...? Feel free to follow up directly to me (since it's off topic) but, what makes MySQL so much better than postgresql? I've just gotten into the free source RDBMS realm and postgre

Re: JDBC-connection in Linux

1998-12-12 Thread Alex Rice
On Sat, 12 Dec 1998 02:21:06 +0100, "Thor Erik Karlsen" <[EMAIL PROTECTED]> said: Thor> Im developing a system that uses both servlets and applets. So far Thor> we = have used NT4, IIS4 with JRun 2.2a, MS SQL Server 6.5 and Thor> Symantec = dbAnywhere Server as the platform. Thor> I have Red Ha

Re: JDBC-connection in Linux

1998-12-12 Thread Leo Cyr
I too have had great success with postgresql (www.postgresql.org ;-) -- I've used the driver and code I wrote on many platforms including 4.x+ browsers and it works great so far. Is anyone using postgreSQL (6.3.2 or other) with postgresql.jar in any "high load" production environment like in an a

RE: JDBC-connection in Linux

1998-12-12 Thread Tauren Mills
I'd highly recommend taking a look at MySQL.  www.mysql.com   I'm using RedHat 5.2, JRun 2.2.1, and MySQL with type 4 JDBC drivers.  The database and JDBC drivers are free.  The database is faster than anything else I've seen, including the big ones like Oracle, MS SQL, Informix, etc.  

Re: JDBC-connection in Linux

1998-12-12 Thread Wim Ceulemans
Hi Thor   I use postgreSQL together with their type 4 JDBC driver on my linux-box and it works fine. I have Win32 clients and MacOS clients accessing the database through the JDBC driver (postgresql.jar). You can find it at www.postgresl.org.  More info concerning the JDBC driver you can fi

Re: JDBC-connection in Linux

1998-12-11 Thread Han,sang-hyuck
http://www.tcx.se/ this is a mySQL URL. binary code is free.. I used mSQL, but a friend of mine recommended it to me. I downloaded it this URL. and it has JDBC driver also.. but I didn't try it. then I didn't know about How easy to install.. .   have a good fun.. Thor Erik Karlsen wrote: >  Im

Re: JDBC-ODBC bridge

1998-11-25 Thread Martin Little
I'm intrested in what you believe you can do with an ODBC bridge driver that you can't do with a pure java driver? ../Martin "Jens E. Wunderwald" wrote: > Hi, > > I would like to use the JDBC-ODBC bridge under Linux, but could not find > it included in the Blackdown JDK port. The bridge from Su

Re: JDBC for Oracle (was: RE: Retrieving a fully qualified hostname under NT)

1998-11-13 Thread Jason Kissinger
Urban Widmark wrote: > On Fri, 13 Nov 1998, Rudhuwan Abu Bakar wrote: > > > > > hello > > > > sorry for this. > > > > Where can I get a type 4(?) JDBC driver? I am testing an Oracle server and > > want to use a Java-based client. > > > > Thank you for your time. > > > > regards > > duan > > > > I

Re: JDBC for Oracle (was: RE: Retrieving a fully qualifiedhostname under NT)

1998-11-13 Thread Robert P. Biuk-Aghai
On Fri, 13 Nov 1998, Urban Widmark wrote: > I believe Oracle includes their JDBC driver with the database, and that it > is a pure java driver. (I'm more certain of the first than the last). Yes, this is correct. We have Oracle system 8 and it includes JDBC drivers, which are 100% pure Java. Thi

Re: JDBC 2.0

1998-11-11 Thread Peter T Mount
On Thu, 12 Nov 1998, Paul Siegel wrote: > Hello - > > I'm running the blackdown JDK 1.1.6 v6, and trying to write some code using > JDBC (I've got the postgreSQL JDBC driver running). I've been using the > documentation from www.javasoft.com to help me along, and suddenly > discovered that many

Re: JDBC on Linux

1998-11-10 Thread peter . pilgrim
Have you tried the list of 3rd party drivers at http://www.javasoft.com/products/jdbc/jdbc.drivers.html ? __ Reply Separator _ Subject: JDBC on Linux Author: carlos ([EMAIL PROTECTED]) at lon-mime Date:09/11/98 16:51 I have

Re: JDBC on Linux

1998-11-10 Thread Robert P. Biuk-Aghai
Hi, We also have a Sybase System 10 DBMS, so I'm interested in the JDBC driver. Where can I get it? Is it an unlimited free version or only a time-limited evaluation version? Last time I tried, I could only find a 30-day evaluation version of the Sybase driver (which was good enough to give a 3-w

Re: JDBC on Linux

1998-11-10 Thread Joe Carter
Carlos Alberto Roman Zamitiz wrote: > > I have an applet which imports java.sql and it provides DB access, Sybase > system 10 specifically, and my applet works fine but I programmed my > applet on Win32. I downloaded the driver ConnectSoftware's FastForward and > now I'm with Linux (and I'll be w

Re: JDBC-ODBC Bridge

1998-08-28 Thread Chris Kakris
On Fri, 28 Aug 1998 [EMAIL PROTECTED] wrote: > Does anyone know of a JDBC-ODBC Bridge for Linux? I'm running Red Hat > 4.something Linux, kernel version 2.0.27. Well I'm currently using postgresql and there's a driver here... http://rufus.w3.org/linux/RPM/postgresql-jdbc.html I previo