RE: Problem with LAST_INSERT_ID();

2001-04-29 Thread sw
My insert query look like your 'INSERT INTO ordinit(ID_ordine, Cod_Cliente) VALUES (NULL, 10);'; after the query I look into the table 'ordinit' and always looks fine: the value of ID_ordine is really incremented. But the following 'select LAST_INSERT_ID()' return zero :-(( It looks like a bug ?

RE: what is SSL?

2001-04-29 Thread sw
Hi, Hello, I am a Java developper, I use Mysql and TOmcat, I want to know what SSL is? Thanx SSL is Secure Socket Layer. Is a technology to encrypt and decrypt message (HTML pages or other) over Internet. Best regards.

RE: problem with LAST_INSERT_ID();

2001-04-29 Thread sw
I have found the solution for my 'select LAST_INSERT_ID();' problem. I must check the 'Change BIGINT columns to INT' option in the ODBC entry options in my NT server and everything work fine. Why this ? This means that I never use BIGINT columns in my Database ? Thanks. Regards.