Re: Uninstalling the MySQL cleanly.

2005-08-11 Thread Gleb Paharenko
printf(" NULL\n"); >else > printf(" %s(%ld)\n", str, length[0]); > > } > > printf("The no of rows affected are %d\n",mysql_stmt_affected_rows(stmt)); > if (mysql_stmt_close(stmt)) > { >printf("Error while cl

Re: Uninstalling the MySQL cleanly.

2005-08-11 Thread Gleb Paharenko
tmt)); >exit(0); > } > > while (!mysql_stmt_fetch(stmt)) > { > >if (is_null[0]) > printf(" NULL\n"); >else > printf(" %s(%ld)\n", str, length[0]); > > } > > printf("The no of rows affected

RE: Uninstalling the MySQL cleanly.

2005-08-11 Thread Sujay Koduri
t_affected_rows(stmt)); if (mysql_stmt_close(stmt)) { printf("Error while closing mysql statement\n"); exit(3); } mysql_close(&mysql); return 0; } Thank you sujay -Original Message- From: Gleb Paharenko [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 200

Re: Uninstalling the MySQL cleanly.

2005-08-11 Thread Gleb Paharenko
Hello. I guess you have rpm installation, rpm -e should help you in this case. Find installed mysql packets with `rpm -qa |grep -i mysql` command. If you have troubles with making a choice, send the list of packets which you got to the list. Sujay Koduri <[EMAIL PROTECTED]> wrote: > >

RE: Uninstalling the MySQL cleanly.

2005-08-11 Thread Sujay Koduri
Sorry , I didn't send this in person to you intentionally. sujay -Original Message- From: Martijn Tonies [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 2:42 PM To: Sujay Koduri Subject: Re: Uninstalling the MySQL cleanly. . > > OS is RH9 and kernel is 2.4.20 I

Re: Uninstalling the MySQL cleanly.

2005-08-11 Thread Martijn Tonies
> Can any one list the steps or give me any pointers how to cleanly uninstall > an upper version of MySQL, > so that after wards if we install lower version it should not be affected by > any left overs of the previous installation. What OS? With regards, Martijn Tonies Database Workbench - too

Uninstalling the MySQL cleanly.

2005-08-11 Thread Sujay Koduri
hi, Can any one list the steps or give me any pointers how to cleanly uninstall an upper version of MySQL, so that after wards if we install lower version it should not be affected by any left overs of the previous installation. Thank you sujay