'c#'에 대한 검색결과 2개
c#와(과) 일치하는 검색결과가 없습니다.
제안:
- 모든 단어의 철자가 정확한지 확인하세요.
- 다른 검색어를 사용해 보세요.
- 더 일반적인 검색어를 사용해 보세요.
C# MSSQL 접속 SAMPLE SOURCE
using System; using System.Data; using System.Data.SqlClient; public class DB_TEST { public static void Main(string[] args) { SqlConnection conn = new SqlConnection(); conn.ConnectionString = "Server=ip;database=CL_ADMIN;uid=sa;pwd=password;"; try { conn.Open(); Console.WriteLine("데이터베이스 연결성공.."); String log = " SELECT * FROM dbo.OB_TEST"; // 쿼리문 SqlCommand cmd = new SqlCommand(log, conn); // 적용..