Hi i have a database and now i like two get data from a local Database to a network database how can i update the record i open in local to the nework.
TableMaster(metria_Sub_Sub)
numeracao_sub long AUTO
numeracao long
Foto1 text(50)
Foto2 text(50)
Analisefoto1 text(50)
Observações memo Y
Obra text(250)
Designação_equipamento text(250)
DetailTable
numeracao_sub_EQ long AUTO
numeracao_sub long
Designação_equipamento text(250)
Tensão text(50)
Potençia text(50)
Tipo_equipamento text(50)
Localização text(50)
Foto_PontosMed text(50)
InterruptorDiferencial text(50)
ADOCommand1.Execute
SELECT * FROM TableMaster local
INSERT INTO TableMaster Rede
('Where numeracao LIKE ''%'+Edit1.text+'%'' ')
the same for the detailTable (N)rows
SELECT * FROM DetailTable local
INSERT INTO DetailTable Rede
('Where numeracao_sub LIKE ''%'+Edit1.text+'%'' ')