码迷,mamicode.com
首页 >  
搜索关键字:color    ( 180498个结果
1-0SBO学习心得(存储过程理论)
一、原理:系统中每张单据在进行新增(A)、删除(D)、修改(U)、关闭(L)、取消(C)时都会触发数据库相应业务数据的更新,更新数据但不立刻commit,更新完数据后会先触发一个名为SBO_SP_TransactionNotification的存储过程,存储过程返回名为@error的参数,取1或者0...
分类:其他好文   时间:2014-07-07 20:23:07    阅读次数:179
自己动手编译apache-tomcat-6.0.41-src源码
第一步:下载apache-tomcat-6.0.41-src第二步:阅读BUILDING.txt。了解所需要的步骤。In order to build a binary distribution version of Apache Tomcat from asource distribution, ...
分类:其他好文   时间:2014-07-07 20:21:08    阅读次数:359
四个好看的CSS样式表格
1. 单像素边框CSS表格这是一个非经常常使用的表格样式。源码: Info Header 1Info Header 2Info Header 3 Text 1AText 1BText 1C Text 2AText 2BText 2C2. 带背景图的CSS样式表格和上面差点儿相同,只是每一个格子里多了...
分类:Web程序   时间:2014-07-07 20:20:31    阅读次数:285
itextSharp 使用模板(PdfTemplate)不规则分栏(ColumnText)
1 public static void Main() 2 { 3 4 Document document = new Document(); 5 BaseFont bf = BaseFont.createFont(Base...
分类:其他好文   时间:2014-07-07 20:18:38    阅读次数:297
1-1SBO学习心得(存储过程应用)
SBO_SP_TransactionNotification这个存储过程主要应用于页面操作(数据库操作)的放行和阻止。当返回0时放行(commit),当返回1时阻止(回滚)。-- ADD YOUR CODE HEREif @object_type='22' and @tran...
分类:其他好文   时间:2014-07-07 20:17:52    阅读次数:195
wkhtmltopdf 生成pdf
1 public class PdfHelper 2 { 3 4 static string RootPath 5 { 6 get 7 { 8 string AppPat...
分类:Web程序   时间:2014-07-07 20:17:08    阅读次数:1049
JavaScript Patterns 5.5 Sandbox Pattern
This post introduces Sandbox pattern to avoid the namespace drawbacks(1. Reliance on a single global variable to be the application’s global. 2. Long,...
分类:数据库   时间:2014-07-07 20:15:42    阅读次数:262
realloc 函数的使用
realloc 函数的使用#include #include #include using namespace std;void setVal(char *tmp,int qs,int num,char mm){ for(int i=qs;i<num-1;i++) { *(tmp+i)=mm; }....
分类:其他好文   时间:2014-07-07 20:13:50    阅读次数:499
【转】数据分析与处理之二(Leveldb 实现原理)
郑重声明:本篇博客是自己学习 Leveldb 实现原理时参考了郎格科技系列博客整理的,原文地址:http://www.samecity.com/blog/Index.asp?SortID=12,只是为了加深印象,本文的配图是自己重新绘制的,大部分内容与原文相似,大家可以浏览原始页面 :-),感兴趣的...
分类:数据库   时间:2014-07-07 20:13:14    阅读次数:379
【POJ】1816 Wild Words
DFS+字典树。题目数据很BT。注意控制DFS深度小于等于len。当'\0'时,还需判断末尾*。另外,当遇到*时,注意讨论情况。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 usin...
分类:其他好文   时间:2014-06-29 18:41:17    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!