hitems.table
来自「gxsnmp SNMP MANAGER 的实现」· TABLE 代码 · 共 26 行
TABLE
26 行
## The HITEMS table is used to store the defintion of various hardware items.## _rowid is a positive integer, unique to this table that is used to # identify a specific row in the table.# group which 'group' of items this belongs to. (Hard drive, NIC etc..)# created is the date that this entry was created.# modified is the date that this entry was last modified.# name is what this item is called.# description guess.# model is the manufacture model ## vendor is the vendor id for this vendor (vendors table?)# create TABLE hitems ( _rowid int not null, igroup char(10), created char(20), modified char(20), name char(60), description char(127), model char(40), vendor char(20), primary key (_rowid));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?