Re: MySQL JDBC Problem

2006-05-02 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dyego Souza Dantas Leal said the following on 5/2/2006 2:58 PM: > I have a problem using the latest version of Connector/J > > > the DESC of table shows: > > mysql> desc tiposelo; > ++-+--+-+-+

MySQL JDBC Problem

2006-05-02 Thread Dyego Souza Dantas Leal
I have a problem using the latest version of Connector/J the DESC of table shows: mysql> desc tiposelo; ++-+--+-+-++ | Field | Type| Null | Key | Default | Extra | ++-+-

Re: MySQL JDBC Exception: "No operations allowed after connection closed"

2006-03-16 Thread amiljusevic
rom: [EMAIL PROTECTED] To: mysql@lists.mysql.com Sent: Tue, 14 Mar 2006 13:37:55 -0500 Subject: MySQL JDBC Exception: "No operations allowed after connection closed" I use Tomcat 5.0.28 on both Fedora and FreeBSD, MySQL 4.1.14, J/Connector JDBC driver for MySQL 3.1.11 and JOTM 2

MySQL JDBC Exception: "No operations allowed after connection closed"

2006-03-14 Thread amiljusevic
I use Tomcat 5.0.28 on both Fedora and FreeBSD, MySQL 4.1.14, J/Connector JDBC driver for MySQL 3.1.11 and JOTM 2.0.10. From time to time I get the MySQL JDBC driver exception "No operations allowed after connection closed", after which DB calls from my application keep failing.

Re: MySQL JDBC driver problem

2003-03-17 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Shu-Ping Lin wrote: > Hi, How are you? > > I have a problem to jdbc driver. My paltform is win2000 professional and > MySQL Server's version is 3.23.55. > > I use jdbc driver of mysql-connector-java-3.0.6-stable.jar and i find some > problems to this

MySQL JDBC driver problem

2003-03-16 Thread Shu-Ping Lin
Hi, How are you? I have a problem to jdbc driver. My paltform is win2000 professional and MySQL Server's version is 3.23.55. I use jdbc driver of mysql-connector-java-3.0.6-stable.jar and i find some problems to this jdbc driver version. When i use some method about setting or getting String suc

Re: MySql JDBC connection pooling in Websphere

2003-01-07 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tom O'Neil wrote: I have configured WAS Express 5.0 to connect to MySql 4.0, however I am unable to open any connections. I know that the connection to the MySql server works, because if I change any of the connection parameters (port, database name,

MySql JDBC connection pooling in Websphere

2003-01-07 Thread Tom O'Neil
I have configured WAS Express 5.0 to connect to MySql 4.0, however I am unable to open any connections. I know that the connection to the MySql server works, because if I change any of the connection parameters (port, database name, login), the JDBC driver returns the appropriate error message. I h

Re: MySql JDBC

2002-11-18 Thread Scott Pippin
What version of MySQL JDBC are you using? Scott Pippin [EMAIL PROTECTED] >>> "jsplist" <[EMAIL PROTECTED]> 11/16/02 12:13PM >>> Hello ! , Im running Tomcat on a Windows machine and Ive got my CLASSPATH pointing to c:\tomcat\lib\mysql.jar . Then in my webap

Re: Is the mysql JDBC driver thread safe?

2002-11-13 Thread Mark Matthews
st of the API can not be used in a threaded manner. ie, can I open just one connection to the database for a multithreaded servlet? Will the mysql JDBC driver serialize access or allow concurrent statements? Or will I have to worry about synchronization? The driver will serialize access, bu

Re: Problem with mysql jdbc Connector

2002-10-13 Thread Mark Matthews
janesh wrote: > HI > I am accessing mysql through Websphere 5.0 through jsp file . it says > SQLException: Cannot connect to MySQL server on host:3306. Is there > a MySQL server running on the machine/port you are trying to connect to? > (java.security.AccessControlException) > SQLState: 08S01 >

Problem with mysql jdbc Connector

2002-10-11 Thread janesh
HI I am accessing mysql through Websphere 5.0 through jsp file . it says SQLException: Cannot connect to MySQL server on host:3306. Is there a MySQL server running on the machine/port you are trying to connect to? (java.security.AccessControlException) SQLState: 08S01 VendorError: 0 This exception

Re: Creating/droping database using mySQL JDBC driver

2002-09-30 Thread Clayburn W. Juniel, III
On Monday, September 30, 2002, at 03:53 24h, Slava Imeshev wrote: > Hello All, > > Could anyone help me with this issue? Is it > possible to create/drop database using mySQL > JDBC driver? > Yes. -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-77

Re: MySQL jdbc updateable recordsets

2002-06-20 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Morris Ford wrote: | Mark, | I verified that I am using the latest version. I | have written a small test java program using jdbc | to test updating through a resultset and whenever | I use resultSet.updateString(x, y), I get an | exception that

Re: mysql+jdbc+international character support

2002-04-17 Thread Jan-Michael Ong
Hello, Thank you for your immediate reply. What database version have you used these drivers for? Do you have a preference for either? Thanks again. jm "TAKAHASHI, Tomohiro" wrote: > Hi, > Both gweMySQL and MM.MYSQL support Unicode-Nativecode conversion. > > [gweMySQL Driver] > http

Re: mysql+jdbc+international character support

2002-04-17 Thread TAKAHASHI, Tomohiro
Hi, Both gweMySQL and MM.MYSQL support Unicode-Nativecode conversion. [gweMySQL Driver] http://www.t3-jpn.com/jdbc/jdbcmysql.html i.e. String url = "jdbc:mysql://server:3306/dbname?characterEncoding=EUC_JP"; [MM.MYSQL Driver] http://mmmysql.sourceforge.net/ Jan-Micha

mySQl JDBC connectivity in Windows.

2002-02-21 Thread Bill Fogarty
I am having problems connecting to the mysql databse from a Java application in Windows 2K, I am using JDBC and have the mySQL odbc software installed. I am running mysql from the command line prompt in Windows 2k. I fear I may be doing something wrong, if anyone has a step by step solution, i

RE: MySQL JDBC setup in weblogic.

2002-01-28 Thread Richard Bolen
=PoolName weblogic.allow.reserve.weblogic.jdbc.connectionPool.PoolName=everyone cheers - Rich -Original Message- From: Reinstein, Lenny [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 1:47 PM To: [EMAIL PROTECTED] Subject: MySQL JDBC setup in weblogic. Does anyone know how to

MySQL JDBC setup in weblogic.

2002-01-28 Thread Reinstein, Lenny
Does anyone know how to set up a connection pool to the MySQL database in weblogic.properties? I tried to set it up as follows: weblogic.jdbc.connectionPool.mysqlConnPool=\ url=jdbc:mysql:localhost:3306,\ driver=org.gjt.mm.mysql.Driver,\ loginDelaySecs=1,\ initialCapa

Re: JSP newbie needs to run MySQL-JDBC.

2001-10-31 Thread Igor Fedulov
> Name: MySQL > Display Name: MySQL > Driver: org.gjt.mm.mysql.Driver > URL: > jdbc:mysql://192.168.0.2:80/studiosusa?user=root&password=axnolnms I would assume that here is your problem, most likely mysql is not running on port 80 on your machine and you should change it to 3306,

JSP newbie needs to run MySQL-JDBC.

2001-10-31 Thread Benj Arriola
..jar from SourceForge.com as my MySQL JDBC driver. 4. After doing this, I went to the JDBC Data Sources of the Default Server of JRun Application Management Console. And I added a new entry with the following: Name: MySQL Display Name: MySQL Driver: org.gjt.mm.mysql.Driver URL:

RE: JSP newbie needs to run MySQL-JDBC.

2001-10-29 Thread Edward J. Apostol
PROTECTED] Subject: JSP newbie needs to run MySQL-JDBC. Hello Everyone, I need to run MySQL using JSP. I am a JSP newbie, actually a Java newbie too. I am more of a PHP/MySQL guy. I have successfully installed Allaire JRun 3.0 on Win98 using PWS. JRun has an application management console and

RE: JSP newbie needs to run MySQL-JDBC.

2001-10-29 Thread Erik
needs to run MySQL-JDBC. Hello Everyone, I need to run MySQL using JSP. I am a JSP newbie, actually a Java newbie too. I am more of a PHP/MySQL guy. I have successfully installed Allaire JRun 3.0 on Win98 using PWS. JRun has an application management console and I cannot seem to run MySQL

JSP newbie needs to run MySQL-JDBC.

2001-10-29 Thread Benj Arriola
..jar from SourceForge.com as my MySQL JDBC driver. 4. After doing this, I went to the JDBC Data Sources of the Default Server of JRun Application Management Console. And I added a new entry with the following: Name: MySQL Display Name: MySQL Driver: org.gjt.mm.mysql.Driver URL:

FW: MySQL JDBC

2001-07-21 Thread Venu Anuganti
-Original Message- From: shane [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 21, 2001 10:49 AM To: [EMAIL PROTECTED] Subject: RE: MySQL JDBC yes. thks actually all i did was to do a: GRANT ALL ON DB.* TO "user"@"localhost" IDENTIFIED BY "pwd" -Or

RE: MySQL JDBC

2001-07-19 Thread Venu Anuganti
ception: " + E.getMessage()); System.out.println("SQLState: " + E.getSQLState()); System.out.println("VendorError: " + E.getErrorCode()); } } } -- > -Original Message- > From: shane [mailto:[EMAIL PROTECTED]] > Sent: T

RE: MySQL JDBC

2001-07-19 Thread shane
ardo Striquer Soares; shane Cc: [EMAIL PROTECTED] Subject: Re: MySQL JDBC Hi Ricardo / Shane If you are using mmmysql JDBC Driver, please find the attaches simple JDBC sample that can be used with this driver to connect to MySQL server and do some basic operations. Before compiling the sample, m

Re: MySQL JDBC

2001-07-19 Thread Venu Anuganti
/achieved directory. Hope this helps you. If you have any questions or feedback let us know. Thank you Venu Anuganti - Original Message - From: "Ricardo Striquer Soares" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 19, 2001 2:47 PM Subject: MySQL JD

MySQL JDBC

2001-07-19 Thread Ricardo Striquer Soares
i am facing the same problem Kenneth explane above, can anyone tell me what to do ? PS: i tried to use the mysql port number as well Kenneth Fleck wrote: > > Hi ! > I have a problem accessing a MySQL DB from a java-app. On commandline I > can get in without problems with > > mysql -u -p > >

Re: MySQL JDBC

2001-06-28 Thread Kenneth Fleck
gt; Regards > Thomas > > -Original Message- > From: flag [mailto:flag]On Behalf Of Kenneth Fleck > Sent: 28. juni 2001 12:19 > To: mysql list > Subject: MySQL JDBC > > Hi ! > I have a problem accessing a MySQL DB from a java-app. On commandline I > can get in wit

RE: MySQL JDBC

2001-06-28 Thread Thomas Michael Koch
Kenneth Fleck Sent: 28. juni 2001 12:19 To: mysql list Subject: MySQL JDBC Hi ! I have a problem accessing a MySQL DB from a java-app. On commandline I can get in without problems with mysql -u -p but with the following connect String: jdbc:mysql://localhost/?user=&password= I get st

MySQL JDBC

2001-06-28 Thread Kenneth Fleck
Hi ! I have a problem accessing a MySQL DB from a java-app. On commandline I can get in without problems with mysql -u -p but with the following connect String: jdbc:mysql://localhost/?user=&password= I get strage result. First time execution error message (from SQLException caught) is:

Re: Java/Linux Mysql JDBC?

2001-06-03 Thread Nico D
ld from this place: > http://mmmysql.sourceforge.net/ > > That's it! > > ...Rohit > > > > - Original Message - > From: Nico D <[EMAIL PROTECTED]> > To: Rohit Peyyeti <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Sunday, Jun

Re: Java/Linux Mysql JDBC?

2001-06-03 Thread Rohit Peyyeti
ico D <[EMAIL PROTECTED]> To: Rohit Peyyeti <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, June 03, 2001 1:32 PM Subject: Re: Java/Linux Mysql JDBC? > I've download the tar.gz file off of mysql.com, then I modified > the Makefile for the mm.mysql.jdbc progr

Re: Java/Linux Mysql JDBC?

2001-06-03 Thread Nico D
TECTED]> > Sent: Sunday, June 03, 2001 11:08 AM > Subject: Java/Linux Mysql JDBC? > > > > Can anyone out there tell me how to use java and JDBC to connect to a > > MySQL db on a linux box, i've downloaded the api of the website but I > > can't get it wo

Java/Linux Mysql JDBC?

2001-06-02 Thread Nico D
Can anyone out there tell me how to use java and JDBC to connect to a MySQL db on a linux box, i've downloaded the api of the website but I can't get it working correctly. Could someone send me some sample code and/or tell me where to put the api and how to reference it? thankx alot! -nico -- *

mysql jdbc driver

2001-05-31 Thread Dacian Herbei
Hi, I'm using mm.mysql driver version 2.0.4 and jdk.1.3. Actually I'm trying to us it because it keeps on giving me Not suitable driver error. For test I used the JDBCBench.java. try { Class.forName("org.gjt.mm.mysql.Driver");

RE: mysql jdbc drivers

2001-01-29 Thread Dominggus Andy A
This site provide the JDBC driver and all the tutorial : http://www.worldserver.com/mm.mysql/ --Andy-- -Original Message- From: Vijay Chandra [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 4:55 AM To: '[EMAIL PROTECTED]' Subject: mysql jdbc drivers hi i am try

mysql jdbc drivers

2001-01-29 Thread Vijay Chandra
hi i am trying to use mysql database for my application , which is being developed in java. where can i find jdbc drivers for mysql , and how to install them, i am using win nt as developement platform. Its not for any commercial application. thanks Vijay -