Re: LEGAL information about MySQL.

2002-12-11 Thread Calin Pop
Hi all, First I want to say I am a MySQL fan. I think MySQL AB interpretation of GPL creates confusion too. Do they intend to crete and keep alive this confusion ? What for?... Let me show you something taken from "MySQL Reference Manual for version 4.0.2-alpha" "You can use the MySQL software

Re: How do i connect my Java Program to a remote MYSQL

2002-06-14 Thread Calin Pop
If you use "org.gjt.mm.mysql.Driver" of Mark Mathews and you have a TCP/IP based network: connection = DriverManager.getConnection("jdbc:mysql:///?user= &password="); can be: - ("localhost" or IP adress 127.0.0.1) for local machine; - a remote host identifier for a remote machine( ex name o

Re: Autocommit

2002-06-12 Thread Calin Pop
You're right Serge, there should be a global option to allow you to set AUTOCOMMIT to 0. InnoDB is used for transactional paradigm, so it's obvious you watn to do yourself the "commit", this should be the default behavior for transactional tables. If you get the answer to this problem plea