|
He seguido con el tema y Delfino tiene toda la razón con un IBDataSet1 se puede hacer perfectamente. Aqui pongo el codigo por si a alguien le interesa.
De todas las maneras me gustaria que le hechases un vistazo a otra consulta que tengo un poco mas abajo y me dieseis vuestro parecer. Titulo: "insertar nuevo registro".
Un saludo y muchas gracias.
dm.IBDataSet1.Close;
WITH dm.IBDataSet1 DO
BEGIN
dm.IBDataSet1.SelectSQL.text:=( 'Select *From ARTICULOS where NOMBRE containing ''' + edSearch.Text + '''');
TRY
........
......
|