Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Permission
- YouTube API
- password
- 사용자삭제
- 플러터
- 흰셔츠 #누런때
- 쓰레드
- thread
- VSCode
- C++
- Lockscreen
- Flutter
- 잠금화면
- 백그라운드
- background_callback
- 사용자추가
- policy
- Flutter #Android #FCM #FirebaseCloudMessaging
- Android
- User
- 권한
- 권한부여
- Background
- MySQL
- firebase_message
- MariaDB
- C++ Debugging
- C++ Build
- 안드로이드
Archives
- Today
- Total
목록전체 글 (10)
고래 정보 분류소
[Retrofit2] Body가 있는 Delete Request 방법
@DELETE Annotation은 Body를 추가 할 수 없다. @HTTP Annotation을 사용하면 Body를 추가 할 수 있다. Kotlin 기준 @FormUrlEncoded @HTTP(method="DELETE", hasBody=true, path="path") fun deleteSomething(@Field("name") name:String):Response
Android/Retrofit2
2019. 11. 4. 15:17
[MySQL] 기본 설정 팁 1
사용자 추가 - CREATE USER 'userId'@'allow address' IDENTIFIED BY 'password'; ex ) CREATE USER 'bluewhale'@'localhost' IDENTIFIED BY '1234'; CREATE USER 'bluewhale'@'%' IDENTIFIED BY '12345'; CREATE USER 'bluewhale'@'123.123.123.123' IDENTIFIED BY '2345'; 사용자 삭제 - DROP USER 'userid'@'allow address'; ex ) DROP USER 'bluewhale'@'localhost'; DROP USER 'bluewhale'@'%'; DB 생성 - CREATE DATABASE dbname; ex )..
MySQL
2019. 10. 17. 16:01