extends XmlReader to wrap Sql statement : XmlReader « XML « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » XML » XmlReader 
30.5.8.extends XmlReader to wrap Sql statement
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.Data;
using System.Data.OleDb;


    public class TableReader : XmlReader
    {
        private OleDbConnection cnn;
        private OleDbCommand cmd = new OleDbCommand();
        private OleDbDataReader reader;
        private int columnIndex = -1;
        private string strValue;

        public TableReader(string connectionString,string sql)
        {
            cnn = new OleDbConnection(connectionString);
            cmd.Connection = cnn;
            cmd.CommandText = sql;
            cmd.CommandType = CommandType.TableDirect;
            cnn.Open();
            reader = cmd.ExecuteReader();
        }

        public override int AttributeCount
        {
            get 
            {
                return reader.FieldCount;
            }
        }

        public override void Close()
        {
            reader.Close();
            cnn.Close();
        }

        public override int Depth
        {
            get 
            {
                return reader.Depth;
            }
        }

        public override string GetAttribute(int i)
        {
            return reader.GetValue(i).ToString();
        }

        public override string GetAttribute(string name)
        {
            return reader.GetValue(reader.GetOrdinal(name)).ToString();
        }

        public override bool MoveToAttribute(string name)
        {
            columnIndex = reader.GetOrdinal(name);
            return true;
        }

        public override bool MoveToElement()
        {
            columnIndex = -1;
            return true;
        }

        public override bool MoveToFirstAttribute()
        {
            columnIndex = 0;
            return true;
        }

        public override bool MoveToNextAttribute()
        {
            columnIndex++;
            if (columnIndex > reader.FieldCount - 1)
            {
                return false;
            }
            else
            {
                return true;
            }
        }

        public override bool Read()
        {
            columnIndex = -1;
            strValue = "";
            return reader.Read();
        }

        public override bool HasValue
        {
            get 
            {
                return reader.IsDBNull(columnIndex);
            }
        }

        public override bool ReadAttributeValue()
        {
            if (columnIndex < reader.FieldCount)
            {
                strValue = reader.GetValue(columnIndex).ToString();
                return true;
            }
            else
            {
                return false;
            }
        }

        public string Name
        {
            get
            {
                if (columnIndex == -1)
                {
                    return cmd.CommandText;
                }
                else
                {
                    return reader.GetName(columnIndex);
                }
            }
        }

        public override string Value
        {
            get 
            {
                return strValue;
            }
        }
        public override bool EOF
        {
            get
            {
                throw new Exception("not implemented.");
            }
        }

        public override string GetAttribute(string name, string namespaceURI)
        {
            throw new Exception("not implemented.");
        }

        public override bool MoveToAttribute(string name, string ns)
        {
            throw new Exception("not implemented.");
        }

        public override string BaseURI
        {
            get
            {
                throw new Exception("not implemented.");
            }
        }

        public override bool IsEmptyElement
        {
            get throw new Exception("not implemented.")}
        }

        public override string LocalName
        {
            get throw new Exception("not implemented.")}
        }

        public override string LookupNamespace(string prefix)
        {
            throw new Exception("not implemented.");
        }


        public override XmlNameTable NameTable
        {
            get throw new Exception("not implemented.")}
        }

        public override string NamespaceURI
        {
            get throw new Exception("not implemented.")}
        }

        public override XmlNodeType NodeType
        {
            get throw new Exception("not implemented.")}
        }

        public override string Prefix
        {
            get throw new Exception("not implemented.")}
        }


        public override ReadState ReadState
        {
            get throw new Exception("not implemented.")}
        }

        public override void ResolveEntity()
        {
            throw new Exception("not implemented.");
        }
    }
30.5.XmlReader
30.5.1.XmlReader: ReadElementContentAsString
30.5.2.Create XmlReader from Stream
30.5.3.Using XmlReader to read Xml result set from database
30.5.4.XmlReaderSettings and XmlWriterSettings
30.5.5.XmlTextReader in Action
30.5.6.Read Xml output from database
30.5.7.Chaining an XmlReader to an XmlWriter
30.5.8.extends XmlReader to wrap Sql statement
30.5.9.Create the validating reader
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.