FlowFact - Entwicklungstools

zurück

Function - Details_Find

^ Seitenanfang

Details-Datensatz suchen


  Function Details_Find(ByVal strWhere As String, Optional ByVal strOderBy As String = "") As ADODB.Recordset  
 


strWhere: Der WHERE-Teil einer SELECT-Abfrage z.B. intern LIKE 'Haus%'
strOderBy: Der ORDER BY-Teil einer SELECT-Abfrage z.B. intern,Kennung
Rückgabewert: Typ Recordset


Public Function Details_Find(ByVal strWhere As String, Optional ByVal strOderBy As String = "") As ADODB.Recordset
    Set Details_Find = m_oBase.Sql_Find("Details", strWhere, strOderBy)
End Function