上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 55 下一页
  2019年8月6日
摘要: 建立事件历史日志表-- 用于查看事件执行时间等信息create table t_event_history ( dbname varchar(128) not null default '', eventname varchar(128) not null default '', starttime 阅读全文
posted @ 2019-08-06 19:24 激流勇进1 阅读(349) 评论(0) 推荐(0) 编辑
摘要: mysql -vvv -u root -p123456 test -e "truncate t_target;alter event ev1 on schedule at current_timestamp enable;alter event ev2 on schedule at current_ 阅读全文
posted @ 2019-08-06 19:24 激流勇进1 阅读(107) 评论(0) 推荐(0) 编辑
摘要: mysql> select * from test.t_event_history;(http://www.amjmh.com)+ + + + + + + + +| dbname | eventname | starttime | endtime | issuccess | duration | e 阅读全文
posted @ 2019-08-06 19:24 激流勇进1 阅读(1525) 评论(0) 推荐(0) 编辑
摘要: mysql> select length(NULL), length(''), length('1');+ + + +| length(NULL) | length('') | length('1') |+ + + +| NULL | 0 | 1 |+ + + +1 row in set123456 阅读全文
posted @ 2019-08-06 19:24 激流勇进1 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 有了以上信息我们就可以写出4条语句处理全部数据。为了调用接口尽量简单,建立下面的存储过程。 delimiter //create procedure sp_unique(i smallint) begin set @a:='1000-01-01 00:00:00'; set @b:=' '; if 阅读全文
posted @ 2019-08-06 19:23 激流勇进1 阅读(199) 评论(0) 推荐(0) 编辑
  2019年8月5日
摘要: var map = new BMap.Map("map"); var point = new BMap.Point(116.404, 39.915); map.centerAndZoom(point, 15); map.enableScrollWheelZoom(); // 开启鼠标滚轮缩放 map 阅读全文
posted @ 2019-08-05 18:23 激流勇进1 阅读(209) 评论(0) 推荐(0) 编辑
摘要: for (var i = 0, j = trackPoint.length; i < j; i++) { var marker = new BMap.Marker(trackPoint[i], { icon: icon, offset: offset }); // 创建标注 map.addOverl 阅读全文
posted @ 2019-08-05 18:22 激流勇进1 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Ellipse() 函数可以用来绘制椭圆,它的原型为: BOOL Ellipse、(http://www.amjmh.com/v/) HDC hdc, //设备环境句柄 int nLeftRect, //左上角x坐标 int nTopRect, //左上角y坐标 int nRightRect, // 阅读全文
posted @ 2019-08-05 18:21 激流勇进1 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 绘制直线需要确定起点和终点。 确定起点使用 MoveToEx 函数。MoveToEx 用来指定画笔的起始位置,也就是从哪里开始画,它的原型为: BOOL MoveToEx( HDC hdc, //设备环境句柄 int x, //起始位置x坐标 int y, //起始位置y坐标 LPPOINT lpP 阅读全文
posted @ 2019-08-05 18:21 激流勇进1 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 如果您觉得上面矩形过于方正,那么可以使用 RoundRect 函数,它可以画出带有圆角边框的矩形,原型为: BOOL RoundRect( HDC hdc, //设备环境句柄 int nLeftRect, //矩形左上角x坐标 int nTopRect, //矩形左上角y坐标 int nRightR 阅读全文
posted @ 2019-08-05 18:21 激流勇进1 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 55 下一页