Develop

    [PHP] DB -> JSON 형식 출력 (유니코드 변환)

    123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 Colored by Color Scriptercs

    [C#] mysql 사용하기

    아래 사이트에서 mysql-connector 다운로드 https://downloads.mysql.com/archives/c-net/ Operation System : .Net & Mono 선택Version은 본인이 원하는 것으로 선택. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657using MySql.Data.MySqlClient;using MySql.Data;using System.Data;using System; namespace sports{ class test { //Insert, Delete, Update 사용 static void writefunc() ..

    [C#] 웹 파싱 (WebClient)

    1234567891011121314151617181920212223242526272829303132333435using System.Text;using System.Net; namespace test{ class test { static void testfunc() { /* * dom : html 저장 변수 * wc.DownloadString("url") : url의 html 코드를 불러옴. * wc.Dispose(); : WebClient 메모리 해제; * wc.Encoding : 한글 깨짐 방지를 위해 Encoding.UTF8 지정 */ WebClient wc = new WebClient(); wc.Encoding = Encoding.UTF8; string dom = wc.DownloadString(..