XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
10 2023 档案
c# winform 打包(带数据库安装)
该文被密码保护。
posted @ 2023-10-16 09:38 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
SQL Server GUID sort algorithm. Why
该文被密码保护。
posted @ 2023-10-13 12:02 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
复合主键与复合唯一索引
摘要:主键的唯一性和联合主键 主键是唯一的索引,那么为何一个表可以创建多个主键呢? 其实“主键是唯一的索引”这话有点歧义的。举个例子,我们在表中创建了一个ID字段,自动增长,并设为主键,这个是没有问题的,因为“主键是唯一的索引”,ID自动增长保证了唯一性,所以可以。 此时,我们再创建一个字段name,类型 阅读全文
posted @ 2023-10-11 16:57 不及格的程序员-八神 阅读(128) 评论(0) 推荐(0)
解决PowerDesigner 16 Generate Datebase For Sql2005/2008 对象名sysproperties无效的问题
摘要:解决PowerDesigner 16 Generate Datebase For Sql2005/2008 对象名sysproperties无效的问题 在PowerDesigner 16 中生成的sql语句,在执行的时候报错:对象名sysproperties 无效的错误;造成此问题的原因是由于Sql 阅读全文
posted @ 2023-10-11 16:37 不及格的程序员-八神 阅读(110) 评论(0) 推荐(0)
What is 1e-9?
摘要:What is 1e-9? def compare_floats(a, b, epsilon=1e-9): //判断浮点数是否相等, 实际是判断两数相差是否大于那个极微小的数 return abs(a - b) < epsilon result = compare_floats(0.1 + 0.2, 阅读全文
posted @ 2023-10-11 09:58 不及格的程序员-八神 阅读(226) 评论(0) 推荐(0)
PowerDesigner之PDM(物理概念模型)
摘要:PowerDesigner之PDM(物理概念模型) 2022-01-05 09:41 248阅读 0赞 PowerDesigner之PDM(物理概念模型) 转载自:https://blog.csdn.net/qq_27376871/article/details/51321609 一、PDM概述 P 阅读全文
posted @ 2023-10-10 14:56 不及格的程序员-八神 阅读(541) 评论(0) 推荐(0)
Converting Virtual Addresses to Physical Addresses
摘要:Converting Virtual Addresses to Physical Addresses Most debugger commands use virtual addresses, not physical addresses, as their input and output. Ho 阅读全文
posted @ 2023-10-07 11:38 不及格的程序员-八神 阅读(39) 评论(1) 推荐(0)
‘Proof of the pudding’: Global variables and PAGE_EXECUTE_WRITECOPY
摘要:‘Proof of the pudding’: Global variables and PAGE_EXECUTE_WRITECOPY UNCATEGORIZED PRODUCTION DEBUGGING, WINDBG LEAVE A COMMENT Today I was teaching a 阅读全文
posted @ 2023-10-07 11:28 不及格的程序员-八神 阅读(27) 评论(0) 推荐(0)
A curious case: CLR/COM Interop leak
摘要:A curious case: CLR/COM Interop leak UNCATEGORIZED .NET, COM, INTEROP, PRODUCTION DEBUGGING, WINDBG LEAVE A COMMENT Background A customer asked me a q 阅读全文
posted @ 2023-10-07 11:12 不及格的程序员-八神 阅读(121) 评论(0) 推荐(0)
内存分配粒度
摘要:分配粒度和内存页面大小(x86处理器平台的分配粒度是64K,内存页是4K,所以section都是0x1000对齐,硬盘扇区大小是512字节,所以PE文件默认文件对齐是0x200) 分配粒度和内存页面大小x86处理器平台的分配粒度是64K,32位CPU的内存页面大小是4K,64位是8K,保留内存地址空 阅读全文
posted @ 2023-10-03 16:42 不及格的程序员-八神 阅读(201) 评论(0) 推荐(0)
Pushing the Limits of Windows
摘要:Pushing the Limits of Windows: Physical Memory By Mark Russinovich Published Jun 26 2019 11:42 PM 14.7K Views First published on TechNet on Jul 21, 20 阅读全文
posted @ 2023-10-03 07:57 不及格的程序员-八神 阅读(91) 评论(0) 推荐(0)