Hello
I'm building a remoteDB sync into my local SqLite database:
TablaRemota := TXDataSet.Create(Nil);
TablaRemota.Database := ConexionBD;
TablaRemota.SQL.Clear;
TablaRemota.SQL.Add(' Select * from ' + ArregloTablas[IndiceTabla]);
TablaRemota.Open;
Code above hangs my App, I drop a TXDataset component but same result.
Code above inside into a "For" loop, I need to sincronize several tables.
Why hangs?