- 博客(4)
- 收藏
- 关注
原创 sqlserver调用外部存储过程
1> 用vc6的Extend Stored Proc Wizard生成一个工程2> 在里面写好你的存储过程,编译3> 把生成好的dll拷贝至 MSSQL/Binn 目录4> 使用exec sp_addextendedproc xp_example, xp_example.dll 其中xp_example是你调用的存储过程名字,xp_example.dll是dll的名字5> 最
2006-09-26 17:53:00
961
原创 oledb对多结果集的处理
1. 创建一个简单表及存储过程create table sp_table( username varchar(30),age int)create procedure test_sp@username varchar(30),@age int,@out int outputasinsert into sp_table values(@username,@age);select @out =
2006-09-22 19:30:00
892
原创 基于整数的hash算法
struct hash_set_func...{ enum ...{ // parameters for hash table bucket_size = 2, // 0 min_buckets = 8 }; // min_buckets = 2 ^^ N, 0 size_t operator()(const Po
2006-09-21 10:34:00
2763
原创 基于字符串的hash算法
truct hash_map_func...{ enum ...{ // parameters for hash table bucket_size = 2, // 0 min_buckets = 8 }; // min_buckets = 2 ^^ N, 0 size_t operator()(const s
2006-09-21 10:32:00
784
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人