一、表
学生表
CREATE TABLE `t_student` (
`stuNum` int(11) NOT NULL auto_increment,
`stuName` varchar(20) default NULL,
`birthday` date default NULL,
PRIMARY KEY (`stuNum`)
) ENGINE=In...
分类:
数据库 时间:
2014-06-11 00:22:53
阅读次数:
249
Mysql
Date
Datetime
Timestamp
0000-00-00 00:00:00...
分类:
数据库 时间:
2014-06-10 14:17:00
阅读次数:
233
if ((!WriteFile(
m_hDevEx,
pBuf,
size,
&WriteBytes,
&Overlapped)) &&
(GetLastError() != ERROR_IO_PENDING))
{
OutputDebugString("Writ...
分类:
其他好文 时间:
2014-06-10 13:47:45
阅读次数:
149
问题: cannot find -lnlcollect2: error: ld returned 1 exit statusmake: *** [wpa_supplicant] 错误 1解决方法:[fulinux@ubuntu wpa_supplicant]$ sudo apt-get install libnl-dev libssl-dev...
分类:
其他好文 时间:
2014-06-10 13:35:36
阅读次数:
262
find . -name "*.lastUpdated" -exec rm -rf {}
\;这个命令是find的基本用法,可以分两部分,find ~/ -name "*.aic"和 -exec rm -rf {} \; ~/:在根目录下查找
-name 查找文件名的方式 "*.aic"文件名中要求...
分类:
系统相关 时间:
2014-06-10 12:47:20
阅读次数:
245
我们将ASP.NET程序从IIS6移植到IIS7,可能运行提示以下错误: HTTP 错误 500.23
- Internal Server Error 检测到在集成的托管管道模式下不适用的 ASP.NET 设置。 为什么会出现以上错误?
在IIS7的应用程序池有两种模式,一种是“集成模式”,...
分类:
Web程序 时间:
2014-06-10 12:44:06
阅读次数:
309
windows 2008下IIS7 安装ASP.NET 遇到如下错误: HTTP 错误 500.19
- Internal Server Error无法访问请求的页面,因为该页的相关配置数据无效。详细错误信息模块 IIS Web Core 通知
BeginRequest 处理程序 尚未确定错误代码 ...
分类:
其他好文 时间:
2014-06-10 12:18:21
阅读次数:
171
最近我的VS2010不知道怎么回事,平时用的好好的,近期竟然出现了所谓的
LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
头痛万分,查了各种资料一直无解,今天为了封装资源,嵌入清单,所以不惜血本仔细找了下,终于有解决方案了。
平时我们都是将 项目-->项目属性-->配置属性-->连接器-->清单文件-->嵌入清单 中的“是”改...
分类:
其他好文 时间:
2014-06-10 10:47:24
阅读次数:
184
1、错误描述
六月 09, 2014 11:11:09 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression a is undefined on line 27, column 23 in tag.ftl."
Expression a is undefi...
分类:
其他好文 时间:
2014-06-10 07:33:34
阅读次数:
293
1:创建一个web项目或者java项目
2:找到hibernate包lib目录下面的required下面的包把包放到lib目录下面,在导入buidler path里面
3:写java类,我写的java bean类,代码如下:
package org.hibernate.domain;
import java.util.Date;
public class Event {
privat...
分类:
系统相关 时间:
2014-06-10 06:45:05
阅读次数:
343