当我们的虚拟机在非正常关闭后,再次启动机器时,Virtual Box会出现 Runtime error opening 'C:\Users\admin\VirtualBox VMs\Windows Server\Windows Server.vbox for reading: -102 (File....
分类:
其他好文 时间:
2014-09-28 08:56:11
阅读次数:
234
MySQL 加入列,改动列,删除列ALTER TABLE:加入,改动,删除表的列,约束等表的定义。查看列:desc 表名;改动表名:alter table t_book rename to bbb; 加入列:alter table 表名 add column 列名 varchar(30); 删除列:...
分类:
数据库 时间:
2014-09-27 22:18:50
阅读次数:
251
source fromhttp://blog.csdn.net/steedhorse/article/details/333664// Test.cpp #include using namespace std; class Base { public: void f...
分类:
编程语言 时间:
2014-09-27 15:21:49
阅读次数:
207
[Line 1 in XML document from class path resource [xxx.properties] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 1; column...
分类:
编程语言 时间:
2014-09-27 14:32:09
阅读次数:
185
查询数据库中所有表名select table_name from information_schema.tables where table_schema='csdb' and table_type='base table';查询指定数据库中指定表的所有字段名column_nameselect co...
分类:
数据库 时间:
2014-09-27 12:30:39
阅读次数:
174
1、首先在头文件里面声明DECLARE_SERIAL(CSelectionSerial)2、重写CObject的Serialize函数virtual void Serialize(CArchive& ar){ CObject::Serialize(ar); //关键代码 if(ar.Is...
分类:
其他好文 时间:
2014-09-27 12:09:59
阅读次数:
280
Virtual Memory and Memory Mapping Virtual memory was introduced in 1959. The main goal was to significantly simplify programming by abstracting the qu...
分类:
其他好文 时间:
2014-09-27 00:11:58
阅读次数:
314
1 .1 LvsLVS是Linux Virtual Server的简写,意即Linux虚拟服务器,是一个虚拟的服务器集群系统。本项目在1998年5月由章文嵩博士成立,是中国国内最早出现的自由软件项目之一。目前有三种IP负载均衡技术(VS/NAT、VS/TUN和VS/DR)本文主要介绍DR模式运用1 ...
分类:
其他好文 时间:
2014-09-26 21:43:08
阅读次数:
248
最近做一个天信达货运接口的项目,碰到这么个诡异的问题。
背景:
使用proc写的应用,向数据库插入记录。表中有三个VARCHAR2(4000)类型的字段。注:Oracle 9i的库。
问题:
执行的时候提示:ORA-01461: can bind a LONG value only for insert into a LONG column
无法插入记录,但使用PLSQL D...
分类:
其他好文 时间:
2014-09-26 19:49:48
阅读次数:
243
virtual, abstract和override的区别
分类:
其他好文 时间:
2014-09-26 13:24:58
阅读次数:
124