hola tengo la siguiente consulta..
Dim myConnection As New OleDb.OleDbConnection("Provider=SQLOLEDB;......... )
Dim mySelectQuery As String = "select MAX(clave) from clave "
Dim myCommand As New OleDb.OleDbCommand(mySelectQuery, myConnection)
myConnection.Open()
Dim myReader As OleDb.OleDbDataReader = myCommand.ExecuteReader()
Try
While myReader.Read()
tc.Text = myReader.GetValue(0) + 1
End While
Finally
myReader.Close()
myConnection.Close()
End Try
me podrian ayudar en como valido el myReader.read() si es la primera consulta y la columna clave no tiene ningun registro y que me agrege a tc.text 1 que es el 1r valor
se los agradecería mucho Gracias