#region ---- 数据绑定 -----
private void bd(int pageindex)
{
int rowcount = 0;
int pagesize = 0;
int pagecount = 0;
decimal cyfzhj = 0;
string Slqstring = ...
分类:
其他好文 时间:
2014-06-20 11:38:07
阅读次数:
211
float:浮点型,含字节数为4,32bit,数值范围为-3.4E38~3.4E38(7个有效位)double:双精度实型,含字节数为8,64bit数值范围-1.7E308~1.7E308(15个有效位)decimal:数字型,128bit,不存在精度损失,常用于银行帐目计算。(28个有效位)flo...
分类:
其他好文 时间:
2014-06-10 16:35:40
阅读次数:
201
-- 建表CREATE TABLE sale_report ( sale_date DATE NOT
NULL , sale_item VARCHAR(2) NOT NULL , sale_money DECIMAL(10,2) NOT NULL,
PRIMARY KEY(sale_date, sa...
分类:
数据库 时间:
2014-06-07 23:29:17
阅读次数:
502
package com.my.login;import java.io.File;import
java.io.FileInputStream;import java.io.IOException;import
java.io.InputStream;import java.text.Decimal...
分类:
编程语言 时间:
2014-05-31 06:06:10
阅读次数:
295
SQL Server 数据类型映射.NET Framework 4.5SQL Server 和
.NET Framework 基于不同的类型系统。例如,.NET FrameworkDecimal结构的最大小数位数为 28,而 SQL Server 的
decimal 和 numeric 数据类型的最...
分类:
数据库 时间:
2014-05-31 04:19:47
阅读次数:
388
数据库中存储的信息主要有:数字、时间、文字、图片、唯一标示等。针对数字有:bit,tinyint,smallint,int,long,decimal,float。长度从一个位逐个字节(8位)的增加。时间:date,datetime.文字:char,varchar,nvarchar.唯一标示有:tim...
分类:
数据库 时间:
2014-05-26 09:12:53
阅读次数:
218
A bit is a binary digit, taking a logical value of either 1 or 0 (also referred to as "true" or "false" respectively). And every decimal number has a binary representation which is actually a series o...
分类:
其他好文 时间:
2014-05-24 17:19:41
阅读次数:
335
以下Function可以用于textbox的KeyUp事件:var numberChars =
"1234567890";function isDecimal(item) { var obj = $(item); if (obj.length >
0) { if ($(ob...
分类:
其他好文 时间:
2014-05-24 05:30:56
阅读次数:
204
Jimmy writes down the decimal representations of all natural numbers between and including m and n, (m ≤ n). How many zeroes will he write down?
Input
Input starts with an integer T (≤ 11000), denot...
分类:
其他好文 时间:
2014-05-22 22:59:18
阅读次数:
354
public string ConvertMoney(decimal Money)
{
//金额转换程序
string MoneyNum = "";//记录小写金额字符串[输入参数]
string MoneyStr = "";//记录大写金额字符串[输出参数]
string BNumSt...
分类:
其他好文 时间:
2014-05-21 16:26:16
阅读次数:
171