Can any one help me with thisi need to find out when Selection of databases by browsing them
is possible or not if yes how
Can any one help me with thisi need to find out when Selection of databases by browsing them
is possible or not if yes how
Subject: Selection of databases by browsing them
You could use the following formulae to get the server and database name as selected by the user:
rep := @Name([Abbreviate]; @Prompt([ChooseDatabase]; “”; “”));
@If(@IsError(rep); rep := “-”:“-”; “”);
Server := rep[1];
Database := rep[2];