Exemplo n.º 1
0
 public ConnectionRow AddConnectionRow(ConnectionTypeRow parentConnectionTypeRowByRel_ConnectionType, string ConnectionName, string URL, string UserName, string Password, bool RememberPassword, bool ActiveUser, string Version, string Charset) {
     ConnectionRow rowConnectionRow = ((ConnectionRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null,
             ConnectionName,
             URL,
             UserName,
             Password,
             RememberPassword,
             ActiveUser,
             Version,
             Charset};
     if ((parentConnectionTypeRowByRel_ConnectionType != null)) {
         columnValuesArray[1] = parentConnectionTypeRowByRel_ConnectionType[0];
     }
     rowConnectionRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowConnectionRow);
     return rowConnectionRow;
 }
Exemplo n.º 2
0
 public void AddConnectionTypeRow(ConnectionTypeRow row) {
     this.Rows.Add(row);
 }
Exemplo n.º 3
0
 public void RemoveConnectionTypeRow(ConnectionTypeRow row) {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public ConnectionTypeRowChangeEvent(ConnectionTypeRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }