| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- //
- // System.Data.SqlClient.SqlException.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc
- //
- using System;
- using System.Data;
- using System.Runtime.Serialization;
- namespace System.Data.SqlClient
- {
- /// <summary>
- /// Exceptions, as returned by SQL databases.
- /// </summary>
- public sealed class SqlException : SystemException
- {
- private SqlErrorCollection errors = new SqlErrorCollection();
- internal SqlException() {
-
- }
- internal SqlException(byte theClass, int lineNumber,
- string message, int number, string procedure,
- string server, string source, byte state) {
-
- errors = new SqlErrorCollection (theClass,
- lineNumber, message,
- number, procedure,
- server, source, state);
- }
- #region Properties
- [MonoTODO]
- public byte Class {
- get {
- if(errors.Count == 0)
- return 0; // FIXME: throw exception here?
- else
- return errors[0].Class;
- }
- set {
- errors[0].SetClass(value);
- }
- }
- [MonoTODO]
- public SqlErrorCollection Errors {
- get {
- return errors;
- }
- set {
- errors = value;
- }
- }
- [MonoTODO]
- public int LineNumber {
- get {
- if(errors.Count == 0)
- return 0; // FIXME: throw exception here?
- return errors[0].LineNumber;
- }
- set {
- errors[0].SetLineNumber(value);
- }
- }
-
- [MonoTODO]
- public override string Message {
- get {
- if(errors.Count == 0)
- return ""; // FIXME: throw exception?
- else {
- String msg = "";
- int i = 0;
-
- for(i = 0; i < errors.Count - 1; i++) {
- msg = msg + errors[i].Message + "\n";
- }
- msg = msg + errors[i];
- return msg;
- }
- }
- }
-
- [MonoTODO]
- public int Number {
- get {
- if(errors.Count == 0)
- return 0; // FIXME: throw exception?
- else
- return errors[0].Number;
- }
- set {
- errors[0].SetNumber(value);
- }
- }
-
- [MonoTODO]
- public string Procedure {
- get {
- if(errors.Count == 0)
- return ""; // FIXME: throw exception?
- else
- return errors[0].Procedure;
- }
- set {
- errors[0].SetProcedure(value);
- }
- }
- [MonoTODO]
- public string Server {
- get {
- if(errors.Count == 0)
- return ""; // FIXME: throw exception?
- else
- return errors[0].Server;
- }
- set {
- errors[0].SetServer(value);
- }
- }
-
- [MonoTODO]
- public override string Source {
- get {
- if(errors.Count == 0)
- return ""; // FIXME: throw exception?
- else
- return errors[0].Source;
- }
- set {
- errors[0].SetSource(value);
- }
- }
- [MonoTODO]
- public byte State {
- get {
- if(errors.Count == 0)
- return 0; // FIXME: throw exception?
- else
- return errors[0].State;
- }
- set {
- errors[0].SetState(value);
- }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override void GetObjectData(SerializationInfo si,
- StreamingContext context) {
- // FIXME: to do
- }
- // [Serializable]
- // [ClassInterface(ClassInterfaceType.AutoDual)]
- public override string ToString() {
- String toStr = "";
- for (int i = 0; i < errors.Count; i++) {
- toStr = toStr + errors[i].ToString() + "\n";
- }
- return toStr;
- }
- internal void Add(byte theClass, int lineNumber,
- string message, int number, string procedure,
- string server, string source, byte state) {
-
- errors.Add (theClass, lineNumber, message,
- number, procedure,
- server, source, state);
- }
- [MonoTODO]
- ~SqlException() {
- // FIXME: destructor to release resources
- }
- #endregion // Methods
- }
- }
|