Inheritance: System.Collections.CollectionBase
示例#1
0
		internal DB2Exception(short sqlHandleType, IntPtr sqlHandle, string message)
		{	
			this.message = message;
			errors = new DB2ErrorCollection(sqlHandleType, sqlHandle);


		}
示例#2
0
			public DB2ErrorEnumerator(DB2ErrorCollection mappings) 
			{
				this.temp = ((IEnumerable)(mappings));
				this.baseEnumerator = temp.GetEnumerator();
			}
示例#3
0
 internal DB2Exception(short sqlHandleType, IntPtr sqlHandle, string message)
 {
     this.message = message;
     errors       = new DB2ErrorCollection(sqlHandleType, sqlHandle);
 }
		public DB2InfoMessageEventArgs(DB2ErrorCollection errors)
		{
			this.errors = errors;
		}
 public DB2InfoMessageEventArgs(DB2ErrorCollection errors)
 {
     this.errors = errors;
 }
示例#6
0
 public DB2ErrorEnumerator(DB2ErrorCollection mappings)
 {
     this.temp           = ((IEnumerable)(mappings));
     this.baseEnumerator = temp.GetEnumerator();
 }