c#으로 돌아와서 using System.Data; using System.Data.SqlClient; 요게 필요하다!! 2개를 소개하겠다. select, insert 1. select -------------------------------------------- SqlConnection con = new SqlConnection(); con.ConnectionString = "Server=localhost;database=tempdb;uid=sa;pwd="; // Server='IP주소 가능', database = '테이블만든데이터베이스' // mssql 설치시 입력한 id와 pass string strSql = "SELECT * From diary WHERE date=@date"; // *은 전체를..