728x90
Android cannot connect directly to the database server. Therefore we need to create a simple web service that will pass the requests to the database and will return the response.
--------------------------------------------------------------------------------
불편하게 왜 웹서버를 통해서 DB에 접근하나 싶어
DB접속모듈을 만들어서 바로 호출하려고 해 보니...
12-17 11:17:35.221: I/dalvikvm(2543): Could not find method javax.naming.Reference.get, referenced from method com.mysql.jdbc.ConnectionPropertiesImpl$ConnectionProperty.initializeFrom
등의 에러가 난다.. 쩝.
그래서 찾아보니 위와 같은 문구가 2012년도 게시글에 나온다...
"안드로이드는 DB서버에 직접접근이 안된다. 그래서 요청을 DB에 하고 응답을 받을 수 있는 간단한 웹서비스를 만들 필요가 있다" 라고 하네... 쩝.
출처 : http://stackoverflow.com/questions/12233145/connecting-to-mysql-from-android-with-jdbc
728x90