Ver Mensaje Individual
  #1  
Antiguo 20-04-2007
rhasshid rhasshid is offline
Registrado
 
Registrado: mar 2007
Posts: 6
Reputación: 0
rhasshid Va por buen camino
error al usar inset into

hola a todos espero que me puedan ayudar tengo una tabla en la cual estoy tratando de adicionar un registro y al momento de guardar me da el siguiente error:

Project Julsa.exe raised exception class EDatabaseError with message 'DBX Error:No Mapping for Error Code Found'. Process stopped. Use Step or Run to continue.

diganme cual es el problema el codigo es el siguiente:

Código Delphi [-]
Close;
SQL.Clear;
SQL.Add('INSERT INTO usuarios (login, contra,nombre, fecha_cap, Direccion, Ciudad,');
SQL.Add('Provincia, Departamento, telefono,fecha_umov) VALUES(');
SQL.Add('''' + txtUsuario.Text + ''',');
SQL.Add('''' + sContra + ''',''' + txtNombre.Text + ''',' + FormatDateTime('mm/dd/yyyy hh:nn:ss',Now)+ ''',');
SQL.Add('''' + txtDireccion.Text + ''',''' + txtCiudad.Text + ''',');
SQL.Add('''' + txtProvincia.Text + ''',''' + txtDepartamento.Text + ''',');
SQL.Add('''' + txtTelefono.Text + ''',''' + FormatDateTime('mm/dd/yyyy hh:nn:ss',Now) + ''')');
ExecSQL;




ha la base de datos esta en interbase 6 espero que me puedan ayudar.....
Responder Con Cita