BLOG ARTICLE .NET/SampleCode | 3 ARTICLE FOUND

  1. 2013.07.31 XML Serialize, Deserialize
  2. 2008.04.28 CreateUpdateQuery() 1
  3. 2008.04.28 [BL] Insert 모듈 1


http://www.dotnetjohn.com/articles.aspx?articleid=173


using System.IO;

using System.Xml;

using System.Xml.Serialization;


    /// <summary>

    /// Method to convert a custom Object to XML string

    /// </summary>

    /// <param name="pObject">Object that is to be serialized to XML</param>

    /// <returns>XML string</returns>

    public String SerializeObject ( Object pObject )

    {

        try

        {

            String XmlizedString = null;

            MemoryStream memoryStream = new MemoryStream ( );

            XmlSerializer xs = new XmlSerializer ( typeof ( Animal ) );

            XmlTextWriter xmlTextWriter = new XmlTextWriter ( memoryStream, Encoding.UTF8 );

 

            xs.Serialize ( xmlTextWriter, pObject );

            memoryStream = ( MemoryStream ) xmlTextWriter.BaseStream;

            XmlizedString = UTF8ByteArrayToString ( memoryStream.ToArray ( ) );

            return XmlizedString;

        }

        catch ( Exception e )

        {

            System.Console.WriteLine ( e );

            return null;

        }

    }



    /// <summary>

    /// Method to reconstruct an Object from XML string

    /// </summary>

    /// <param name="pXmlizedString"></param>

    /// <returns></returns>

    public Object DeserializeObject ( String pXmlizedString )

    {

        XmlSerializer xs = new XmlSerializer ( typeof ( Automobile ) );

        MemoryStream memoryStream = new MemoryStream ( StringToUTF8ByteArray ( pXmlizedString ) );

        XmlTextWriter xmlTextWriter = new XmlTextWriter ( memoryStream, Encoding.UTF8 );

 

        return xs.Deserialize ( memoryStream );

    }


Serialize 시에 엔터 값를 그대로 받으려면 XmlTextWriter를 제외하고 사용.

XmlTextWriter를 사용 했을 때 xml 문자열이 한줄로 쭉 작성 됨.


'.NET > SampleCode' 카테고리의 다른 글

CreateUpdateQuery()  (1) 2008.04.28
[BL] Insert 모듈  (1) 2008.04.28

AND


        /// <summary>
        /// 업데이트 쿼리 생성
        /// </summary>
        /// <param name="Key">업데이트 키</param>
        /// <param name="ht">업데이트 내용: Key는 수정할 필드명, Value는 수정할 값을 넣어준다        </param>
        /// <returns></returns>
        public string CreateUpdateQuery(string tableName, Hashtable Key, Hashtable ht)
        {
            string sql = " UPDATE " + tableName + " SET ";

            int x = 0;

            // UPDATE 문
            foreach (DictionaryEntry de in ht)
            {
                if (x == 0)
                {
                    sql += de.Key + " = '" + de.Value + "' ";
                }
                else
                {
                    sql += ", " + de.Key + " = '" + de.Value + "'";
                }

                x++;
            }

            x = 0;

            // 조건문
            foreach (DictionaryEntry de in Key)
            {
                if (x == 0)
                {
                    sql += " WHERE " + de.Key + " = '" + de.Value + "'";
                }
                else
                {
                    sql += " AND " + de.Key + " = '" + de.Value + "'";
                }

                x++;
            }

            return sql;
        }
 

'.NET > SampleCode' 카테고리의 다른 글

XML Serialize, Deserialize  (0) 2013.07.31
[BL] Insert 모듈  (1) 2008.04.28

AND

[BL] Insert 모듈

.NET/SampleCode 2008. 4. 28. 01:07

        /// <summary>
        /// Insert 쿼리 생성
        /// </summary>
        /// <param name="ht">인서트 내용: Key는 인서트할 필드명, Value는 인서트할 값을 넣어준다        </param>
        /// <returns></returns>
        public string CreateInsertQuery(string tableName, Hashtable ht)
        {
            string sql = string.Empty;
            string field = string.Empty;
            string values = string.Empty;

            DateTime.Now.ToString("yyyyMMdd HH:mm:ss");

            int x = 0;

            // INSERT 문
            foreach (DictionaryEntry de in ht)
            {
                if (x == 0)
                {
                    field = (string)de.Key;
                    values = "'" + de.Value + "'";
                }
                else
                {
                    field += ", " + de.Key;
                    values += ", '" + de.Value + "'";
                }

                x++;
            }

            sql = " INSERT INTO " + tableName + " (" + field + ") VALUES (" + values + ")";

            return sql;
        }

'.NET > SampleCode' 카테고리의 다른 글

XML Serialize, Deserialize  (0) 2013.07.31
CreateUpdateQuery()  (1) 2008.04.28

AND