⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 map.table

📁 gxsnmp SNMP MANAGER 的实现
💻 TABLE
字号:
##  The MAP table is used to store information about a map.##  _rowid       is a positive integer, unique within the MAP table, that#		is used to identify a specific row in the table.##  created      is the date and time that the row entry was created##  modified     is the date and time that the row entry was last modified##  name   	is the name of the map.##  tab		is the name to be displayed on the tab in the map notebook.##  description	is the user-assigned description of the map.##  tags         is the application specific tags for this object.#create table map (   _rowid        int not null,   created      char(20),   modified     char(20),   name         char(16),   tab		char(8),   description  char(255),   tags         char(255),   primary key  (_rowid) );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -