Jump to content
Fórum Script Brasil
  • 0

Retirar acentos de uma tabela inteira


vms

Question

Olá pessoal

Tenho um banco feito no access onde tenho uma tabela com um campo chamado Descrição (tipo Texto)

estou usando a função abaixo para retirar os acentos.

Eu queria saber como usar essa função no Update

porque se eu for varrer a tabela irá demorar muito.

function RemoveAcento(Str: string): string;
const
  ComAcento = 'àâêôûãõáéíóúçüÀÂÊÔÛÃÕÁÉÍÓÚÇÜ';
  SemAcento = 'aaeouaoaeioucuAAEOUAOAEIOUCU';
var
   x: Integer;
begin;

  for x := 1 to Length(Str) do
    if Pos(Str[x],ComAcento) <> 0 then
    Str[x] := SemAcento[Pos(Str[x], ComAcento)];

  Result := Str;
end;

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

voce olhou o código no botão ???

Option Compare Database
Option Explicit

Function LimpaAcentos(S As String) As String
'* Objetivo - Retirar os acentos, sem modificar as strings.
'* Parametros -  S - String a ter acentos retirados
'* Adaptada do Algoritmo para Retirar Acentos para Delphi de Marcio Castilho
'* Publicada em 08/12/00 para o site da Revista Delphi Journal
'* Adaptacao: Rogerio Olimpio Lourenco de Oliveira - 2000
'* (5120.rogerio@bradesco.com.br)

Dim Acentos1 As String, Acentos2 As String, TMP As String, tmp2 As String
Dim i As Integer, Aux As Integer
    Acentos1 = "ÀÌÒÙÈÁÍÓÚÉÃÏÕÜËÄÖÂÎÔÛÊàìòùèáíóúéãïõüëáöâîôûêÇç"
    Acentos2 = "AIOUEAIOUEAIOUEAOAIOUEaioueaioueaioueaoaioueCc"
    tmp2 = ""
     For i = 1 To Len(S)
        Aux = InStr(1, Acentos1, Mid(S, i, 1), 0)
        If (Aux <= 0) Then
           TMP = Mid(S, i, 1)
        Else
            TMP = Mid(Acentos2, Aux, 1)
        End If
        tmp2 = tmp2 + TMP
    Next i
    LimpaAcentos = tmp2
End Function
Private Sub cmdRemove_Click()
Dim d As Database, r As Recordset

Set d = CurrentDb
Set r = d.OpenRecordset("Acentos")

    r.MoveFirst
    Do Until r.EOF
    'Faça até que chegue ao último registro

    'Recebi a mensagem 'Update ou CancelUpdate sem AddNew ou Edit, mesmo com o edit abaixo
    'Acontece que update e movenext estavam em ordem inversa.
        r.Edit
        r!Nome = LimpaAcentos(r!Nome)
        r!Endereco = LimpaAcentos(r!Endereco)
        r.Update
        r.MoveNext
    Loop
    Set r = Nothing
    Set d = Nothing
    Me.Refresh
End Sub

a informação que voce precisa está ai

abraço

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...