Dataread

  • Thread starter Thread starter ousta
  • Start date Start date
O

ousta

Bonsoir,
j'aurais aimé savoir s'il etait possibl;e d'acceder a une ligne specifique
d'un datareader (donc pas de while(dr.read()) et si cette methode est plus
rapide d'acces qu'une boucle

Merci
 
Its not clear what you have typed. Guessing by what u have typed the
solution would be using '!' which means not

while(!dr.Read())
 
Sorry NewsGroup Error :)
Is there any method for find a specific line of the dataread.

Not with while(!dr.Read)
 
Hi,

Are you talking about a DataReader ?

IF so the answer is not, the DataReader is a readonly, forward only cursor.

If it's a binary file then you can use FileStream.Seek .

Cheers,
 
Back
Top