Dynamically Open A Database



Download: IT Certifications 101
Inside this exclusive essential guide, our independent experts break down which IT certifications are worth your time and effort, and how to get started obtaining them to further your career— including specific certifications that any cloud or desktop pro should seriously consider.
By submitting your personal information, you agree that TechTarget and its partners may contact you regarding relevant content, products and special offers.
You also agree that your personal information may be transferred and processed in the United States, and that you have read and agree to the Terms of Use and the Privacy Policy.
augmented to remove the hard coded filepath in the formula. Now your dblookup
will work on any server and any file path as long as the two databases are in
the same filepath.
CLASS := "Notes";
NOCACHE := "NoCache";
CACHE := "Cache";
SERVER := @Subset(@DbName; 1);
DATABASE := "general\\any.nsf";
VIEW := "($Lookup)";
KEY := keyword;
COLUMN := 7;
LookUp := @DbLookup(CLASS : CACHE; SERVER : DATABASE;
VIEW; KEY; COLUMN);
@If(@IsError(LookUp); ""; LookUp)
Was the previous example. Substitute the following for the DATABASE variable
and your code will run on any server in any file path as long as the two
databases are in the same file structure on the machine.
PATH := @Subset( @DBName ; -1 ) ;
DATABASE := @ReplaceSubstring( PATH ; "Current DB Name" ; "Lookup DB Name" )
For instance:
PATH might return: "Clients\XYZ\atracker.nsf"
@DBName is relative to the notes data directory.
You want to do a lookup to intagnt.nsf so:
DATABASE := @ReplaceSubstring( PATH ; "atracker.nsf" ; "intagnt.nsf" )
DATABASE returns "Clients\XYZ\intagnt.nsf" and you are good to go.
Be careful as the @ReplaceSubstring function is case senstitive.
Start the conversation
0 comments