USE [ChangHong_612]GO/****** Object: StoredProcedure [dbo].[st_MES_GetCodeRule] Script Date: 09/10/2015 17:44:29 ******/SET ANSI_NULLS ONGOSET QUO...
分类:
数据库 时间:
2015-09-10 19:10:10
阅读次数:
212
#!/bin/sh# mysql data backup script## use mysqldump --help,get more detail.#BakDir=/root/back/mysqlLogFile=/root/back/mysql/mysqlbak.logDATE=`date +%Y...
分类:
数据库 时间:
2015-09-10 19:03:27
阅读次数:
174
Warensoft Unity3d Communication Libthis is a high performance communication library for Unity3d,including some easy-to-use httpclasses,andsocket classes. And especially,it brings a totally new method ...
分类:
编程语言 时间:
2015-09-10 17:29:23
阅读次数:
304
配置.htaccess如下:RewriteEngine onRewriteBase /RewriteCond $1 !^(index\.php|images|robots\.txt|css|js); RewriteRule ^(.*)$ /sis/index.php/$1 [L]Apache(err...
分类:
数据库 时间:
2015-09-10 15:37:46
阅读次数:
4489
例如我的数据库名为“example”,使用 USE example; 确定使用example数据库。使用 show tables; 显示数据库中的所有表。使用 DESC persons; 显示表persons中的列名。或者使用 DESCRIBE persons; 或者使用 SHOW columns ...
分类:
数据库 时间:
2015-09-10 12:32:16
阅读次数:
335
NOTE : 1.好的接口容易被正确使用,不容易被误用。应该让所有接口努力达成这些性质。 2.“促进正确使用”的办法包括接口的一致性,以及内置类型的行为兼容。 3.“阻止误用”的办法包括建立新类型/限制类型上的操作,束缚对象值,以及消除客户的资源管理责任。 4.tr1::s...
分类:
其他好文 时间:
2015-09-10 00:31:25
阅读次数:
153
端口扫描 targetportyou can use sequence as well 80,81,8080timeoutresult
分类:
编程语言 时间:
2015-09-10 00:27:34
阅读次数:
200
代码: #include <memory> #include <iostream> int main(int argc, char*argv[]){ ? ? std::shared_ptr<int> a(new int(1)); ? ? std::weak_ptr<int>d(a); ? ? std::cout<<"d.use_count() = "<<d.use_cou...
分类:
其他好文 时间:
2015-09-09 19:53:59
阅读次数:
211
享元模式(Flyweight),运用共享技术有效地支持大量细粒度的对象。 缺点:使得系统更加复杂;使得程序逻辑复杂化。Demo: abstract class Website { public abstract void Use(User user); } c...
分类:
其他好文 时间:
2015-09-09 17:35:37
阅读次数:
137
mysql 8小时问题的解决方法转发: 别看是英文 ,写的很好 ,才转Use Hibernate + MYSQL database development, link timeout problem:com.mysql.jdbc.CommunicationsException: The last p...
分类:
其他好文 时间:
2015-09-09 16:33:39
阅读次数:
269