본문 바로가기

데이터베이스3

Mac(맥) 에서 사용하는 유용한 무료 DB(데이터베이스) SQL 툴 DBeaver 이라는 툴 입니다. 무료이기도 하고 정말 윈도우에서 쓰다가 맥으로 넘어와서 여기는 뭘 깔아서 조회해보지? 할때 정말 좋은거같아요. 많은 데이터베이스를 지원하고있더라구요..! 연결도 그렇게 어렵지않게 할수 있었습니다. https://dbeaver.io/ DBeaver Community | Free Universal Database Tool DBeaver Universal Database Tool Free multi-platform database tool for developers, database administrators, analysts and all people who need to work with databases. Supports all popular databases: MySQ.. 2021. 9. 27.
안드로이드 retrofit2(레트로핏2)를 이용한 통신예제 (1) 저는 주로 데이터베이스의 정보를 긁어올때 사용하던 방법입니다. 우선 build.gradle (:app) 에다가 라이브러리를 추가해주겠습니다. implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5' implementation 'com.squareup.retrofit2:converter-gson:2.1.0' implementation 'com.googlecode.android-query:android-query:0.25.9' implementation 'com.squareup.okhttp3:okhttp:3.3.1' implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0' im.. 2020. 12. 8.
C# 큐브리드 데이터베이스 연동하기. 우선 해당파일을 다운로드 해주세요. 비주얼 스튜디오 오른쪽에 참조에서 오른쪽 클릭하셔서 참조추가 해주신다음에 받으신 압축파일을 풀어보시면 CUBRID.Data.dll 파일이 있습니다. 해당 파일을 추가해주시면 됩니다. (참조추가에서 찾아보기 누르시면됩니다.) public static string server = "DB서버주소"; public static string database = "DB이름"; public static string uid = "DB로그인 아이디"; public static string password = "DB비밀번호"; public static string port = "DB포트"; public static string DB_url = "server=" + server + ";da.. 2020. 9. 24.