zoukankan      html  css  js  c++  java
  • 免费域名

    我新申请了一个,www.hotdoor.tk

    mysql> select *from Debug
    DebugId                          DebugParamConfig.PFramDetect     DebugParamConfig.bDebugLogLevel
    DebugParamConfig                 DebugParamConfig.PLightStatus    DebugParamConfig.cameraid
    DebugParamConfig.DebugId         DebugParamConfig.PWirteRaw       
    mysql> select *from Debug
    DebugId                          DebugParamConfig.PFramDetect     DebugParamConfig.bDebugLogLevel
    DebugParamConfig                 DebugParamConfig.PLightStatus    DebugParamConfig.cameraid
    DebugParamConfig.DebugId         DebugParamConfig.PWirteRaw       
    mysql> select *from DebugParamConfig;
    Empty set (0.00 sec)
    mysql> select *from DebugParamConfig;
    Empty set (0.00 sec)
    mysql> select *from SerialConfig;
    +----+--------------+--------+----------+----------+----------+-----------+-------+
    | Id | SerialNumber | IsOpen | BaudRate | DataBits | StopBits | CheckBits | IsRed |
    +----+--------------+--------+----------+----------+----------+-----------+-------+
    |  1 |            1 |      0 |     9600 |        8 |        1 |         0 |     2 | 
    +----+--------------+--------+----------+----------+----------+-----------+-------+
    1 row in set (0.00 sec)
    mysql> update SerialConfig set IsOpen=1;
    Query OK, 1 row affected (0.00 sec)
    Rows matched: 1  Changed: 1  Warnings: 0
    mysql> desc DebugParamConfig;
    +----------------+------------+------+-----+---------+----------------+
    | Field          | Type       | Null | Key | Default | Extra          |
    +----------------+------------+------+-----+---------+----------------+
    | DebugId        | int(10)    | NO   | PRI | NULL    | auto_increment | 
    | cameraid       | int(10)    | YES  |     | NULL    |                | 
    | PLightStatus   | tinyint(3) | YES  |     | 0       |                | 
    | PFramDetect    | tinyint(3) | YES  |     | 1       |                | 
    | PWirteRaw      | tinyint(3) | YES  |     | 0       |                | 
    | bDebugLogLevel | tinyint(3) | YES  |     | 0       |                | 
    +----------------+------------+------+-----+---------+----------------+
    6 rows in set (0.01 sec)
    mysql> insert into DebugParamConfig values(1,2,1,1,1,1);
    Query OK, 1 row affected (0.00 sec)
    mysql> select *from GlobalSwitch;
    ERROR 1146 (42S02): Table 'test.GlobalSwitch' doesn't exist
    mysql> select *from GlobalSwitch 
    GlobalSwitchConfig                 GlobalSwitchConfig.cameraid
    GlobalSwitchConfig.GlobalSwitchId  GlobalSwitchConfig.capdisctrl
    GlobalSwitchConfig.IsRed           GlobalSwitchId
    GlobalSwitchConfig.bVt             
    mysql> select *from GlobalSwitchConfig;
    Empty set (0.00 sec)
    mysql> desc GlobalSwitchConfig;
    +----------------+------------+------+-----+---------+----------------+
    | Field          | Type       | Null | Key | Default | Extra          |
    +----------------+------------+------+-----+---------+----------------+
    | GlobalSwitchId | int(10)    | NO   | PRI | NULL    | auto_increment | 
    | cameraid       | tinyint(3) | NO   |     | 2       |                | 
    | IsRed          | tinyint(3) | NO   |     | 2       |                | 
    | bVt            | tinyint(3) | NO   |     | 1       |                | 
    | capdisctrl     | int(10)    | YES  |     | 100     |                | 
    +----------------+------------+------+-----+---------+----------------+
    5 rows in set (0.00 sec)
    mysql> insert into GlobalSwitchConfig values(1,2,2,1,100);
    Query OK, 1 row affected (0.00 sec)
    mysql> exit;

    Bye 

  • 相关阅读:
    测试心得---杂七杂八
    Redis 集群缓存测试要点--关于 线上 token 失效 BUG 的总结
    linux基础
    如何获取新系统的业务逻辑?
    python笔记9-多线程Threading之阻塞(join)和守护线程(setDaemon)
    python笔记8-多线程threading之封装式
    redis监控key失效
    使用PageHepler分页
    使用token和redis怎样判断账户是否失效和异地登录
    JSONObject
  • 原文地址:https://www.cnblogs.com/xianqingzh/p/2314389.html
Copyright © 2011-2022 走看看