Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/06/2003, 03:58
sqa212
 
Fecha de Ingreso: mayo-2003
Mensajes: 866
Antigüedad: 22 años
Puntos: 0
¿para que sirve esta funcion?

¿para que sirve esta funcion?

<% Function valid_sql(s)

For i = 1 To Len(s)
If Mid(s, i, 1) = "'" Then
temp = temp + "'"
End If

temp = temp + Mid(s, i, 1)
Next


valid_sql=trim(temp)


End Function %>