ehdgks0627 / layer7-ca

hi ^^
0 stars 1 forks source link

C#에서 DB 연결하기 #6

Closed ehdgks0627 closed 8 years ago

ehdgks0627 commented 8 years ago

layer7 서버 DB 사용

ehdgks0627 commented 8 years ago

Connection error 18 발생 http://blog.naver.com/haengro/220203859542 => 실패

try
            {
                string connstring =
                "server=;" + //서버,포트 ex) server=naver.com,3306
                "database=ca2016;" +
                "uid=root;" +
                "pwd=;" + //비밀번호
                "Encrypt=False;" +
                "Integrated Security=False;";
                SqlConnection conn = new SqlConnection(connstring);
                SqlCommand cmd = new SqlCommand();
                conn.Open();
            }catch(Exception ec)
            {
                MessageBox.Show(ec.Message.ToString());
            }
junorouse commented 8 years ago

님 저렇게 하면 해킹당하잖음. 서버에서 처리하든가 해야지 아 글고 저거 에러나는거 아마 localhost만 허용해놔서 그럴꺼임

ehdgks0627 commented 8 years ago

서버쪽에서 방화벽이랑 호스트 다 건드려서 mysql.exe로는 접속 되는거 확인 했는데 C#은 뻗어버려요

dohvis commented 8 years ago

서버에서 처리하란말이 PHP같은걸로(다른거면 더 좋고) API를 만들라는 소리임ㅇㅇ

ehdgks0627 commented 8 years ago

넵 API형식으로 만들어서 사용해볼게요