<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> *{ text-align: center; } table{ border-collapse: collapse; m ...
分类:
其他好文 时间:
2017-10-24 16:19:25
阅读次数:
268
1.mysql -u root -p登录数据库 2.use mysql; 3.grant all privileges on *.* to root@"xxx.xxx.xxx.xxx" identified by "密码"; 4.fulsh privileges; 这是已经完成,可以进行查看 sel ...
分类:
数据库 时间:
2017-10-24 13:09:15
阅读次数:
173
以点击事件为例: 覆写方法: 可以从MotionEvent 获取事件坐标,该坐标为相对坐标(即原点为控件左上角) 触发判断,可以利用 这种方式,来区分点击区域。 内部定义自定义回调接口和回调方法,并且提供设置接口: ...
分类:
移动开发 时间:
2017-10-24 11:34:05
阅读次数:
226
使用NIO的一个最大优势就是客户端于服务器自己的不再是阻塞式的,也就意味着服务器无需通过为每个客户端的链接而开启一个线程。而是通过一个叫Selector的轮循器来不断的检测那个Channel有消息处理。当发现有消息要处理时,通过selectedKeys()方法就可以获取所有有消息要处理的Set集合了 ...
分类:
其他好文 时间:
2017-10-24 01:36:45
阅读次数:
205
转载: 原文:http://blog.csdn.net/jcx5083761/article/details/26010763 1. 写法轻松,更新效率高:update table1 set field1=table2.field1,field2=table2.field2from table2wh ...
分类:
数据库 时间:
2017-10-23 20:50:24
阅读次数:
189
首先,准备了一个Model类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XML { pub ...
分类:
其他好文 时间:
2017-10-23 18:24:16
阅读次数:
160
不管是单图片上传还是多图片上传都必须要引用这两个js 下载地址 链接:http://pan.baidu.com/s/1eStkUt0 密码:asvo 多图片上传 HTML模板 js代码 单图片上传 HTML模板 js 代码 ...
分类:
Web程序 时间:
2017-10-23 18:11:35
阅读次数:
294
1.导入数据到索引库 导入的数据中包含了三个表的内容: 1.1 sql语句 SELECT a.id, a.title, a.sell_point, a.price, a.image, b.`name` category_name, c.item_desc FROM tb_item a LEFT JO ...
分类:
其他好文 时间:
2017-10-23 14:16:46
阅读次数:
213
Order by: 升序是asc ,降序是desc 默认是升序排序: 按照name排序: select * from user where age>18 order by name order by 排序默认是升序排序 上述的SQL语句等同于 select * from user where age ...
分类:
数据库 时间:
2017-10-22 23:42:33
阅读次数:
410
前面写了extjs 的安装,今天写一下kbmmw 与extjs 的结合,参照delphi 产品经理marco文章 。 由于extjs 设计时要读取服务器端的数据,所以先要做一个rest 服务器。 先要用kbmmw 建一个web 服务器,可以参照我以前写的例子。 由于要返回数据库,因此加入对应的数据库 ...
分类:
Web程序 时间:
2017-10-22 23:26:58
阅读次数:
260