ado.net y mysql

12/08/2004 - 22:31 por dps | Informe spam
saludos al foro

trabajo con mysql como base de datos y tengo una
aplicación en vb.net contra dicha base de datos alojada
en un servidor.

hasta aqui todo bien, caso tipico.

pues bien, en esa base de datos tengo muchas tablas con
la clave como un entero largo con el atributo de
autoincrement (como en access)

necesito saber que código (autoincrement) que asigna la
base de datos a los registros que voy agregando. en php
existe una funcion que hace eso.

puedo hacer eso desde vb.net?

he probado con una consulta tipo "select max(id)
from" pero me he dado cuenta que no vale, ya que si
otro usuario da otro alta se recuperara la clave del
ultimo alta.

utilizo odbc

se admiten todo tipo de sugerencias

un saludete
 

Leer las respuestas

#1 JOSE VARGAS
12/08/2004 - 23:13 | Informe spam
Anexo explicación de la var que almacena el último valor
tomado por el campo

Examples
This example inserts a row into a table with an identity
column and uses @@IDENTITY to display the identity value
used in the new row.

INSERT INTO jobs (job_desc,min_lvl,max_lvl)

VALUES ('Accountant',12,125)

SELECT @@IDENTITY AS 'Identity'


After an INSERT, SELECT INTO, or bulk copy statement
completes, @@IDENTITY contains the last identity value
generated by the statement. If the statement did not
affect any tables with identity columns, @@IDENTITY
returns NULL. If multiple rows are inserted, generating
multiple identity values, @@IDENTITY returns the last
identity value generated. If the statement fires one or
more triggers that perform inserts that generate identity
values, calling @@IDENTITY immediately after the
statement returns the last identity value generated by
the triggers. The @@IDENTITY value does not revert to a
previous setting if the INSERT or SELECT INTO statement
or bulk copy fails, or if the transaction is rolled back.

Preguntas similares