1.DDL数据定义语言(Data Definiton Language)用于create
和alter Schema。2.DML数据操作语言(Data manipulation
Language)用于操作和获取数据,insertion,update,deletion,,,,.sql书sql tuni...
分类:
数据库 时间:
2014-05-26 12:42:47
阅读次数:
268
Update 当MonoBehaviour启用时,其Update在每一帧被调用。仅调用一次(每帧)
LateUpdate 当Behaviour启用时, 每帧调用一次;FixedUpdate 当MonoBehaviour启用时,其 FixedUpdate
在每一帧被调用。可以多次调用,不能用于帧频很高...
分类:
其他好文 时间:
2014-05-26 12:21:03
阅读次数:
301
Struts1.2
struts-config.xml配置详解【Struts1.2总结系列】struts-config.xml配置struts-config.xml是Struts的主要配置文件,在该文件中,可以配置数据源、form-bean、action和plug-in(插件)和资源文件的信息。其文...
分类:
其他好文 时间:
2014-05-26 11:46:54
阅读次数:
321
1.异常:Cannot delete or update a parent row: a
foreign key constraint
fails 解决方案:将MySQL方言修改为org.hibernate.dialect.MySQLInnoDBDialect问题解决
分类:
其他好文 时间:
2014-05-26 10:29:56
阅读次数:
229
通过Google大神,在国外网站,找到相应的解决办法!还是Google比较权威呀。Go to
Help, "Install New Software..."Click on "Available Sofware
Sites"Searchhttp://download.eclipse.org/rele...
分类:
系统相关 时间:
2014-05-26 09:14:20
阅读次数:
258
public void Update(byte[] buffer){if ( buffer ==
null ) {throw new ArgumentNullException("buffer"); //判断参数为空,抛出异常,而非try
catch捕获}Update(buffer, 0, buf....
分类:
其他好文 时间:
2014-05-26 07:03:27
阅读次数:
268
假定每个单词用空格隔开。
例子:
输入:how are you!
输出:3
两种方法:
一:
#include
#include
#define SIZE 20
int main()
{
char str[SIZE]={'\0'};
int count=0;
printf("please input the string\n");
gets(str);
put...
分类:
编程语言 时间:
2014-05-26 03:44:36
阅读次数:
284
#include
int main()
{
int a;
while(1)
{
printf("please input the number:\n");
scanf("%d",&a);
if(a&1)
{
printf("%d是奇数\n",a);
}
else
{
printf("%d是偶数\n",a);
}
}
return 0;
}这...
分类:
编程语言 时间:
2014-05-26 03:36:15
阅读次数:
367
实例如下:
update users set classes='1' where id in('u001','u002','u003','u004');
update users set classes='2' where id in('u005','u006','u007');
users表的内容如下:
+------+-----------+------------+------+--...
分类:
其他好文 时间:
2014-05-24 20:41:35
阅读次数:
254
随着浏览器的升级,CSS3已经可以投入实际应用了。但是,不同的浏览器有不同的CSS3实现,兼容性是一个大问题。上周的YDN介绍了CSS3
Please网站,该网站总结了一些常用功能的写法。以下就是这些写法的详细介绍。所有代码都经过了Firefox 3.6和IE
8.0的验证,原文的错误之处也已得到改...
分类:
Web程序 时间:
2014-05-24 09:55:29
阅读次数:
311