FlowFact - Entwicklungstools

zurück

Function - MKM_Find
Merkmal über DSN suchen und als Recordset zurückgeben

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


strWhere: Der WHERE-Teil einer SELECT-Abfrage (ohne WHERE!)
strOderBy: Der ORDER BY-Teil einer SELECT-Abfrage (ohne ORDER BY!)
Rückgabewert: Datensatz des Merkmals


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