I'm using ASP and a recordset and I want to find the records where column X is...
...an integer, is it possible? And if it is possible, how do you do it??
********************* 10 points available *********************
In pseudo code:
Open RecordSet
Do While RecordSet Is Not End Of File
If RecordSet(Column) Is Integer
Write Something
End If
Loop
|