Re: Porting my gweMysql JDBC Driver(Type4) to C# Driver!!

2002-07-04 Thread TAKAHASHI, Tomohiro
Sorry, URL is wrong Please check it out http://www.t3-jpn.com/jdbc/jdbcmysql.html "TAKAHASHI, Tomohiro" wrote: > > Hi, All > > I ported my gweMysql JDBC Driver(Type4) to C# Driver. :-) > If you are interested in C# Driver, please check it out!! -- I lov

Porting my gweMysql JDBC Driver(Type4) to C# Driver!!

2002-07-04 Thread TAKAHASHI, Tomohiro
Hi, All I ported my gweMysql JDBC Driver(Type4) to C# Driver. :-) If you are interested in C# Driver, please check it out!! http://www.t3-jpn.com/work/jdbc/jdbcmysql.html -- I love Borland. TAKAHASHI, KEN, Tomohiro -

Re: MySQL with Delphi 5.0

2002-04-24 Thread TAKAHASHI, Tomohiro
Hi, Did you use dbexpmysql.dll(not dbexpmys.dll) ? Alexander Burbello wrote: > > I tryed to use Delphi 6.0 and dbExpress, but I didn't got. > > What component and what property I have to set for use correct?? > > Regards > > Alexander > > >-- Mensagem Original -- > > > >> Hi, Haroldo >

Re: MySQL with Delphi 5.0

2002-04-23 Thread TAKAHASHI, Tomohiro
Hi, Haroldo Is it first time to develop Database Application with Delphi? Do you know how to use DataAccess Component(e.g., TDatabase) and BDE(or BDE Administrator)? I suggest to use Delphi6 Pro/Ent. It contains dbExpress Component which help you to develop Database Application very easil

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

Re: How can I store a image into MYSQL database

2002-04-03 Thread TAKAHASHI, Tomohiro
Hi, pwxgao I will suggest to use JBuilder6 EnterpriseEdition and Borland Enterprise Server. You will be able to build EJB(CMP2.0), which can persistent blob column, very easily without coding. :-) pwxgao wrote: > > I also interestig in this topic...I wanna know how to save a blob object , >

Re: Probelm with MySQL for JDBC Realm

2002-03-23 Thread TAKAHASHI, Tomohiro
Hi, It seems JDBCRealm implementation calls Conneciton.setAutoCommit() method automatically. So your MySQL Server need to be able to accept SQL statements "SET AUTOCOMMIT=1;" or "SET AUTOCOMMIT=0;" Please check it with mysql console client. In my case, MySQL-Max(InnoDB) 3.23.49 and gweMys

Re: JBuilder6 and mm.mysql-2.0.11

2002-03-22 Thread TAKAHASHI, Tomohiro
Hi, Lonnie Lonnie Wormley wrote: > > TAKAHASHI, Tomohiro wrote: > > > > > Do you want to use mm mysql Driver with JB6's DataPilot? > > What kind of error does DataPilot say? > > > Here is the stack trace: > > See com.borland.

Re: JBuilder6 and mm.mysql-2.0.11

2002-03-21 Thread TAKAHASHI, Tomohiro
Hi, Lonnie Wormley wrote: > > >>Is this the correct file to have in your class path? > >>addpath /home/launi/JBuilder6/lib/mm.mysql-2.0.11/mm.mysql-2.0.11-bin.jar > > > > Yes, please add it into jdk.config. :) > > > I have it in there and it still does not work. I have it in my > .bash_profi

Re: JBuilder6 and mm.mysql-2.0.11

2002-03-20 Thread TAKAHASHI, Tomohiro
Hi, Lonnie Wormley wrote: > > Is this the correct file to have in your class path? > addpath /home/launi/JBuilder6/lib/mm.mysql-2.0.11/mm.mysql-2.0.11-bin.jar Yes, please add it into jdk.config. :) -- TAKAHASHI,"KEN",Tomohiro Borland -- Enabling a new digital world where our customers hav

gweMysql JDBC Driver Update!!

2002-03-16 Thread TAKAHASHI, Tomohiro
Hi, All I updated JDBC Driver i maintained. :-) http://www.t3-jpn.com/jdbc/jdbcmysql.html [New Features for only JDK1.4 ] Add New Property 'useNewIO' to use SocketChannel and DirectBuffer with JDK1.4's New I/O API. Please download gweMysqlJDBC_extra4.zip and set useNewIO t

Re: My JDBC does not work.

2002-03-15 Thread TAKAHASHI, Tomohiro
;); > System.exit(1); > } >} > } Please print Exception as below and check RDBMS configuration. } catch (Exception e) { System.out.println(e.getMessage()); e.printStackTrace(); System.exi

Re: mysql with java

2002-03-12 Thread TAKAHASHI, Tomohiro
sun.com/docs/books/tutorial/jdbc/index.html Developement with JDBC API dees not depend on RDBMS. Thanks. -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lis

Re: API errors BORLAND Builder 5.0

2002-03-01 Thread TAKAHASHI, Tomohiro
Hi, What kind of API,Component do you use with C++Builder5? Alexander Omelanuk wrote: > > Hello , > > I have some problems with borland builder 5.0. I can't connect to mysql server via >API. > I have error in obj file

update gweMysql JDBC Driver

2002-02-25 Thread TAKAHASHI, Tomohiro
Hi, All gweMysql JDBC Driver Update!! ・Support Borland Enterprise Server5.0 (EJB2.0) ・Support JBuilder6 ・ConnectionPoolDataSource support maxPoolSize property ( 0 means no-limit ) [WebSite] http://www.t3-jpn.com/jdbc/jdbcmysql

Re: date comes out as '0000-00-00'

2002-02-15 Thread TAKAHASHI, Tomohiro
ps.setString(3, expensed_date); > ps.setInt(4, userId); > ps.executeUpdate(); -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.

Re: Mysql Row Lock Problem

2002-02-14 Thread TAKAHASHI, Tomohiro
mit(false). The "returValue" is > returned as "0" when the query is fired. -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.

Re: XML Import

2002-02-12 Thread TAKAHASHI, Tomohiro
MySQL? > > David Sweeney > Adaptive Technology Services > Texas A&M University > [EMAIL PROTECTED] -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) h

Re: JDBC and MySQL problem, please help.

2002-01-17 Thread TAKAHASHI, Tomohiro
gt; [snip] Do you use MySQL or MySQL-max? MySQL-max supports Transaction but MySQL does not support it. MySQL-max does not support Distributed Transaction(Two-Phase Commit). And "org.gjt.mm.mysql.Driver" is not for XADataSource. So "javax.sql.XADataS

Re: java.sql.SQLException: Lost connection to server during query the error is here

2002-01-15 Thread TAKAHASHI, Tomohiro
problem occuring, any problem in mysql server > or apache server > please mail to -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

Re: Jdbc Help

2001-12-26 Thread TAKAHASHI, Tomohiro
as well. But it says > driver cannot be found. > > Can you guys help. -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the l

Re: Connection Pool

2001-12-11 Thread TAKAHASHI, Tomohiro
tion e){} conn = null; } } pw.println(""); } } -- -- TAKAHASHI, Tomohiro GABRIELMORENO wrote: > > Hi, Takahshi > > My environmment is the next: > Windows 2000 Advanced Server > Tomcat 4.0 > MySql

Re: Connection Pool

2001-12-11 Thread TAKAHASHI, Tomohiro
.sql.SQLException: Transaction Isolation Levels are not supported. > > My solution is the next: the problem is the MySql driver, I get a new > version and the problem is over. The new version is 2.0.8. > > Gabriel -- TAKAHASHI, Tomohiro ---

Re: EJB and MYSQL

2001-12-07 Thread TAKAHASHI, Tomohiro
he BEA weblogic or other main stream > EJB implementation? If you want to use EJB with MySQL, you should MySQL which supports Transaction. -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/m

Re: Packet is Larger than max_allowed_packet from server configuration of 65536 bytes

2001-12-07 Thread TAKAHASHI, Tomohiro
ere another variable I need to increase, because no matter > what I change the value of max_allowed_packet to, I still get the 65535 > bytes error?? Please help!! > > Thanks, > Chris -- TAKAHASHI, Tomohiro

Re: Connection issue with Kylix to Mysql 3.23

2001-12-06 Thread TAKAHASHI, Tomohiro
h the same issue but > no answers. > > I am using Caldera 3.1 with updates and all of the software versions > included with that distro. > > I would appreciate any help. Thanks. -- TAKAHASHI, Tomohiro - Be

Re: "java.sql.SQLException: Cannot disable AUTO_COMMIT" exception

2001-11-27 Thread TAKAHASHI, Tomohiro
mySQL > with Weblogic EJB (through org.gjt.mm.mysql.Driver JDBC driver). > > Can anybody help!! -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists

Re: number of connections keeps increasing

2001-11-25 Thread TAKAHASHI, Tomohiro
is a Connection object > } %> > > whenever i call this page , number of connections inreases by one > it seems that the connections can not be closed > Any idea or suggestions ? > thanks a lot in advance > best regards :) -- TAKAHASHI, Tomohiro

Re: Offtopic JDBC

2001-11-09 Thread TAKAHASHI, Tomohiro
atabase. > I use the path jdbc:mysql//localhost:3360/...and so on. > On win2k everything worked fine. > Please give an advice! -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the

Re: Connection timeout and pooling

2001-11-09 Thread TAKAHASHI, Tomohiro
able to test > connections before passing them back to the requester. Whats the best way to > do this? Cant say I like sending a (context dependent) query to the database > because it makes my class not re-usable across applications. -- TAKAHASHI, Tomohiro --

Re: error in mysql using poolman

2001-11-02 Thread TAKAHASHI, Tomohiro
st\mydb.log > > > > An the java sample code is: > Class.forName("com.codestudio.sql.PoolMan").newInstance(); > Connection con = DriverManager.getConnection("jdbc:poolman://" + > "mydb"); > > What's wrong? -- TAKAHAS

Re: Update JDBC Driver (gweMysql Driver)

2001-11-01 Thread TAKAHASHI, Tomohiro
Thank you so much. -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EM

Re: mysql - java - jdbc

2001-10-27 Thread TAKAHASHI, Tomohiro
Hi, Sandra. Configure Library Setting of JBuilder IDE. Check IDE's menu out. Thanks. Sandra Rovena Frigeri wrote: > > Hi, > > I need some information about jdbc driver for mysql dbms > (windows version 3.23.43) for use it with jbuilder (version 2 or 3.5). > > Thanks for any information.

Re: JDBC: Losing precision when mapping doubles from Java

2001-10-27 Thread TAKAHASHI, Tomohiro
e some information in english? Sorry, but I > can't read japanese :). > > I have downloaded your driver. And will try to test it ASAP(as soon as > possible) -- TAKAHASHI, Tomohiro - Before posting, please check:

Re: JDBC: Losing precision when mapping doubles from Java

2001-10-26 Thread TAKAHASHI, Tomohiro
I look in the database, this is what the value looks like: > 1277.00143924 > (8 decimal digits) -- TAKAHASHI, Tomohiro - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mys

Re: Update JDBC Driver (gweMysql Driver)

2001-10-26 Thread TAKAHASHI, Tomohiro
Hi, All I Fixed two bugs. 1. If LoginUser has empty password, Driver can not connect to MySQL. 2. Connection Pool does not work correctly. ;-) Check this URL out for new Driver. :-) http://www.t3-jpn.com/jdbc/jdbcmysql.html "TAKAHASHI, Tomohiro" wrote: > >