|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
My problem is like this:
http://www.4guysfromrolla.com/webte...q022400-1.shtml But I use ASP + Access (Jet SQL 4) Please, help me... |
|
#2
|
|||
|
|||
|
Um I really have no idea on this one. A work around would be to have a query like so
Code:
SELECT tblName.fname FROM tblName WHERE fname = "Defjamninja"; Then use asp to find the exact match you are looking for. Code:
For intI = 0 to recordset.count - 1
If recordset.fields("fname") = "DEFJAMNINJA" Then
Response.write("FOUND")
exit for
End If
Next
The problem with this is that if your query returns a lot of records then this could become slow. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > SELECT search in JetSql 4 using case-sensitive |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|