Oracle中有sequence的功能,SQL
Server类似的功能使用Identity列实现,但是有很大的局限性。在2012中,微软终于增加了sequence 对象,功能和性能都有了很大的提高。sql
server 2012 序列配置属性1. 查询序列的下一个值select next value...
分类:
数据库 时间:
2014-05-08 19:35:44
阅读次数:
446
首先是行标题列rowheaderdataGridView1.TopLeftHeaderCell.Value =
"details";_______________________________________________________有的时候在datagridview中手动添加列的时候,就算...
declare @id int,@value nvarchar(100);begin declare
c_test_main cursor fast_forward for select hps_hpId,hps_time from
hospitalPermSupp where hps_...
分类:
数据库 时间:
2014-05-08 14:39:27
阅读次数:
498
包括:i.任意进制转化为十进制((num=base#number))
【base和number必须一致,是同一种进制】ii.十进制转化为任意进制`echo "obase=进制;值"|bc` 和`echo "值 进制 o
p"|bc` 【这里的值代表十进制数字】iii.任意进制互转;有了i和ii就可以...
分类:
其他好文 时间:
2014-05-07 16:40:14
阅读次数:
272
开始学习模板元编程了
#include
#include
#include
#include
#include "boost/assign/list_of.hpp"
#include "boost/type_traits/is_const.hpp"
#include "boost/type_traits/is_reference.hpp"
#include "boost/type_tr...
分类:
其他好文 时间:
2014-05-07 16:32:27
阅读次数:
358
23.1 介绍
Spring提供了一个JSM集成框架,简化了JMS API的使用。这点很像Spring对JDBC的集成。
JMS大致提供生产消息和消费消息两类功能。JmsTemplate类用来生产消息和同步接收消息【译注:接收消息也就是消费消息】。为了异步接收消息(异步接收消息类似于JavaEE的消息驱动Bean(Message-Driven Bean,MDB),Spring提供了一组消息监听器容器(messagelistener containers),用来创建多个消息驱动POJO(Message-D...
分类:
编程语言 时间:
2014-05-07 15:39:58
阅读次数:
666
最近项目遇到了问题,有个asp.net web程序只能在IE7 运行,现在xp都淘汰了,大家都用IE8-IE11,因此这个web app也需要升级 适应所有IE版本。照成IE版本不兼容的问题主要来致document.createElement方法的调用,如:
function addStyleNo(value, cannotDel) {
if (!value) {
v...
分类:
编程语言 时间:
2014-05-07 15:14:45
阅读次数:
497
引用是别名而非指针,引用与指针的区别:1、不存在空引用2、所有的引用都要初始化3、一个引用永远指向用来对它初始化的那个对象本文地址:http://www.cnblogs.com/archimedes/p/cpp-reference.html,转载请注明源地址。引用是一个现有对象的别名,用对象来初始化...
分类:
编程语言 时间:
2014-05-07 13:38:31
阅读次数:
318
inline static NSData* encodeBCD(NSString *value){
//NSString *value = @"123456";
NSMutableData *vdata = [[NSMutableData alloc] init];
__uint8_t bytes[1] = {6};
[vdata appendBytes:&bytes length:1...
分类:
移动开发 时间:
2014-05-07 12:28:39
阅读次数:
404
单元IdHashSHA申明function GetFile_SHA1(const
iFileName: String): String; //Checksum hash value for firefox var SHA1 :
TIdHashSHA1; fileStre...
分类:
其他好文 时间:
2014-05-07 10:50:20
阅读次数:
245