in reply to Inserting values into MS Access

Maybe I'm missing something, but do you need to retrieve the rows from Master at all? It seems you could just do a single

$EDS_DB->Sql( 'INSERT INTO Servers (Server_Name) SELECT Server_Name FROM Master' );
In other words, don't bother making a round-trip with the data if you're not going to do anything with it.

Replies are listed 'Best First'.
Re^2: Inserting values into MS Access
by blackadder (Hermit) on Jun 06, 2005 at 18:04 UTC
    This sounds really cool, let try it and be right back.

    Thanks.
    Blackadder