![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
#3
|
|||
|
|||
|
Cordial Saludo,
Código:
Application.CreateForm(TfrmBusqueda, frmBusqueda);
frmBusqueda.gStEsquema := pStEsquema;
frmBusqueda.gStTabla := pStTabla;
frmBusqueda.gScxConexion := pQry.SQLConnection;
frmBusqueda.ShowModal;
if (frmBusqueda.gBlCancela) then
begin
Exit;
end;
if (Length(frmBusqueda.gStSQLAdd) > 0) then
begin
pClientDataSet.Close;
pQry.Close;
if (Pos('where', frmBusqueda.gStSQLAdd) = 0) and (Pos('where', LowerCase(pStSQL)) = 0) then
begin
pQry.SQL.Text := pStSQL + ' where 1 = 1 ' + frmBusqueda.gStSQLAdd;
end else begin
pQry.SQL.Text := pStSQL + ' ' + frmBusqueda.gStSQLAdd;
end;
pQry.Open;
end else begin
pQry.SQL.Text := pStSQL;
pQry.Open;
end;
try
pQry.Refresh;
pClientDataSet.Open; //Aquí Genera el Error Catastrófico!!!
pClientDataSet.Refresh;
finally;
end;
|
| Herramientas | Buscar en Tema |
| Desplegado | |
|
|
Temas Similares
|
||||
| Tema | Autor | Foro | Respuestas | Último mensaje |
| Error catastrófico con XMLTransformProvider y ClientDataset | victortera | Providers | 3 | 18-03-2014 16:52:25 |
| Error Catastrofico en DbExpress | asirvent | Conexión con bases de datos | 9 | 07-09-2010 11:54:56 |
| Error catastrofico, MySQL y ADO | Juandedian | Conexión con bases de datos | 2 | 28-01-2008 19:27:23 |
| Error catastrofico en BDS 2006 | JF Sebastian | Varios | 0 | 22-01-2007 18:58:45 |
| Mensaje de Error Catastrofico | ElDioni | Varios | 7 | 07-04-2006 18:24:43 |
|