You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3334 lines
102 KiB
3334 lines
102 KiB
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>
|
|
_KPI
|
|
</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:_KPI.My.Resources.Resources">
|
|
<summary>
|
|
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
</summary>
|
|
</member>
|
|
<member name="P:_KPI.My.Resources.Resources.ResourceManager">
|
|
<summary>
|
|
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
</summary>
|
|
</member>
|
|
<member name="P:_KPI.My.Resources.Resources.Culture">
|
|
<summary>
|
|
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
</summary>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsApplication">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Application'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsApplication.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsApplication.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iApplikationsnr</LI>
|
|
<LI>sVersion. May be SqlString.Null</LI>
|
|
<LI>bShowlogin. May be SqlBoolean.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>sTmp_filepath. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsApplication.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iApplikationsnr</LI>
|
|
<LI>sVersion. May be SqlString.Null</LI>
|
|
<LI>bShowlogin. May be SqlBoolean.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>sTmp_filepath. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsApplication.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iApplikationsnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsApplication.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iApplikationsnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iApplikationsnr</LI>
|
|
<LI>sVersion</LI>
|
|
<LI>bShowlogin</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>sTmp_filepath</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsApplication.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsAuswertung">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Auswertung'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertung.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertung.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungNr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>bReport. May be SqlBoolean.Null</LI>
|
|
<LI>sFilename. May be SqlString.Null</LI>
|
|
<LI>bExcel_Report. May be SqlBoolean.Null</LI>
|
|
<LI>sSQL. May be SqlString.Null</LI>
|
|
<LI>sSQLType. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>sConnectionstring_Subreport. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertung.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungNr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>bReport. May be SqlBoolean.Null</LI>
|
|
<LI>sFilename. May be SqlString.Null</LI>
|
|
<LI>bExcel_Report. May be SqlBoolean.Null</LI>
|
|
<LI>sSQL. May be SqlString.Null</LI>
|
|
<LI>sSQLType. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>sConnectionstring_Subreport. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertung.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertung.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iAuswertungNr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>bReport</LI>
|
|
<LI>sFilename</LI>
|
|
<LI>bExcel_Report</LI>
|
|
<LI>sSQL</LI>
|
|
<LI>sSQLType</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>sConnectionstring_Subreport</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertung.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsAuswertungAuswertungParameter">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'AuswertungAuswertungParameter'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungAuswertungParameter.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungAuswertungParameter.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungAuswertungparameternr</LI>
|
|
<LI>iAuswertungnr. May be SqlInt32.Null</LI>
|
|
<LI>iAuswertungparameternr. May be SqlInt32.Null</LI>
|
|
<LI>sDBfeldname. May be SqlString.Null</LI>
|
|
<LI>iReihenfolge. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungAuswertungParameter.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungAuswertungparameternr</LI>
|
|
<LI>iAuswertungnr. May be SqlInt32.Null</LI>
|
|
<LI>iAuswertungparameternr. May be SqlInt32.Null</LI>
|
|
<LI>sDBfeldname. May be SqlString.Null</LI>
|
|
<LI>iReihenfolge. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungAuswertungParameter.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungAuswertungparameternr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungAuswertungParameter.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungAuswertungparameternr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iAuswertungAuswertungparameternr</LI>
|
|
<LI>iAuswertungnr</LI>
|
|
<LI>iAuswertungparameternr</LI>
|
|
<LI>sDBfeldname</LI>
|
|
<LI>iReihenfolge</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungAuswertungParameter.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsAuswertungGruppe">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'AuswertungGruppe'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppe.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppe.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iParentid. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppe.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iParentid. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppe.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppe.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>iParentid</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppe.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsAuswertungGruppeAuswertung">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'AuswertungGruppeAuswertung'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppeAuswertung.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppeAuswertung.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeAuswertungNr</LI>
|
|
<LI>iAuswertungGruppeNr. May be SqlInt32.Null</LI>
|
|
<LI>iAuswertungNr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstllt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppeAuswertung.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeAuswertungNr</LI>
|
|
<LI>iAuswertungGruppeNr. May be SqlInt32.Null</LI>
|
|
<LI>iAuswertungNr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstllt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppeAuswertung.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeAuswertungNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppeAuswertung.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungGruppeAuswertungNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iAuswertungGruppeAuswertungNr</LI>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
<LI>iAuswertungNr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstllt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungGruppeAuswertung.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsAuswertungRptDatei">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'AuswertungRptDatei'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungRptDatei.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungRptDatei.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungDateiNr</LI>
|
|
<LI>sFilename. May be SqlString.Null</LI>
|
|
<LI>sReportname. May be SqlString.Null</LI>
|
|
<LI>blobReportfile. May be SqlBinary.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungRptDatei.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungDateiNr</LI>
|
|
<LI>sFilename. May be SqlString.Null</LI>
|
|
<LI>sReportname. May be SqlString.Null</LI>
|
|
<LI>blobReportfile. May be SqlBinary.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungRptDatei.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungDateiNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungRptDatei.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungDateiNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iAuswertungDateiNr</LI>
|
|
<LI>sFilename</LI>
|
|
<LI>sReportname</LI>
|
|
<LI>blobReportfile</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungRptDatei.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsAuswertungsparameter">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Auswertungsparameter'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungsparameter.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungsparameter.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungparameternr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sOperator. May be SqlString.Null</LI>
|
|
<LI>sFeldbezug. May be SqlString.Null</LI>
|
|
<LI>sWert. May be SqlString.Null</LI>
|
|
<LI>sParamName. May be SqlString.Null</LI>
|
|
<LI>sParamType. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungsparameter.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungparameternr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sOperator. May be SqlString.Null</LI>
|
|
<LI>sFeldbezug. May be SqlString.Null</LI>
|
|
<LI>sWert. May be SqlString.Null</LI>
|
|
<LI>sParamName. May be SqlString.Null</LI>
|
|
<LI>sParamType. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungsparameter.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungparameternr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungsparameter.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iAuswertungparameternr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iAuswertungparameternr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>sOperator</LI>
|
|
<LI>sFeldbezug</LI>
|
|
<LI>sWert</LI>
|
|
<LI>sParamName</LI>
|
|
<LI>sParamType</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsAuswertungsparameter.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsFaktoren">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Faktoren'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFaktoren.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFaktoren.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>fFaktor_Prod_Tage. May be SqlDouble.Null</LI>
|
|
<LI>fFuehrungsanteil. May be SqlDouble.Null</LI>
|
|
<LI>bStandard. May be SqlBoolean.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFaktoren.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>fFaktor_Prod_Tage. May be SqlDouble.Null</LI>
|
|
<LI>fFuehrungsanteil. May be SqlDouble.Null</LI>
|
|
<LI>bStandard. May be SqlBoolean.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFaktoren.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFaktoren.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iEintragnr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>fFaktor_Prod_Tage</LI>
|
|
<LI>fFuehrungsanteil</LI>
|
|
<LI>bStandard</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFaktoren.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsFunktionsgruppe">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'funktionsgruppe'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>sZugehoerigkeit. May be SqlString.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>sZugehoerigkeit. May be SqlString.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>sZugehoerigkeit</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsFunktionsgruppe_auswertungGruppe">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Funktionsgruppe_auswertungGruppe'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_auswertungGruppe.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_auswertungGruppe.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppe_AuswertungGruppenr</LI>
|
|
<LI>iFunktionsgruppenr. May be SqlInt32.Null</LI>
|
|
<LI>iAuswertungGruppeNr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_auswertungGruppe.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppe_AuswertungGruppenr</LI>
|
|
<LI>iFunktionsgruppenr. May be SqlInt32.Null</LI>
|
|
<LI>iAuswertungGruppeNr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_auswertungGruppe.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppe_AuswertungGruppenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_auswertungGruppe.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgruppe_AuswertungGruppenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iFunktionsgruppe_AuswertungGruppenr</LI>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
<LI>iAuswertungGruppeNr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_auswertungGruppe.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsFunktionsgruppe_rolle">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'funktionsgruppe_rolle'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_rolle.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_rolle.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgrupperollenr</LI>
|
|
<LI>iFunktionsgruppenr. May be SqlInt32.Null</LI>
|
|
<LI>iRollenr. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_rolle.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgrupperollenr</LI>
|
|
<LI>iFunktionsgruppenr. May be SqlInt32.Null</LI>
|
|
<LI>iRollenr. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_rolle.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgrupperollenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_rolle.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iFunktionsgrupperollenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iFunktionsgrupperollenr</LI>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
<LI>iRollenr</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsFunktionsgruppe_rolle.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsJahrestabelle">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Jahrestabelle'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsJahrestabelle.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsJahrestabelle.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
<LI>iJahr. May be SqlInt32.Null</LI>
|
|
<LI>iMonat. May be SqlInt32.Null</LI>
|
|
<LI>iPlantage. May be SqlInt32.Null</LI>
|
|
<LI>iFaktorNr. May be SqlInt32.Null</LI>
|
|
<LI>iArbeitstage. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsJahrestabelle.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
<LI>iJahr. May be SqlInt32.Null</LI>
|
|
<LI>iMonat. May be SqlInt32.Null</LI>
|
|
<LI>iPlantage. May be SqlInt32.Null</LI>
|
|
<LI>iFaktorNr. May be SqlInt32.Null</LI>
|
|
<LI>iArbeitstage. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsJahrestabelle.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsJahrestabelle.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iEintragnr</LI>
|
|
<LI>iJahr</LI>
|
|
<LI>iMonat</LI>
|
|
<LI>iPlantage</LI>
|
|
<LI>iFaktorNr</LI>
|
|
<LI>iArbeitstage</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsJahrestabelle.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsKey_tabelle">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'key_tabelle'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsKey_tabelle.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsKey_tabelle.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>iKey_wert</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iKeynr</LI>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsKey_tabelle.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iKeynr</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>iKey_wert</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsKey_tabelle.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iKeynr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsKey_tabelle.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iKeynr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iKeynr</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>iKey_wert</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsKey_tabelle.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsMeldungstexte">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'meldungstexte'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMeldungstextnr</LI>
|
|
<LI>iSprache</LI>
|
|
<LI>sInhalt. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMeldungstextnr</LI>
|
|
<LI>iSprache</LI>
|
|
<LI>sInhalt. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMeldungstextnr</LI>
|
|
<LI>iSprache</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.DeleteAllWmeldungstextnrLogic">
|
|
<summary>
|
|
Purpose: Delete method using PK field 'meldungstextnr'. This method will
|
|
delete one or more rows from the database, based on the Primary Key field 'meldungstextnr'.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMeldungstextnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.DeleteAllWspracheLogic">
|
|
<summary>
|
|
Purpose: Delete method using PK field 'sprache'. This method will
|
|
delete one or more rows from the database, based on the Primary Key field 'sprache'.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSprache</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMeldungstextnr</LI>
|
|
<LI>iSprache</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iMeldungstextnr</LI>
|
|
<LI>iSprache</LI>
|
|
<LI>sInhalt</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>iMandantnr</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMeldungstexte.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsMitarbeiter">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'mitarbeiter'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiternr</LI>
|
|
<LI>sVorname. May be SqlString.Null</LI>
|
|
<LI>sName. May be SqlString.Null</LI>
|
|
<LI>sTgnummer. May be SqlString.Null</LI>
|
|
<LI>sEmail. May be SqlString.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiternr</LI>
|
|
<LI>sVorname. May be SqlString.Null</LI>
|
|
<LI>sName. May be SqlString.Null</LI>
|
|
<LI>sTgnummer. May be SqlString.Null</LI>
|
|
<LI>sEmail. May be SqlString.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiternr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiternr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iMitarbeiternr</LI>
|
|
<LI>sVorname</LI>
|
|
<LI>sName</LI>
|
|
<LI>sTgnummer</LI>
|
|
<LI>sEmail</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsMitarbeiter_funktionsgruppe">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'mitarbeiter_funktionsgruppe'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter_funktionsgruppe.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter_funktionsgruppe.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiter_funktionsgruppenr</LI>
|
|
<LI>iMitarbeiternr. May be SqlInt32.Null</LI>
|
|
<LI>iFunktionsgruppenr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter_funktionsgruppe.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiter_funktionsgruppenr</LI>
|
|
<LI>iMitarbeiternr. May be SqlInt32.Null</LI>
|
|
<LI>iFunktionsgruppenr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter_funktionsgruppe.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiter_funktionsgruppenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter_funktionsgruppe.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iMitarbeiter_funktionsgruppenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iMitarbeiter_funktionsgruppenr</LI>
|
|
<LI>iMitarbeiternr</LI>
|
|
<LI>iFunktionsgruppenr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsMitarbeiter_funktionsgruppe.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsRolle">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'rolle'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRollenr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>bSysadminrolle. May be SqlBoolean.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRollenr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>bSysadminrolle. May be SqlBoolean.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRollenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRollenr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iRollenr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>bSysadminrolle</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsRolle_SecurityObject">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'Rolle_SecurityObject'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_SecurityObject.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_SecurityObject.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_securityobjectnr</LI>
|
|
<LI>iRollenr. May be SqlInt32.Null</LI>
|
|
<LI>iSecurityobjectnr. May be SqlInt32.Null</LI>
|
|
<LI>bReadonly. May be SqlBoolean.Null</LI>
|
|
<LI>bInvisible. May be SqlBoolean.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_SecurityObject.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_securityobjectnr</LI>
|
|
<LI>iRollenr. May be SqlInt32.Null</LI>
|
|
<LI>iSecurityobjectnr. May be SqlInt32.Null</LI>
|
|
<LI>bReadonly. May be SqlBoolean.Null</LI>
|
|
<LI>bInvisible. May be SqlBoolean.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_SecurityObject.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_securityobjectnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_SecurityObject.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_securityobjectnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iRolle_securityobjectnr</LI>
|
|
<LI>iRollenr</LI>
|
|
<LI>iSecurityobjectnr</LI>
|
|
<LI>bReadonly</LI>
|
|
<LI>bInvisible</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>iMandantnr</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_SecurityObject.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsRolle_sysadminfunktion">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'rolle_sysadminfunktion'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_sysadminfunktion.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_sysadminfunktion.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_sysadminfnktnr</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iSysadminfnktnr. May be SqlInt32.Null</LI>
|
|
<LI>iRollenr. May be SqlInt32.Null</LI>
|
|
<LI>iMandant. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_sysadminfunktion.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_sysadminfnktnr</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iSysadminfnktnr. May be SqlInt32.Null</LI>
|
|
<LI>iRollenr. May be SqlInt32.Null</LI>
|
|
<LI>iMandant. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_sysadminfunktion.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_sysadminfnktnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_sysadminfunktion.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iRolle_sysadminfnktnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iRolle_sysadminfnktnr</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>iSysadminfnktnr</LI>
|
|
<LI>iRollenr</LI>
|
|
<LI>iMandant</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsRolle_sysadminfunktion.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsSecurityObject">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'SecurityObject'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSecurityObject.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSecurityObject.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSecurityObjectNr</LI>
|
|
<LI>sSecurityForm. May be SqlString.Null</LI>
|
|
<LI>sSecurityObjectType. May be SqlString.Null</LI>
|
|
<LI>sSecurityObject. May be SqlString.Null</LI>
|
|
<LI>sSecurityObjectItem. May be SqlString.Null</LI>
|
|
<LI>sSecurityObjectDescriotion. May be SqlString.Null</LI>
|
|
<LI>iLevel. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSecurityObject.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSecurityObjectNr</LI>
|
|
<LI>sSecurityForm. May be SqlString.Null</LI>
|
|
<LI>sSecurityObjectType. May be SqlString.Null</LI>
|
|
<LI>sSecurityObject. May be SqlString.Null</LI>
|
|
<LI>sSecurityObjectItem. May be SqlString.Null</LI>
|
|
<LI>sSecurityObjectDescriotion. May be SqlString.Null</LI>
|
|
<LI>iLevel. May be SqlInt32.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSecurityObject.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSecurityObjectNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSecurityObject.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSecurityObjectNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iSecurityObjectNr</LI>
|
|
<LI>sSecurityForm</LI>
|
|
<LI>sSecurityObjectType</LI>
|
|
<LI>sSecurityObject</LI>
|
|
<LI>sSecurityObjectItem</LI>
|
|
<LI>sSecurityObjectDescriotion</LI>
|
|
<LI>iLevel</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>iMandantnr</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSecurityObject.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsSpalten">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'spalten'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSpalten.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSpalten.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
<LI>sTabelle. May be SqlString.Null</LI>
|
|
<LI>sTabellenspalte. May be SqlString.Null</LI>
|
|
<LI>sSpalte. May be SqlString.Null</LI>
|
|
<LI>bReadonly</LI>
|
|
<LI>bAlsHacken</LI>
|
|
<LI>iBreite. May be SqlInt32.Null</LI>
|
|
<LI>iReihenfolge. May be SqlInt32.Null</LI>
|
|
<LI>sTiptext. May be SqlString.Null</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>sNumberFormat. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSpalten.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
<LI>sTabelle. May be SqlString.Null</LI>
|
|
<LI>sTabellenspalte. May be SqlString.Null</LI>
|
|
<LI>sSpalte. May be SqlString.Null</LI>
|
|
<LI>bReadonly</LI>
|
|
<LI>bAlsHacken</LI>
|
|
<LI>iBreite. May be SqlInt32.Null</LI>
|
|
<LI>iReihenfolge. May be SqlInt32.Null</LI>
|
|
<LI>sTiptext. May be SqlString.Null</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>iMandantnr. May be SqlInt32.Null</LI>
|
|
<LI>sNumberFormat. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSpalten.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSpalten.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iEintragnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iEintragnr</LI>
|
|
<LI>sTabelle</LI>
|
|
<LI>sTabellenspalte</LI>
|
|
<LI>sSpalte</LI>
|
|
<LI>bReadonly</LI>
|
|
<LI>bAlsHacken</LI>
|
|
<LI>iBreite</LI>
|
|
<LI>iReihenfolge</LI>
|
|
<LI>sTiptext</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>sNumberFormat</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSpalten.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsSysadminfunktion">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'sysadminfunktion'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSysadminfunktion.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSysadminfunktion.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSysadminfnktnr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>iParentID. May be SqlInt32.Null</LI>
|
|
<LI>iSort. May be SqlInt32.Null</LI>
|
|
<LI>iImageIndex. May be SqlInt32.Null</LI>
|
|
<LI>iImageIndexOpen. May be SqlInt32.Null</LI>
|
|
<LI>iFtop. May be SqlInt32.Null</LI>
|
|
<LI>iFleft. May be SqlInt32.Null</LI>
|
|
<LI>iFwidth. May be SqlInt32.Null</LI>
|
|
<LI>iFheight. May be SqlInt32.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>iSprache</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>sDomaintable. May be SqlString.Null</LI>
|
|
<LI>sKeyFields. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSysadminfunktion.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSysadminfnktnr</LI>
|
|
<LI>sBezeichnung. May be SqlString.Null</LI>
|
|
<LI>iParentID. May be SqlInt32.Null</LI>
|
|
<LI>iSort. May be SqlInt32.Null</LI>
|
|
<LI>iImageIndex. May be SqlInt32.Null</LI>
|
|
<LI>iImageIndexOpen. May be SqlInt32.Null</LI>
|
|
<LI>iFtop. May be SqlInt32.Null</LI>
|
|
<LI>iFleft. May be SqlInt32.Null</LI>
|
|
<LI>iFwidth. May be SqlInt32.Null</LI>
|
|
<LI>iFheight. May be SqlInt32.Null</LI>
|
|
<LI>sBeschreibung. May be SqlString.Null</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>iSprache</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
<LI>sDomaintable. May be SqlString.Null</LI>
|
|
<LI>sKeyFields. May be SqlString.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSysadminfunktion.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSysadminfnktnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSysadminfunktion.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iSysadminfnktnr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iSysadminfnktnr</LI>
|
|
<LI>sBezeichnung</LI>
|
|
<LI>iParentID</LI>
|
|
<LI>iSort</LI>
|
|
<LI>iImageIndex</LI>
|
|
<LI>iImageIndexOpen</LI>
|
|
<LI>iFtop</LI>
|
|
<LI>iFleft</LI>
|
|
<LI>iFwidth</LI>
|
|
<LI>iFheight</LI>
|
|
<LI>sBeschreibung</LI>
|
|
<LI>iMandantnr</LI>
|
|
<LI>iSprache</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
<LI>sDomaintable</LI>
|
|
<LI>sKeyFields</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsSysadminfunktion.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.DB.clsToolTip">
|
|
<summary>
|
|
Purpose: Data Access class for the table 'ToolTip'.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsToolTip.#ctor">
|
|
<summary>
|
|
Purpose: Class constructor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsToolTip.Insert">
|
|
<summary>
|
|
Purpose: Insert method. This method will insert one new row into the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iToolTipNr</LI>
|
|
<LI>sFormularName. May be SqlString.Null</LI>
|
|
<LI>sControlName. May be SqlString.Null</LI>
|
|
<LI>sToolTip. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsToolTip.Update">
|
|
<summary>
|
|
Purpose: Update method. This method will Update one existing row in the database.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iToolTipNr</LI>
|
|
<LI>sFormularName. May be SqlString.Null</LI>
|
|
<LI>sControlName. May be SqlString.Null</LI>
|
|
<LI>sToolTip. May be SqlString.Null</LI>
|
|
<LI>bAktiv. May be SqlBoolean.Null</LI>
|
|
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
|
|
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
|
|
<LI>iMutierer. May be SqlInt32.Null</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsToolTip.Delete">
|
|
<summary>
|
|
Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>True if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iToolTipNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsToolTip.SelectOne">
|
|
<summary>
|
|
Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties needed for this method:
|
|
<UL>
|
|
<LI>iToolTipNr</LI>
|
|
</UL>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
<LI>iToolTipNr</LI>
|
|
<LI>sFormularName</LI>
|
|
<LI>sControlName</LI>
|
|
<LI>sToolTip</LI>
|
|
<LI>bAktiv</LI>
|
|
<LI>daErstellt_am</LI>
|
|
<LI>daMutiert_am</LI>
|
|
<LI>iMutierer</LI>
|
|
</UL>
|
|
Will fill all properties corresponding with a field in the table with the value of the row selected.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.clsToolTip.SelectAll">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.MyMitarbeiter.SelectAllwithFullname">
|
|
<summary>
|
|
Alle Mitarbeiter inkl. vollständigem Name (Fullname) auslesen
|
|
</summary>
|
|
<returns>Datatable</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.MyMitarbeiter.SelectWithTGNummer">
|
|
<summary>
|
|
Mitarbeiter mittels TGNummer auslesen
|
|
</summary>
|
|
<returns>Datatable</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.DB.MyMitarbeiter.ouser">
|
|
<summary>
|
|
Security-Deklaration zum Auslesen der UserID vom Windows-User
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.DB.MyMitarbeiter.Get_Username">
|
|
<summary>
|
|
Windows-User auslesen
|
|
</summary>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.clsUebersicht.LoadTreeView(System.Data.DataSet,System.Windows.Forms.TreeView@)">
|
|
<summary>
|
|
Tree aufbauen
|
|
</summary>
|
|
<param name="oDS"></param>
|
|
<param name="oTreeview"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.clsUebersicht.RecursivelyLoadTree(System.Data.DataRow,System.Windows.Forms.TreeNode@)">
|
|
<summary>
|
|
Child-Nodes hinzufügen
|
|
</summary>
|
|
<param name="oDataRow"></param>
|
|
<param name="oNode"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="T:_KPI.frmDomainEditor">
|
|
<summary>
|
|
Form mit generalisiertem Domain-Table-Editor.
|
|
</summary>
|
|
<remarks>
|
|
<img src="SampleDomainEditor.png"/>
|
|
</remarks>
|
|
<seealso
|
|
cref="!:Vertragsverwaltung.TKB.VV.Sysadmin.DomainTable">Vertragsverwaltung.TKB.VV.Sysadmin.DomainTable</seealso>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.#ctor(System.String)">
|
|
<summary>
|
|
Tabellenname übernehmen und Objekt DomainTable initialisieren
|
|
Initialisierung der Komponenten
|
|
</summary>
|
|
<param name="tblname">Tabellenname der Tabelle, welche über den Domaineditor editiert werden soll</param>
|
|
<remarks>Benötigt werden entsprechende Stored_Procedures, welche mit LBLLGEN_2 generiert wurden
|
|
pr_"Tablename"_SelectAll
|
|
pr_"Tablename"_Update
|
|
</remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.frmDomainEditor_Load(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Zuordnung der Daten aus Domaintable und Spaltentitel des Grids setzen
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.BeendenToolStripMenuItem_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Schliessen des Formulars
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.TSBtnQuit_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Ruft BeendetnToolStipMenuItem_Click auf
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.frmDomainEditor_FormClosing(System.Object,System.Windows.Forms.FormClosingEventArgs)">
|
|
<summary>
|
|
Prüfung auf allfällige Daten-Changes. Wurden Daten verändert, kann der User entscheiden, ob gespeichert, nichtgespeichert oder
|
|
das Formular nicht gespeichert werden soll.
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.TSBtnSave_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Sichern der Daten
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.C1Daten_AfterColUpdate(System.Object,C1.Win.C1TrueDBGrid.ColEventArgs)">
|
|
<summary>
|
|
Aktualisierung der Spalten mutiert_am und mutierern. Sofern noch kein Schlüsselwert gesetzt ist (bei neuem Datensatz)
|
|
wird dieser aus der Keytabelle ausgelesen und zugewiesen.
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks>Je Domaintable ist ein Eintrag in der Key-Tabelle notwendig</remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.C1Daten_AfterInsert(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Aktualisierung der Default-Werte
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.frmDomainEditor.C1Daten_FetchCellTips(System.Object,C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs)">
|
|
<summary>
|
|
Anzeige allfälliger Cellen-Tips
|
|
</summary>
|
|
<param name="sender"></param>
|
|
<param name="e"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.clsToolTips.Load_Data">
|
|
<summary>
|
|
Daten ab Datenbank laden
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.clsToolTips.GetControl(System.Windows.Forms.Control,System.String,System.Collections.Generic.List{System.Windows.Forms.Control}@,System.Boolean)">
|
|
<summary>
|
|
Sucht in den Base-Controls sämtliche Controls mit dem Namen in "Key" (Wildcards * möglich) und listet
|
|
die gefundnen Controls in der Liste L zur weiteren Bearbeitung
|
|
</summary>
|
|
<param name="BaseControl">Base-Contrlo (z.B. aktuelles Formular</param>
|
|
<param name="Key">Schlüssel welcher gesucht werden soll</param>
|
|
<param name="L">Liste der gefundenen Objekte</param>
|
|
<returns>True wenn eines oder mehr Controls gefunden wurden, false wenn kein Control gefunden wurde.
|
|
</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="T:_KPI.Utils.MyMessage">
|
|
<summary>
|
|
Standard-Messages in div. Formatenm
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Utils.MyMessage.meldungstexte">
|
|
<summary>
|
|
Dataview Meldungstexte um Textelemente für die Ausgabe zu suchen
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.Get_Meldungstext(System.Int32)">
|
|
<summary>
|
|
Meldungen aus der Datenbanklesen, sofern diese noch nicht ausgelesen worden sind. Nach dem ersten Lesen werden
|
|
die Daten aus der Tabelle Meldungstexte ohne erneutem DB-Zugriff verwendet
|
|
</summary>
|
|
<param name="i"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.show_standardmessage(System.Int32,Microsoft.VisualBasic.MsgBoxStyle)">
|
|
<summary>
|
|
Standardmessage
|
|
</summary>
|
|
<param name="i">Messagenr</param>
|
|
<param name="typ">Messagetyp</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.Show_MessageYesNo(System.Int32)">
|
|
<summary>
|
|
Yes-No-Meldung
|
|
</summary>
|
|
<param name="i">Meldungsnr</param>
|
|
<returns>MsgboxResult</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.show_standardmessage_ReplaceText(System.Int32,Microsoft.VisualBasic.MsgBoxStyle,System.String,System.String)">
|
|
<summary>
|
|
Standard-Meldung, welcher 2 Strings als Parameter übergeben werden, damit diese im Meldungstext ersetzt werden können.
|
|
Parameter im Meldungstext #1 oder #2
|
|
</summary>
|
|
<param name="i"></param>
|
|
<param name="typ"></param>
|
|
<param name="Text1"></param>
|
|
<param name="Text2"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.show_MessageYesNo_ReplaceText(System.Int32,System.String,System.String)">
|
|
<summary>
|
|
Yes-No-Meldung, welcher 2 Strings als Parameter übergeben werden, damit diese im Meldungstext ersetzt werden können.
|
|
Parameter im Meldungstext #1 oder #2
|
|
</summary>
|
|
<param name="i">MeldungsNr</param>
|
|
<param name="Text1">erster Text zum ersetzen</param>
|
|
<param name="Text2">zweiter Text zum ersetzen</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.ReplaceTextinMSG(System.String,System.String,System.String)">
|
|
<summary>
|
|
Ausgabe der Meldung, welche übergeben wird. Als Option können 2 Texte zum Ersetzen übergeben werden.
|
|
Parameter im Meldungstext #1 oder #2
|
|
</summary>
|
|
<param name="OrgText">Meldungstext</param>
|
|
<param name="Text1">erster Text zum ersetzen</param>
|
|
<param name="Text2">zweiter Text zum ersetzen</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.Show_MessageYesNoCancel(System.Int32)">
|
|
<summary>
|
|
Meldung Yes-No-Cancel
|
|
</summary>
|
|
<param name="i"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyMessage.ShowMyDialog(System.String,Microsoft.VisualBasic.MsgBoxStyle,Microsoft.VisualBasic.MsgBoxStyle)">
|
|
<summary>
|
|
Zeig den eigenen Messagebox-Dialog
|
|
</summary>
|
|
<param name="msgtext"></param>
|
|
<param name="cancelvisible"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="T:_KPI.Utils.MySecurity">
|
|
<summary>
|
|
Formular-Security-Objekte auslesen und auf DB schreiben bzw. Formular-Security zur Laufzeit setzen
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.Set_Form_Security(System.Windows.Forms.Form@)">
|
|
<summary>
|
|
Formularsecurity setzen
|
|
</summary>
|
|
<param name="f">Aktuelles Formular</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.Load_Data(System.String)">
|
|
<summary>
|
|
Daten ab Datenbank laden
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.Set_Security">
|
|
<summary>
|
|
Prüft die DB-Einträge mit den Formcontrols und bei Übereinstimmung werden die Security-Einstellungen gesetzt
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.Set_Preferences(System.Object@,System.Boolean,System.Boolean,System.String)">
|
|
<summary>
|
|
Security-Einstellungen setzen
|
|
</summary>
|
|
<param name="obj">Betroffenes Objeckt (Menuitem, Conrol usw.)</param>
|
|
<param name="read_only">Readonly ja/nein</param>
|
|
<param name="invisible">Sichtbar ja/nein</param>
|
|
<param name="SecurityObjectItem">Name des Unterobjektes - wird für die Spalteneinstellungen von C1TruedbGrids verwendet</param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.List_Form_Controls(System.Windows.Forms.Form@)">
|
|
<summary>
|
|
Alle Controls des Formulars zusammensuchen und auf der DB speichern
|
|
</summary>
|
|
<param name="f">Betroffenes Formular</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.Objectanalysis(System.Object@)">
|
|
<summary>
|
|
Sämtliche Controls vom Formular auslesen
|
|
</summary>
|
|
<param name="ctl"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Utils.MySecurity.level">
|
|
<summary>
|
|
Auslesen von MenuItems
|
|
</summary>
|
|
<param name="x"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.ReadContextMenu(System.Object@)">
|
|
<summary>
|
|
Auslesen von ContextMenuItems
|
|
</summary>
|
|
<param name="x"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.get_all_menus(System.Windows.Forms.ToolStripMenuItem@)">
|
|
<summary>
|
|
Auslesen von Menu-Subitems
|
|
</summary>
|
|
<param name="xx"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MySecurity.Objexists(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
Prüft, ob das Security-Objekt bereits auf der DB vorhanden ist
|
|
</summary>
|
|
<param name="securityform">Formular</param>
|
|
<param name="securityobjecttype">Objekttyp</param>
|
|
<param name="securityobject">Objektname</param>
|
|
<param name="securityobjectitem">Objektitem</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="T:_KPI.Utils.MyFormControls">
|
|
<summary>
|
|
Klasse für ein Control-Objekt
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyFormControls.#ctor(System.Object,System.String,System.String,System.String,System.String,System.Int32,System.String)">
|
|
<summary>
|
|
Neue Instanz erstellen
|
|
</summary>
|
|
<param name="ctl">Control-Objekt</param>
|
|
<param name="Formname">Betroffenes Formular</param>
|
|
<param name="securityobjecttype">Objekttyp</param>
|
|
<param name="Securityobject">Objektname</param>
|
|
<param name="SecurityObjectItem">Unterobjekt (z.B. bei Menus, Spalten von C1TrueDBGrids)</param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyFormControls.Write_Object_to_DB">
|
|
<summary>
|
|
Schreibt einen Datnsatz in die Tabelle SecurityObjects
|
|
</summary>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.MyFormControls.Objexists">
|
|
<summary>
|
|
Prüft, ob das Security-Objekt bereits auf der DB vorhanden ist
|
|
</summary>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.Tabellenspalte.ColumnOrder(System.String,C1.Win.C1TrueDBGrid.C1TrueDBGrid@)">
|
|
<summary>
|
|
Sortierung der in der DB-Tabelle Spalaten festgelegten Reihenfolge
|
|
</summary>
|
|
<param name="Tablename"></param>
|
|
<param name="Data"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Utils.clsSpalten.Select_All_Aktiv">
|
|
<summary>
|
|
Purpose: SelectAll method. This method will Select all rows from the table.
|
|
</summary>
|
|
<returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
|
|
<remarks>
|
|
Properties set after a succesful call of this method:
|
|
<UL>
|
|
<LI>iErrorCode</LI>
|
|
</UL>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:_KPI.TKB.VV.Utils.MyDocMgmt">
|
|
<summary>
|
|
Klasse für das Speichern bzw. Auslesen von Image-Dateien in der Datenbank
|
|
</summary>
|
|
<remarks>
|
|
Es werden folgende Datebanktabellen berücksichtigt:
|
|
<list type="bullet">
|
|
<item>
|
|
<description>Dokument Attribut DocImage</description></item>
|
|
<item>
|
|
<description>Profile Attribut V_Uebersicht (Profillayout des C1TrueDBGrids der
|
|
Vertragsübersicht|Vertragselemente</description></item></list>
|
|
</remarks>
|
|
<includesource>yes</includesource>
|
|
</member>
|
|
<member name="M:_KPI.TKB.VV.Utils.MyDocMgmt.Save_LayoutFile(C1.Win.C1TrueDBGrid.C1TrueDBGrid@,System.Int32,System.Int32)">
|
|
<summary>
|
|
Grid-Layoutfile speichern
|
|
</summary>
|
|
<param name="c1data">C1Truedbgrind, von welchem das Layout gespeichert werden soll</param>
|
|
<param name="GriddNo">Nummer des Grids: 1=Vertragsübersicht...</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.TKB.VV.Utils.MyDocMgmt.Save_Document(System.Int32,System.String)">
|
|
<summary>
|
|
Dokument in der Tabelle Dokument speichern
|
|
</summary>
|
|
<param name="Dokumentnr">Nummer des Dokument-Datensatzes</param>
|
|
<param name="Filename">Zu speichender Dateiname</param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.TKB.VV.Utils.MyDocMgmt.Get_Dokument(System.Int32)">
|
|
<summary>
|
|
Liest das Dokument aus der DB und speichert dieses unter einem temporären Filenamen ab
|
|
</summary>
|
|
<param name="DokumentNr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Vertragselement_Closed(System.Int32,System.Int32)">
|
|
<summary>
|
|
Event Formular "Vertragselement" Closed absetzen
|
|
</summary>
|
|
<param name="Vertragspartnernr"></param>
|
|
<param name="Vertragselementnr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Vertragspartner_Closed(System.Int32)">
|
|
<summary>
|
|
Event Formular Vertragsparter Closed absetzen
|
|
</summary>
|
|
<param name="Vertragspartnernr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Pendenz_Closed">
|
|
<summary>
|
|
Event Formular Pendenz Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Pendenz_Geloescht">
|
|
<summary>
|
|
Event Pendent Deleted absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Kuendigungsfrist_Closed">
|
|
<summary>
|
|
Event Formular Kontakte Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Kontakte_Closed">
|
|
<summary>
|
|
Event Formular Kuendigungsfrist Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Dokumente_Closed">
|
|
<summary>
|
|
Event Formular Dokumente Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Services_Closed">
|
|
<summary>
|
|
Event Formular Services Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Ereignis_Closed">
|
|
<summary>
|
|
Event Formular Ereignis Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Aktivitaet_Closed">
|
|
<summary>
|
|
Event Formular Aktivitaet Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Refernzvertrag_Closed">
|
|
<summary>
|
|
Event Formular Refernzvertrag Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Vertragsapplikation_Closed">
|
|
<summary>
|
|
Event Formular Pendenz Closed absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.MyGenericEventHandler.Vertragsapplikation_Geloescht">
|
|
<summary>
|
|
Event Pendent Deleted absetzen
|
|
</summary>
|
|
<param name="Pendenznr"></param>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.#ctor(System.String,System.Int32,System.String)">
|
|
<summary>
|
|
Tabellenname übernehmen und Daten ab DB laden
|
|
</summary>
|
|
<param name="tablename"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Load_Data">
|
|
<summary>
|
|
Daten ab Datenbank laden
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Load_BaseData">
|
|
<summary>
|
|
Basis-Datentabelle laden. Diese wird für die dynamische Generierung der Insert- und Update-Statements benötigt
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Generate_Update_Statement">
|
|
<summary>
|
|
Update-Statement dynamisch für das UpdateCommand generieren
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Generate_Insert_Statement">
|
|
<summary>
|
|
Insert-Statement dynamisch für das InsertCommand generieren
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Get_Prefix(System.Data.DataColumn)">
|
|
<summary>
|
|
Prefixt für den SP-Übergabeparameter generieren
|
|
</summary>
|
|
<param name="col">Aktuelle Columnt</param>
|
|
<returns>Prefis für SP-Übergabeparameter</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Get_SqlDBType(System.Data.DataColumn)">
|
|
<summary>
|
|
SQL-DB-Type für den SP-Übergabeparameter festlegen
|
|
</summary>
|
|
<param name="col">Aktuelle Column</param>
|
|
<returns>SQLDBType</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Get_Data_Fieldlen(System.Data.DataColumn)">
|
|
<summary>
|
|
Feldlänge für den SP-Übergabeparemter festlegen
|
|
</summary>
|
|
<param name="col">Aktulle Column</param>
|
|
<returns>Feldlänge</returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Save_Data">
|
|
<summary>
|
|
Datesichern. Dabei wird das Update- sowie das Insert-Statement dynamisch generiert
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.dispose">
|
|
<summary>
|
|
Dispose von Tabledata
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Load_Bootom_Table(System.String,System.Int32,System.String)">
|
|
<summary>
|
|
Load der Verbindungstabelle
|
|
</summary>
|
|
<param name="tablename"></param>
|
|
<param name="Fokus"></param>
|
|
<param name="KeyValue"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Sysadmin.DomainTable.Insert_Bottom_Table(System.String,System.Int32,System.String,System.String)">
|
|
<summary>
|
|
Neuer Eintrag in der Tabelle eintragen. Sind neben den Defaultwerten weitere Attribute vorhanden, werde diese abhängig vom Datentype mit Defaultwerten befüllt.
|
|
</summary>
|
|
<param name="key1"></param>
|
|
<param name="keyvalue1"></param>
|
|
<param name="key2"></param>
|
|
<param name="keyvalue2"></param>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Globals.Version">
|
|
<summary>
|
|
Applikationsversion
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Globals.Applikationsdaten">
|
|
<summary>
|
|
Applikationsdaten
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Globals.Mitarbeiternr">
|
|
<summary>
|
|
Angemelderter Mitarbeiter
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Globals.clsapplication">
|
|
<summary>
|
|
Applikationsparameter
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="F:_KPI.Globals.sConnectionString">
|
|
<summary>
|
|
DB-Verbindungsklasse
|
|
</summary>
|
|
<remarks></remarks>
|
|
</member>
|
|
<member name="M:_KPI.Globals.ApplicationPath">
|
|
<summary>
|
|
Aktueller Applikationspfad
|
|
</summary>
|
|
<returns></returns>
|
|
<remarks></remarks>
|
|
</member>
|
|
</members>
|
|
</doc>
|