FlowFact - Entwicklungstools

zurück

Function - EMSK_Find
Eingabehilfe über SQL suchen und als Recordset zurückgeben

  Function EMSK_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 der Eingabehilfe


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