| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // System.Data.OleDb.OleDbError
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Data;
- using System.Data.Common;
- namespace System.Data.OleDb
- {
- public sealed class OleDbError
- {
- private string errorMessage;
- private int nativeError;
- private string errorSource;
- private string sqlState;
- #region Constructors
- internal OleDbError (string msg, int code, string source, string sql)
- {
- errorMessage = msg;
- nativeError = code;
- errorSource = source;
- sqlState = sql;
- }
-
- #endregion // Constructors
-
- #region Properties
- public string Message {
- get {
- return errorMessage;
- }
- }
- public int NativeError {
- get {
- return nativeError;
- }
- }
- public string Source {
- get {
- return errorSource;
- }
- }
- public string SQLState {
- get {
- return sqlState;
- }
- }
- #endregion
- #region Methods
-
- [MonoTODO]
- public override string ToString ()
- {
- string toStr;
- String stackTrace;
- stackTrace = " <Stack Trace>";
- // FIXME: generate the correct SQL error string
- toStr = "OleDbError:" + errorMessage + stackTrace;
- return toStr;
- }
- #endregion
- }
- }
|