Hur gör jag för att konvertera fnuttar(") från en text i ett formulär så att de inte blandar sig i SQL satsen? <code>
""?????
Svara
Sv: ""?????
Svara
Function SQLText(Value)
If Len(Value) > 0 Then
SQLText = "'" & Replace(Value,"'","''") & "'"
Else
SQLText = "Null"
End If
End Function
strSQL = "INSERT INTO TabellNamn (FältNamn) VALUES(" & SQLText(Requset.Form("Text")) & ")"
</code>