Question about SqlCe Parameters usage

  • Thread starter Thread starter tiger79
  • Start date Start date
tiger79 said:
ok, I used * instead, cause for this time (as a ts) i'm gonna fill the
datatable with all the data.
It works, only I cant seem to manage to retrieve data from the datatable.
cant semee to find any method like fetch() or retrieve() or something in the
datatable instance I made :(

I suggest you read a simple tutorial on ADO.NET then. You normally just
use something like:

myDataTable.Rows[rowNumber][columnName]
 
Back
Top