RE: MySQL not letting me connect...

2002-01-14 Thread Michael Migal
You have to set-up the "user" table in "mysql" db to allow connection from localhost. Example dump: mysql> select * from user; ++-+--+-+-+- +-+-+---+-+- --+

RE: Table is "read only"

2002-01-14 Thread Michael Migal
Make sure that the files for that table not only have correct permissions, but also have correct owner and group. (mysql:mysql) I had the same write only problem and fixed it by doing it. mike -Original Message- From: Steve Rapaport [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 20

RE: sequence and nextval

2001-12-13 Thread Michael Migal
You can lock the table when you insert. mike -Original Message- From: Henrik Erlandsson [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:25 AM To: [EMAIL PROTECTED] Subject: SV: sequence and nextval Thanks, but how secure is this. Is it possible for two computers to do th

RE: Performance

2001-12-13 Thread Michael Migal
Opening and closing connections on any database is very expensive operation in terms of time. It is better to keep a connection open, if possible, until you have completed displaying the page. mike -Original Message- From: René Fournier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November

RE: sequence and nextval

2001-12-13 Thread Michael Migal
It depends what you need to do. For unique keys, I usually use AUTO_INCREMENT feature. mike -Original Message- From: Henrik Erlandsson [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 7:41 AM To: [EMAIL PROTECTED] Subject: sequence and nextval Does the above functions exis

Problem

2001-12-10 Thread Michael Migal
Hi, I have a little problem, and hope that someone can help me with it. I am trying to copy MySQL data files for a certain database from one Linux box to the other. Copying works just fine, but then some of the tables become unusable. Any suggestions? mike ---