예제 #1
0
파일: ex.cs 프로젝트: GunterMueller/Ingres
 internal IngresException(SqlEx.ErrInfo errinfo, Exception innerException)
     : base(errinfo.Msg, innerException)
 {
     AddError(errinfo.Msg, errinfo.sqlState, errinfo.code);
     while (innerException != null)
     {
         AddError(innerException.Message, errinfo.sqlState, errinfo.code);
         innerException = innerException.InnerException;
     }
 }
예제 #2
0
 internal IngresError(SqlEx.ErrInfo errInfo)
 {
     this.message     = errInfo.Msg;
     this.SQLstate    = errInfo.sqlState;
     this.nativeError = errInfo.code;
 }
예제 #3
0
파일: ex.cs 프로젝트: GunterMueller/Ingres
 internal IngresException(SqlEx.ErrInfo errinfo)
     : base(errinfo.Msg)
 {
     AddError(errinfo.Msg, errinfo.sqlState, errinfo.code);
 }