hoony's web study

728x90
반응형

Sqflite 에서 사용하는 Data Type 이 매번 할 때마다 찾아봐서 제 블로그에 스크랩을 해두고자 글을 올립니다.

현재 올리는 것은 
https://www.sqlite.org/datatype3.html

 

Datatypes In SQLite Version 3

INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.

www.sqlite.org

위의 URL을 참고해서 정리했습니다.

NULL null 값 
INTEGER 정수형 값 
REAL 부동 소수점 값 
TEXT  UTF-8, UTF-16BE, UTF-16 LE중  텍스트 문자열
BLOB Binary Large Object. 입력 데이터를 그대로 저장 

일반적으로 double, float, real 은 REAL 타입으로 하면 된다.

728x90

'App 개발관련 > flutter' 카테고리의 다른 글

Flutter type test Operators(flutter type 비교 연산자)  (0) 2021.05.04
Mac Sqlite Browser tool  (0) 2021.05.04
ListTile 정리  (0) 2021.05.02
Flutter SafeArea 설명  (0) 2021.05.02
Flutter Icon to Button  (0) 2021.04.30

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading