I have a access database. The database have a table. Table contain several fields including url field. I have created a form to migrate ms access data to oracle. Then I added a button to save data to the oracle. But before saving the url , some of the characters needed to be replaced by proper characters.
Private Sub Command59_Click()
accesstableDataSet = currentAccessSheet.gettable('tableToMigrate')
foreach ( record in accestableDataSet){
rowUrl = record.url
url = doencode(rowUrl)
exportToMysql(url)
}
How can i do something like above by writing to a access form button ?