Das Notes Forum
Domino 9 und frühere Versionen => Entwicklung => Thema gestartet von: adminnaddel am 17.10.04 - 12:23:51
-
Hallo liebe Gemeinde,
ein kleiner Tipp für:
@DbLookup( Klasse : "NoCache" ; Server : Datenbank ; Ansicht ; Schlüssel ; Feldname )
in Script?
Suche mir einen Wolf!
Danke
-
GetDocumentByKey in der NotesView Klasse
-
yes sir .... gracias!
Grüße
-
de nada
-
GetDocumentByKey ist nicht ganz korrekt, da @dbLookup ALLE Dokumente, die dem Key entsprechen, zurückgibt.
GetAllDocumentsByKey wäre also die entsprechende Methode der NotesView-Klasse.
Bernhard
-
Stimmt, danke für die Ergänzung, hab wohl ein noch ein wenig geträumt :)
-
der Vollständigkeit halber hier Umsetzung des @DBLookup in LS
Function DBLookup (strClass As String, strNoCache As String, strServer As String, strDatabase As String, strView As String, strKey As String, strReturn As String) As Variant
quotes = Chr(34)
strFormula = "@DbLookup(" & quotes & strClass & quotes & ":" & quotes & strNoCache & quotes & ";" & quotes & strServer & quotes & ":" & quotes & strDatabase & quotes & ";" & quotes & strView & quotes & ";" & quotes & strKey & quotes & ";" & strReturn & ")"
DbLookup = Evaluate( strFormula )
End Function
-
Danke @Eknori