quando stampa a video vedo un solo apice! ribaddisco ke è una semplice curiosità!

p.s.
se la funzione
codice:
FUNCTION fixQuotes( theString )
  fixQuotes = REPLACE( theString, "'", "''" )
END FUNCTION
volessi che mi sostituisse anche le vitrgolette (che magari scassano nella query) come dovrei fare??
qualcosa tipo:
codice:
FUNCTION fixQuotes( theString )
  fixQuotes = REPLACE( theString, "'", "''" )
  fixQuotes = REPLACE( theString, " " ", "''" ) :confused: 
END FUNCTION