全部文章-月排行
一般有两种方法,以表plan_data_manage_product的gc_routing字段为例,判断gc_routing ?是否含有“B1” 1. 最常想到的 like方法: select * from plan_data_manage_product t where?t.gc_routing like ‘%B1%‘;...
分类:数据库技术 时间:2015-02-27 13:44:44 收藏:0 阅读:2182
命令:su - postgresCREATE USER foo WITH PASSWORD 'secret';====================1、2个配置修改postgresql.conf:修改listen_addresses = '*'pg_hba.conf:增加# IPv4 local ...
分类:数据库技术 时间:2015-03-09 22:17:02 收藏:0 阅读:2987
方案一:stringexcept_chars=":‘ ! @ # % … & * ( ^ & ¥ , 。 , .)$";stringsrc="就是包含:这些‘字符包含空格)都要$去掉么?";stringresult=Regex.Replace(src,"["+Regex.Escape(except_...
分类:Windows开发 时间:2015-03-27 19:04:45 收藏:0 阅读:1254
今天看书,Thinking in c++ volume 2 "Adaptable function objects"里面作者说:Suppose, for example, that we want to make the function object gt_n, definedearlier in...
分类:其他 时间:2015-04-18 15:59:12 收藏:0 阅读:5165
记得前阵子编译so库直接使用ndk-build搞定,今天使用却报错如下:$ ndk-build Android NDK: Could not find application project directory ! Android NDK: Please define the NDK_PROJECT_PATH variable to point to it. /opt/android...
分类:移动平台 时间:2015-05-25 18:46:57 收藏:0 阅读:5347
终所周知,hive有两个日志:  1.一个日志为hive.log.是系统的运行目录.位于conf/log4j.properties下.  2.另一个日志 为Job的log.在conf/hive-site.xml中的下面properties中设置:   hive.querylog.location   /tmp/hive-log/${user.name}   Locatio...
分类:其他 时间:2015-05-27 17:26:50 收藏:0 阅读:888
bootstrap table是一个非常不错的,基于bootstrap的插件,它扩展和丰富了bootstrap表格的操作,如格式化表格,表格选择器,表格工具栏,分页等等。最近基于bootstrap开发一个开台发布系统,就开发过程中,使用bootstap table遇到的一些问题及收获记录如下:开始使...
分类:其他 时间:2015-06-18 19:17:28 收藏:0 阅读:58854
程序运行完毕,窗口也跟着关闭。也就是说还没来得及看结果,程序窗口就关闭了。试着改改代码,在最后加上以下这行代码:raw_input("Press ")这样,在运行程序之后,将会出现以下内容的DOS窗口。What is your name? GumbyHello, Gumby!Press
分类:编程语言 时间:2015-08-08 13:29:54 收藏:0 阅读:2866
LINUX下如何查看tomcat运行状态,判断其是否启动
分类:系统服务 时间:2015-09-10 13:11:13 收藏:0 阅读:5497
未能加载文件或程序集“Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)...
分类:Web开发 时间:2015-09-22 12:51:07 收藏:0 阅读:6269
http://www.ibm.com/developerworks/cn/data/library/techarticle/dm-1107yangy/一般用户经常会被统计分析软件中的复杂的参数设置而头疼,即使知道了选择合适的模型,也不知道该如何调整参数来进行使用,针对于此,IBM SPSS Stat...
分类:其他 时间:2015-10-23 10:12:15 收藏:0 阅读:10396
-------------------------------------------------- 1 #include "subdialog.h" 2 3 SubDialog::SubDialog(QWidget *parent) 4 : QDialog(parent) 5 { 6 _pUi ....
分类:其他 时间:2015-11-21 00:42:00 收藏:0 阅读:2036
for 32bitln -sf /usr/lib/libssl.so.10 /usr/lib/libssl.so.6ln -sf /usr/lib/libcrypto.so.10 /usr/lib/libcrypto.so.6for 64bitln -sf /usr/lib64/libssl.so....
分类:数据库技术 时间:2015-12-21 19:47:50 收藏:0 阅读:1124
<div class="controls"> <input type="checkbox" name="isFirstLateFee" id="isFirstLateFee" value="2" style="width:140px" /> </div> $("#isFirstLateFee").p
分类:其他 时间:2016-02-22 15:31:14 收藏:0 阅读:982
2016-04-08 09:15:05,581 [8] ERROR System.Threading.Thread - ErrorSystem.ServiceModel.EndpointNotFoundException: 没有终结点在侦听可以接受消息的 http://192.168.1.63:80 ...
分类:Web开发 时间:2016-04-08 10:10:13 收藏:0 阅读:2155
1.页面: 2.html代码: 3.js代码: 4.实现效果: 并且每次只能选中一个。 ...
分类:Web开发 时间:2016-06-06 16:16:23 收藏:0 阅读:6173
RDO模式安装报错ERROR:ErrorappearedduringPuppetrun:192.168.1.201_mariadb.pp Error:Executionof‘/usr/bin/yum-d0-e0-yinstallmariadb‘returned1:Error:Package:1:mariadb-5.5.44-2.el7.centos.x86_64(dvd) Youwillfindfulltraceinlog/var/tmp/packstack/20160704-142958-_jX..
分类:移动平台 时间:2016-07-04 15:44:32 收藏:0 阅读:3172
在 Visual Studio 2013 下编写 FFmpeg 程序时出错,错误如下: 出错代码如下: 解决方法为:将 avcodec_alloc_frame() 替换为 av_frame_alloc()。 转自:http://www.itechzero.com/ffmpeg-error-c4996 ...
分类:其他 时间:2016-07-20 13:30:27 收藏:0 阅读:4576
报错:Getvaluefromagentfailed:ZBX_TCP_READ()failed:[104]Connectionresetbypeer解决方法:在windows上安装agent前,需要检查zabbix_agentd.conf中的配置,尤其是server地址,默认server地址为127.0.0.1,把这个地址修改为你的server的地址;配置windows防火墙,运行入站访问..
分类:Windows开发 时间:2016-11-15 20:53:56 收藏:0 阅读:6259
一、web font web font是应用在web中的一种字体技术,在CSS中使用font-face定义新的字体。先了解操作系统中的字体: a)、安装好操作系统后,会默认安装一些字体,这些字体文件描述了每一个文字的形态,一般中文文件大,英文文件小,因为中文字符数多;在控制面板中可以找到文字文件夹, ...
分类:Web开发 时间:2016-12-05 09:37:57 收藏:0 阅读:502
1204205206207208161997
上一页3239936下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!