public static bool SQ_SUCCEEDED(SQRESULT res)
 {
     return(res >= 0);
 }
 public static bool SQ_FAILED(SQRESULT res)
 {
     return(res < 0);
 }