Re: MULTIPLE REFERENCES IN A TABLE

2008-05-18 Thread Ananda Kumar
can u please post your sql along with the error message On 5/19/08, arunkumar <[EMAIL PROTECTED]> wrote: > > If a single reference in my table it is working..but it is showing error no > 150, when I refer multiple foreign keys..is there any change in > syntax?...help me > > > > > > > > > > > > > >

MULTIPLE REFERENCES IN A TABLE

2008-05-18 Thread arunkumar
If a single reference in my table it is working..but it is showing error no 150, when I refer multiple foreign keys..is there any change in syntax?...help me -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ -- MySQL General Mailing List For list archives

A first chance exception of type 'MySql.Data.MySqlClient.MySqlException' occurred in MySql.Data.dll

2008-05-18 Thread Lord Gustavo Miguel Angel
Hi. I have this code: cId = fila(cmbCodigo.SelectedIndex).ToString cMedida = fila(cmbMedida.SelectedIndex).ToString cDenomina = fila(cmbDenominacion.SelectedIndex).ToString oComando.CommandText = "INSERT INTO preciodeno(id, medida, denomina ) " _ & "VALUES(?cId, ?cMedida, ?cDenomina

Re: purge binary logs on master

2008-05-18 Thread Ananda Kumar
Hi Juan, I want to purge bin logs which are older than 4 days. I want to keep 4 days of bin logs so that in the event of any data issue, i can restore it from bin logs. So, i tired to use PURGE MASTER LOGS BEFORE '2008-05-07 00:00:00'; But it did not work. Can you please help me on this regards