Sqlite3-pragma

From 탱이의 잡동사니
Revision as of 09:19, 17 October 2016 by Pchero (talk | contribs)
Jump to navigation Jump to search

Overvew

Sqlite3 pragma 내용 정리

List

전체 Pragma 목록

application_id
auto_vacuum
automatic_index
busy_timeout
cache_size
cache_spill
case_sensitive_like
cell_size_check
checkpoint_fullfsync
collation_list
compile_options
count_changes
data_store_directory
data_version
database_list
default_cache_size
defer_foreign_keys
empty_result_callbacks
encoding
foreign_key_check
foreign_key_list
foreign_keys
freelist_count
full_column_names
fullfsync
ignore_check_constraints
incremental_vacuum
index_info
index_list
index_xinfo
integrity_check
journal_mode
journal_size_limit
legacy_file_format
locking_mode
max_page_count
mmap_size
page_count
page_size
parser_trace
query_only
quick_check
read_uncommitted
recursive_triggers
reverse_unordered_selects
schema_version
secure_delete
short_column_names
shrink_memory
soft_heap_limit
stats
synchronous
table_info
temp_store
temp_store_directory
threads
user_version
vdbe_addoptrace
vdbe_debug
vdbe_listing

table_info()

입력된 table 의 정보를 출력한다. 각각의 라인마다 테이블에 있는 모든 칼럼과 속성을 하나씩 출력한다. table 뿐만 아니라 view 정보도 확인할 수 있다. 각각의 항목별 내용은 아래 순서와 같다.

  • Index
  • Column name
  • Data type
  • Set NULL 가능 여부.(0:가능, 1:불가능)
  • Default value
  • Primary key 여부
sqlite> pragma table_info(plan);
0|uuid|varchar(255)|1||1
1|name|varchar(255)|0|null|0

jounal_mode