top of page

SQL developer for SQLite

Открытая·2 пользователя

SQLite: tree objects [Tables]



[EN]

List of tables in connected SQLite databases. Allows you to quickly navigate the database structure, perform various table maintenance operations, view the structure and data


SELECT Upper(name) "name"

  FROM $$ATTACHDB.sqlite_master

 WHERE Upper(type)='TABLE'

order by Upper(name)

Menu

  • Copy name - copy the table name to the clipboard

  • Reindex - rebuild all indexes built on table columns

  • Get DDL - generate table creation code

select sql

  from $$ATTACHDB.sqlite_master

 where Upper(name)=Upper($$TABLE_NAME)

  • SQL [Select] - generate query code for the table and add it to the editor

  • SQL [Insert] - generate command code for inserting data into a table and add it to the editor

  • SQL [Delete all rows] - generate command code to delete all rows in the table and add it to the editor

  • SQL [Rename table] - generate the command code for changing the table name and add it to the editor

  • SQL [Drop] - generate the code for deleting a table and add it to the editor

  • Show data - show table data in a grid in read-only mode

  • Edit data - show table data in a grid in edit mode

  • Edit table - open the table parameters editor

  • Export data to CSV - launch the wizard for exporting table data to a CSV file

  • Import data from CSV - launch the wizard for importing data from a CSV file into a table


"Column" node

List of columns of the selected table with data type


PRAGMA $$ATTACHDB.table_info($$TABLE_NAME)


Index node

List of indexes built by table columns


select name

  from $$ATTACHDB.sqlite_master

 where Upper(tbl_name) = Upper($$TABLE_NAME)

   and Upper(type) = 'INDEX' order by 1


"Details" node

Displays detailed information about the index


pragma $$ATTACHDB.index_info($$INDEX_NAME)



[RU]

Список таблиц в подключенных базах данных SQLite. Позволяет быстро ориентироваться в структуре БД, выполнять различные операции обслуживания таблиц, просматривать структуру и данные


SELECT Upper(name) "name"

FROM $$ATTACHDB.sqlite_master

WHERE Upper(type)='TABLE'

order by Upper(name)


Меню

  • Copy name - скопировать имя таблицы в буфер обмена

  • Reindex - перестроить все индексы построенные по колонкам таблицы

  • Get DDL - сформировать код создания таблицы

select sql

from $$ATTACHDB.sqlite_master

where Upper(name)=Upper($$TABLE_NAME)

  • SQL [Select] - сформировать код запроса к таблице и добавить в редактор

  • SQL [Insert] - сформировать код команды на вставку данных в таблицу и добавить в редактор

  • SQL [Delete all rows] - сформировать код команды на удаление всех строк в таблице и добавить в редактор

  • SQL [Rename table] - сформировать код команды на изменение имени таблицы и добавить в редактор

  • SQL [Drop] - сформировать код удаления таблицы и добавить в редактор

  • Show data - показать данные таблицы в сетке в режиме только для чтения

  • Edit data - показать данные таблицы в сетке в режиме редактирования

  • Edit table - открыть редактор параметров таблицы

  • Export data to CSV - запустить мастер выгрузки данных таблицы в CSV файл

  • Import data from CSV - запустить мастер импорта данных из CSV файла в таблицу


Узел "Column"

Список колонок выбранной таблицы с типом данных


PRAGMA $$ATTACHDB.table_info($$TABLE_NAME)


Узел "Index"

Список индексов построенных по колонкам таблицы


select name

from $$ATTACHDB.sqlite_master

where Upper(tbl_name) = Upper($$TABLE_NAME)

and Upper(type) = 'INDEX' order by 1


Узел "Details"

Выводится подробная информация по индексу


pragma $$ATTACHDB.index_info($$INDEX_NAME)


6 просмотров

О группе

Добро пожаловать в группу! Общайтесь с другими участниками, получайте обновления и делитесь фото и видео.

Участники

bottom of page