Re: WELCOME to mysql@lists.mysql.com

2001-10-31 Thread Wesley Dyk
Well, the binary update log is a log file that records all the updates to a database. They don't exist unless the mysqld process is started with the option to log updates. They can be used to rebuild a database. I guess that if you did not start the server with logging enabled, then you are

Re: WELCOME to mysql@lists.mysql.com

2001-10-30 Thread Kelvin Cheong
dear all, is their anyway at all to undo a direct UPDATE fromt he mysql prompt? i did not have any backups. desperately need a reply. thanks. kelvin. - Before posting, please check: http://www.mysql.com/manual.php (the

Re: WELCOME to mysql@lists.mysql.com

2001-10-30 Thread Russell Miller
If you did not have any backups, then you're probably SOL. ALWAYS MAKE BACKUPS. --Russell - Original Message - From: Kelvin Cheong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 30, 2001 11:15 PM Subject: Re: WELCOME to [EMAIL PROTECTED] dear all, is their anyway at

Re: WELCOME to mysql@lists.mysql.com

2001-10-30 Thread Wesley Dyk
What about the binary log files? Isn't there something that can be done this way? - Original Message - From: Russell Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, October 30, 2001 10:11 PM Subject: Re: WELCOME to [EMAIL PROTECTED] If you did not

RE : WELCOME to mysql@lists.mysql.com

2001-08-05 Thread SOHM Philippe
Hi, I'd like to add a function MD5() to mysql with CREATE FUNCTION Someone can help me ? I know nothing in C Philippe - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

Re: RE : WELCOME to mysql@lists.mysql.com

2001-08-05 Thread Brian P. Austin
On Sun, 5 Aug 2001, SOHM Philippe wrote: Hi, I'd like to add a function MD5() to mysql with CREATE FUNCTION Someone can help me ? I know nothing in C Philippe That might be a problem if you wnat to compile in your own function. You might want to try a UDF instead. I don't use them

RE: RE : WELCOME to mysql@lists.mysql.com

2001-08-05 Thread Don Read
On 05-Aug-2001 SOHM Philippe wrote: Hi, I'd like to add a function MD5() to mysql with CREATE FUNCTION Someone can help me ? I know nothing in C Creating a user defined function (UDF) means compiling a shared library; most any language can be used if it supports C call/return conventions.