FlowFact - Entwicklungstools

zurück

Function - BLOB_GetInfo
Alle zu einer Aktivität gehörenden Daten als Recordset

In der Regel sind Blob-Einträge zu Aktivitäten gespeichert. Es ist auch möglich Dateiinhalte zu anderen Haupttabellen zu speichern.
  Function BLOB_GetInfo(ByVal strLinkDsn As String) As ADODB.Recordset  
 


strLinkDsn: Datensatznummer (DSN) i.A. der Tabelle AKT.
Rückgabe: Recordset mit folgenden Datenbankfeldern: dsn, dtmfiledate, lngsize, lngtyp, uidLINK_DSN, strlinktable, strsourcefilename, checkout_ben_dsn, CID, mail_attachment


Public Function BLOB_GetInfo(ByVal strLinkDsn As String) As ADODB.Recordset
    Dim rsBlob As ADODB.Recordset

    Set rsBlob = m_oBlob.GetBlobInfos(strLinkDsn)

    Set BLOB_GetInfo = rsBlob
End Function