Ver Mensaje Individual
  #2  
Antiguo 07-10-2004
gendelphi gendelphi is offline
Miembro
 
Registrado: jul 2003
Ubicación: Tlaxcala Mexico
Posts: 73
Reputación: 21
gendelphi Va por buen camino
Código Delphi [-]
IBDataSet1.Close;
IBDataSet1.SelectSQL.Clear;
IBDataSet1.SelectSQL.Add('select *');
IBDataSet1.SelectSQL.Add('from Alumnos');
IBSataSet1.SelectSQL.Add('Where upper(Matricula) like :Matr');
IBDataSet1.ParamByName('Matr').AsString:=VarMatricula;
IBDataSet1.Open;
Responder Con Cita