コード例 #1
0
 public void addConnections(MultiSourceQuery msq2)
 {
     for (int i = 0; i < msq2.cxnTable.Count; i++)
     {
         if (!this.cxnTable.ContainsKey((string)msq2.cxnTable.GetKey(i)))
         {
             this.cxnTable.Add(msq2.cxnTable.GetKey(i), msq2.cxnTable.GetValue(i));
         }
     }
 }
コード例 #2
0
ファイル: ConnectionApi.cs プロジェクト: OSEHRA/mdo
 public ConnectionApi(DataSource[] sources)
 {
     MultiSourceQuery = new MultiSourceQuery(sources);
 }
コード例 #3
0
ファイル: MultiSourceQuery.cs プロジェクト: OSEHRA/mdo
 public void addConnections(MultiSourceQuery msq2)
 {
     for (int i = 0; i < msq2.cxnTable.Count; i++)
     {
         if (!this.cxnTable.ContainsKey((string)msq2.cxnTable.GetKey(i)))
         {
             this.cxnTable.Add(msq2.cxnTable.GetKey(i), msq2.cxnTable.GetValue(i));
         }
     }
 }
コード例 #4
0
ファイル: ConnectionApi.cs プロジェクト: OSEHRA/mdo
 public IndexedHashtable getTimestamp(MultiSourceQuery msq)
 {
     return msq.execute("Connection", "getTimestamp", new object[] { });
 }