Home » Archive by category Blog (Page 26)

C# SqlCommand 클래스

C# SqlCommand 클래스 SqlCommand 클래스는 SQL 서버에 어떤 명령을 내리기 위해 사용하는 클래스이다. SQL 테이블로부터 데이타를 가져오거나(SELECT), 테이블 내용을 삽입(INSERT), 갱신(UPDATE), 삭제(DELETE) 하기 위해 이 클래스를 사용할 수 있으며, 저장 프로시져 (Stored Procedure)를 사용할 때도 SqlCommand 를 사용한다. 아래 예제는 SELECT 문을 사용하여 SQL 서버의 [Finance] 테이블에서 데이타를...
Continue reading

C# SqlConnection 클래스

ADO.NET의 SqlConnection 클래스는 SQL Server를 접속하기 위한 클래스이다. SQL 서버를 사용하기 위해서는 클라이언트 프로그램은 SqlConnection을 사용하여 먼저 서버와 접속을 해야한다. 서버와 접속을 위해서는 접속시 사용하는 Connection String이 필요한데, 이에는 서버명, 인증방법, 초기 DB명 등을 지정하면 된다. 예제 string strConn = "Data Source=(local);Initial Catalog=pubs;Integrated Security=SSPI;"; SqlConnection conn = new SqlConnection(strConn); conn.Open(); // Do something here conn.Close(); C# SqlConnection 사용 대부분의 리소스는 사용후...
Continue reading

C# : SQL 데이타 엑세스

C# (혹은 .NET)에서 SQL 서버의 데이타를 엑세스하는 방법으로 흔히 사용되는 기술로 ADO.NET과 LINQ TO SQL, Entity Framework 등을 들 수 있다. ADO.NET은 기존의 ADO (ActiveX Data Object)로부터 계승되어 .NET에 맞게 나온 데이타 엑세스 클래스들이다. Entity Framework (EF)은 .NET에서 ORM (Object-Raltional Mapping: 관계형 데이타인 SQL과 객체 지향적 언어를 매핑시키는...
Continue reading

The Tables of a Data Set

  The Tables of a Data Set   Introduction The tables that belong to a DataSet object are stored in a property called Tables. TheDataSet.Tables property is an object of type DataTableCollection. TheDataTableCollection is a class that provides everything you need to add, locate, or manage any table...
Continue reading

How to filter in a XML file

using System; using System.Data; using System.Windows.Forms; using System.Xml; namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { XmlReader xmlFile ; xmlFile = XmlReader.Create("Product.xml", new XmlReaderSettings()); DataSet ds = new DataSet(); DataView dv ; ds.ReadXml(xmlFile); dv...
Continue reading

ArrayList XMLFileToArray c#

/// <summary> /// Read the Supplied XML File, Return a Generic System Array. /// </summary> /// <param name=”sFile”></param> /// <returns></returns> public static ArrayList XMLFileToArray(string sFile, string sElementName) { //Declare Variables ArrayList aRoot = new ArrayList(); Hashtable hElement; XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(sFile); XmlNodeList xmlNodeList = xmlDoc.GetElementsByTagName(sElementName); foreach...
Continue reading

네이버 웍스, 무료 스마트 워크 시스템의수준을 높인다

네이버 웍스, 무료 스마트 워크 시스템의수준을 높인다 서울–(뉴스와이어) 2013년 04월 04일 — NHN(대표이사 사장 김상헌)은 네이버의 메일, 캘린더,주소록을 사내 업무 시스템으로 무료 이용할 수 있는 ‘네이버 웍스(works)’의 기능을확대하고 도메인이 없는 기업들에게도 참여의 문호를 넓혔다고 밝혔다. 네이버 웍스(works)는 PC와 모바일에서 동일하게네이버의 메일, 캘린더, 주소록의 편의 기능을 그대로 활용할수 있는...
Continue reading