Paket modDAO
Zugriff auf lokale Objekte Hilfeprozeduren um das Schreiben von Code etwas abzukürzen Außerdem ist eine einfache Umstellung der verwendeten Zugriffsbibliotheken möglich.
Mehr ...
Ausführliche Beschreibung
Zugriff auf lokale Objekte Hilfeprozeduren um das Schreiben von Code etwas abzukürzen Außerdem ist eine einfache Umstellung der verwendeten Zugriffsbibliotheken möglich.
Der eigentliche Zugriff erfolgt über CurrentDbConnection
Dokumentation der Funktionen
Property Get modDAO.CurrentDbC |
( |
|
) |
|
Function modDAO.DaoCount |
( |
ByVal Expr As |
String, |
|
|
ByVal Domain As |
String, |
|
|
Optional ByVal Criteria As |
String = vbNullString | |
|
) |
| | |
Sub modDAO.DaoExecute |
( |
ByVal sSQL As |
String, |
|
|
Optional ByRef RecordsAffected As |
Long, |
|
|
Optional ByVal Options As DAO. |
RecordsetOptionEnum | |
|
) |
| | |
DaoExecute = CurrentDbConnection.DAO.Execute.
- Parameter:
-
| sSQL | SQL-Anweisung |
[out] | RecordsAffected | Anzahl der betroffenen Datensätzen |
| Options | Optionen für Execute (analog DAO.Database.Execute) |
Function modDAO.DaoInsertIdentityReturn |
( |
ByVal InsertSQL As |
String |
) |
|
Function modDAO.DaoLookupSQL |
( |
ByVal sSQL As |
String |
) |
|
Function modDAO.DeleteTableDef |
( |
ByVal sTabName As |
String |
) |
|
Tabelle im Frontend löschen.
- Parameter:
-
- Rückgabe:
- Boolean
Function modDAO.OpenDaoRecordset |
( |
ByVal Source As |
String, |
|
|
Optional ByVal RstType As DAO. |
RecordsetTypeEnum = dbOpenDynaset , |
|
|
Optional ByVal RstOptions As DAO. |
RecordsetOptionEnum, |
|
|
Optional ByVal LockEdit As DAO. |
LockTypeEnum = dbOptimistic | |
|
) |
| | |
OpenDaoRecordset = CurrentDbConnection.DAO.OpenRecordset.
- Parameter:
-
| Source | SQL-Anweisung |
| RecordsetType | DAO.RecordsetTypeEnum (Standard: dbOpenDynaset) |
| RecordsetOptions | DAO.RecordsetOptionEnum (Standard: dbSeeChanges) |
| LockEdit | DAO.LockTypeEnum (Standard: dbOptimistic) |
- Rückgabe:
- DAO.Recordset