Bind的编译安装大多以tar.gz和tar.bz2打包软件,大多是通过./configure;make;makeinstall来安装的;有的软件是直接make&&makeinstall,我们可以通过./configure——help来查看配置软件的功能;大多软件是提供./configure配置软件的功能的;少数的也没有,如果没有的..
分类:
其他好文 时间:
2014-08-15 02:46:48
阅读次数:
293
-- 10046 event 可以定义 SQL TRACE 级别/*|| 默认的10046级别跟 SQL TRACE 一样, 另外还有一些级别:|| level 1: SQL Tracing|| level 4: Tracing with bind variable values|| level 8...
分类:
其他好文 时间:
2014-08-14 23:13:36
阅读次数:
349
join x == x >>= id看看bind >>= 要求是左边m a右边 a -> m b但是id是 a -> aso.... a = m bso... x = m(m b)m (m b) -> mb那就是。。。join啦
分类:
其他好文 时间:
2014-08-14 13:56:58
阅读次数:
167
一、ie7使用$(obj).attr("onclick","alert(111)")没效果 改成 1) $(obj).bind("click",function(){ ????alert(111); }) 2) $(obj).click(function(){ ????alert(111); }) 二、绑定事件时,直接传ID会导致...
分类:
其他好文 时间:
2014-08-14 11:04:38
阅读次数:
187
Bind方式推荐使用第一种方式,可以在一个里放入多个绑定,而第二种只能如此绑定一个值做超级链接的控件,我们也有多种选择:1 asp:LinkButton 示例 runat="server">2 asp:HyperLink示例 ' Text=''>3 a标签示例 '>a标签:")'>链接js事件:.....
分类:
其他好文 时间:
2014-08-13 21:38:27
阅读次数:
216
import?java.io.File;
import?java.util.ArrayList;
import?java.util.List;
import?javax.xml.bind.JAXB;
import?org.apache.log4j.Logger;
import?org.dom4j.Document;
import?org.dom4j.Element;
im...
分类:
其他好文 时间:
2014-08-13 19:37:37
阅读次数:
225
1、实现多线程方法:其实就是多个线程同时调用io_service::run for (int i = 0; i != m_nThreads; ++i) { boost::shared_ptr pTh(new boost::thread( boost::bind(&...
分类:
编程语言 时间:
2014-08-12 00:34:33
阅读次数:
1592
修改 /etc/mysql/my.cnf 把 bind-address =127.0.0.1 注释掉然后1.设置远程访问将相应用户数据表中的host字段改成'%';use mysqlmysql> select host, user from user;+-----------+------+| ho...
分类:
数据库 时间:
2014-08-11 17:39:12
阅读次数:
442
命题 当service经常被远程调用时,我们经常常使用到aidl来定一个接口供service和client来使用,这个事实上就是使用Binder机制的IPC通信。当client bind service成功之后,系统AM会调用回调函数onServiceConnected将service的IBind....
分类:
其他好文 时间:
2014-08-11 11:31:12
阅读次数:
205
测试环境VMware虚拟机环境,linux平台centos6.5,ip网段172.16.26.1-6安装dns服务器提供dns服务安装bind(named)测试环境centos6.5平台,ip地址172.16.26.3/etc/named.conf==>主要配置文件options{//listen-onport53{127.0.0.1;};监听的端口和地址,只为自己服务,咋行呢?//liste..
分类:
其他好文 时间:
2014-08-11 03:06:03
阅读次数:
857