上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
  2011年4月12日
摘要: 在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与合计函数一起使用查一张表中某个字段中的数据相同的记录:select 字段值,count(*) from table group by 字段值 having count(*)> 1alter table 表名 add constraint cpncode_unique unique (字段) 阅读全文
posted @ 2011-04-12 14:27 jameshappy 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1、Math.Round(a,2)2、a.ToString( "0.00 ");3、Decimal dec=0.225; Decimal.format(dec,2) 阅读全文
posted @ 2011-04-12 14:13 jameshappy 阅读(1416) 评论(0) 推荐(0) 编辑
摘要: 一直很奇怪C#的预定义数据类型中为什么加了一个decimal,有float和double不就够了吗?今天来挖一挖。浮点型 Name CTS Type Description Significant Figures Range (approximate) float System.Single 32-bit single-precision floating point 7 ±1.5 × 10?45 to ±3.4 × 1038 double System.Double 64-bit double-precision floating point 15/1 阅读全文
posted @ 2011-04-12 14:08 jameshappy 阅读(708) 评论(0) 推荐(0) 编辑
  2011年3月30日
摘要: public const string CONN_STRING = "user id=用户名;data source=数据源;password=密码"; private static void PrepareCommand(OracleCommand cmd, OracleConnection conn, OracleTransaction trans, CommandType cmdType, string cmdText, OracleParameter[] cmdParms) { if (conn.State != ConnectionState.Open) conn 阅读全文
posted @ 2011-03-30 12:52 jameshappy 阅读(336) 评论(0) 推荐(0) 编辑
  2010年8月20日
摘要: cs中:hickb.Attributes["onchange"] = "javascript:GetSnToHidden(this.id);" ;function GetSnToHidden(textid) {var checkbox=document.getElementById(textid); var hdsn=document.getElementById('txtgooodssn'); ... 阅读全文
posted @ 2010-08-20 15:47 jameshappy 阅读(299) 评论(0) 推荐(0) 编辑
  2009年9月14日
摘要: TextBox只收录数字:0~9非常简单,加一个属性事件:<asp:textbox class="Text" onkeypress="if (event.keyCode < 48 || event.keyCode >57) event.returnValue = false;"id="txtY_Revenue" style="TEXT-ALIGN: right" runat="server" Width="90%" MaxLength="12&qu 阅读全文
posted @ 2009-09-14 18:05 jameshappy 阅读(394) 评论(0) 推荐(0) 编辑
  2009年7月30日
摘要: public static bool IsNum(String str){for(int i=0;i<str.Length;i++){if(str[i]<'0' || str[i]>'9')return false;}return true;} 阅读全文
posted @ 2009-07-30 11:39 jameshappy 阅读(251) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.Web.UI.WebControls;private void CreateTree(){try{TableRow tr = new TableRow() ;TableCell tc = new TableCell() ;System.Web.UI.HtmlControls.HtmlGenericControl div = new HtmlGenericContro... 阅读全文
posted @ 2009-07-30 10:33 jameshappy 阅读(487) 评论(0) 推荐(0) 编辑
摘要: create or replace package body PK_DataTransfer is-- 积分卡合并 2009-7-14 procedure p_MemberMergence(s_SMemberID in nvarchar2,s_TMemberID in nvarchar2,n_Usersn in number) is begin update plus.tsell s set s... 阅读全文
posted @ 2009-07-30 10:22 jameshappy 阅读(912) 评论(0) 推荐(0) 编辑
  2009年4月17日
摘要: -- Create table TMotifPromotioncreate table TMotifPromotion( MotifPromotionSN NUMBER(16) not null, MotifPromotionCode nvarchar2(10), MotifPromotionName nvarchar2(50), StartDate ... 阅读全文
posted @ 2009-04-17 16:45 jameshappy 阅读(580) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页