B
Beebs
How can I get the contents of a field in SQL Mobile. I've just
switched over from doing ADOCE projects so I'm quite clueless.
For instance, I use to be able to do this:
rs.Open(sqlString)
If Not rs.EOF And Not rs.BOF Then
If variable1 <> rs.Fields("Field1").Value.ToString() Then
'Do something
Else
'Do something
End If
End If
rs.Close()
In SQL Mobile programming, I can't even figure out how to tell if
there is a record in the query I set up in code. Can anyone give me
some minor assistance with this?
Thanks
switched over from doing ADOCE projects so I'm quite clueless.
For instance, I use to be able to do this:
rs.Open(sqlString)
If Not rs.EOF And Not rs.BOF Then
If variable1 <> rs.Fields("Field1").Value.ToString() Then
'Do something
Else
'Do something
End If
End If
rs.Close()
In SQL Mobile programming, I can't even figure out how to tell if
there is a record in the query I set up in code. Can anyone give me
some minor assistance with this?
Thanks