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

📄 hinventory.table

📁 gxsnmp SNMP MANAGER 的实现
💻 TABLE
字号:
## The HINVENTORY table is used to store information about the physical # inventory of a machine. (Hard Drive size and type, network card etc..)## _rowid       Is a positive integer, unique within this table that is#              used to identify a specific row in the table.# created      Timestamp of when this entry was created.# modified     Timestamp of when this entry was last modified.# item         The _rowid of the item from the hitems table of this item.#              This is where the description, vendor, model # comes from#              This will allow reporting on the # of a given item in use. # host         The _rowid of the host that this item belongs to.# serial       The serial # of this item.# installed    The date this was installed.# removed      The date this item was removed. (NULL == Still installed.)#create TABLE hinventory (   _rowid      int not null,   created     char(20),   modified    char(20),   item        int,   host        int,   serial      char(40),   installed   char(20),   removed     char(20),   primary key (_rowid),   foreign key (item) references hitems,   foreign key (host) references host);

⌨️ 快捷键说明

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