1、错误描述
org.hibernate.exception.DataException: could not execute statement
at org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:69)
at org.hibernate.exc...
分类:
数据库 时间:
2015-04-13 00:26:08
阅读次数:
412
internal class Program { private static void Main(string[] args) { var ret = 2 &1; // B.Print(); new ...
分类:
其他好文 时间:
2015-04-13 00:23:43
阅读次数:
162
Storm并发配置的优先级: defaults.yaml < storm.yaml < topology-specific configuration < internal component-specific configuration < external component-specific ...
分类:
其他好文 时间:
2015-04-12 14:32:31
阅读次数:
137
1. SDK Manger: 下载的内容2.创建模拟器(AVD): Target:模拟器版本号,一般用2.3.3, Memory Option:模拟器内存 Internal Storage:手机内存3.--------------------------------------------...
分类:
移动开发 时间:
2015-04-12 01:19:54
阅读次数:
155
Using console object: console.log('xxx');Using Node.js internal debugger (v8 engine): node debug xxx.js
refer to: https://nodejs.org/api/debugger.html#debugger_debugger
Using node-inspector:...
分类:
Web程序 时间:
2015-04-11 19:33:03
阅读次数:
315
前提:今天要做网站迁移,把A服务器上的网站迁移到B服务器上,A服务器当时的环境是.NET 4.0 ,而B服务器是.NET2.0,A服务器IIS为6.0,B服务器IIS版本为7.0第一步,先在B服务器上安装.NET4.0框架。第二步,备份A服务器的数据库并还原至B服务器。第三步,在默认文档里添加 in...
分类:
Web程序 时间:
2015-04-11 14:37:22
阅读次数:
141
【转】.net 经典面试题1.简述private、protected、public、internal修饰符的访问权限。答.private:私有成员,在类的内部才可以访问。protected:保护成员,该类内部和继承类中可以访问。public:公共成员,完全公开,没有访问限制。internal:在同一...
分类:
Web程序 时间:
2015-04-11 01:18:20
阅读次数:
185
1、作用域修饰符修饰符: public:公共访问,即所属类的成员和非所属类的成员都可以访问 private:私有访问,只有所属类的成员才可以访问 internal:内部访问,只有当前程序集可以访问 protected:保护访问,所属子类和父类的类型可以访问2、静态变量static 静态变量...
OOP:封装、继承、多态。Pubilc :完全公开。Internal:包内类成员可以互相访问。Private:仅当前类可以访问。Protected:当前类和当前类的子类可以访问。被关键词final定义过的实例不能被重写。复合和继承,当是从属关系的时候用继承,当其是构成的一部分就用复合。所有的对象都有...
分类:
其他好文 时间:
2015-04-10 11:12:51
阅读次数:
122
12.事件事件的发生就是与事件相对应的委托的调用,也就是事件对应的委托的调用列表中全部的函数指针。要注意的一点是MyEvent前面不要加public修饰符,因为事件与委托之间要保持访问权限一致。类默认访问权限是internal。