- 博客(27)
- 资源 (11)
- 收藏
- 关注
转载 使用fastreport以代码方式创建报表
fastreport中文网http://www.fastreportcn.com/index.htmlReport report = new Report();// register the "Products" tablereport.RegisterData(dataSet1.Tables["Products"], "Products");// enable i
2014-12-08 12:35:55
1158
转载 EJB的bean类型
于Ejb3的Ejb bean类型介绍,有三种类型:Session bean,Entity Bean和MessageDriven bean(Mbean)
2014-10-13 14:00:42
773
转载 ORACLE客户端字符集
1、字符集的一些基本知识 字符集有很多种,最初的字符集是ASCII,由于ASCII支持的字符很有限,因此随后又出现了很多的编码方案,这些编码方案大部分都是包括了ASCII的。EBCDIC编码是另一个比较基本的编码,它的部分字符采用了和ASCII不同的编码值,因此两者是不兼容的基本编码方案。采用EBCDIC编码的比较少,目前主要是IBM 的系统采用,如AS400及S390系统,大部分的系统
2013-09-04 01:59:44
714
转载 ORACLE _11G_ R2
win64http://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_client.ziphttp://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_database_1of2.ziphttp://download.oracle.com/otn/nt/
2013-07-23 18:48:11
525
转载 C# 特性(Attribute)
1、什么是Atrribute 首先,我们肯定Attribute是一个类,下面是msdn文档对它的描述:公共语言运行时允许你添加类似关键字的描述声明,叫做attributes, 它对程序中的元素进行标注,如类型、字段、方法和属性等。Attributes和Microsoft .NET Framework文件的元数据保存在一起,可以用来向运行时描述你的代码,或者在程序运行的时候影响应用程序的行为
2012-12-15 20:12:27
572
转载 Delphi 与 C/C++ 数据类型对照表
原文出自http://blog.youkuaiyun.com/huang_xw/article/details/7908616
2012-08-27 10:29:52
710
转载 javascript去掉菜单栏、工具栏
var open_flag=window.open("","","width="+(window.screen.availWidth)+",height="+(window.screen.availHeight)+",left=0,top=0,toolbar=no,menubar=no,status=yes,location=no,scrollbars=yes,resizable=yes");
2012-06-25 08:56:49
818
翻译 条件编译
条件编译类型语法 {$IF expression}备注:如果expression是true,将要编译随后的delphi源代码。expression 必须符合delphi语法,返回一个boolean值;expression 可能包含一个已经声明的常量、常量表达式和Defined、Declared函数 例如:{$DEFINE CLX}const LibVersion =
2012-05-28 11:28:28
597
转载 处方常用拉丁词缩写与中文对照表
处方常用拉丁词缩写与中文对照表 [原] 缩写字 拉丁文 中文 aa. Ana 各 a.c. Ante cibos 饭前 a.d. Ante decubitum 睡前 a.h. Alternis horis 每2小时,隔1小时 a.j. Ante jentaculum 早饭前 a.m. Ante meridiem 上午,午前 a.p. Ante parndium 午饭
2012-05-28 09:48:27
3053
转载 对话框
这个简单,模式对话框啊!function showModal(width,height) { window.showModalDialog('http://www.baidu.com','window',"dialogLeft:"+(screen.availWidth-width)/2+";dialogTop:"+(screen.availHeight-height)/2+
2012-05-28 09:46:04
518
原创 eclipse平台ANDROID开发
工具准备:jdk7.0eclipse3.6ADT-18.0.0android sdk 4.0.3=========================jdk 下载地址 http://www.oracle.com/technetwork/java/javase/downloads/index.htmleclipse 下载地址 http://www.eclipse.or
2012-05-21 16:19:33
1139
转载 oracle 新建表空间、用户
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management l
2012-05-07 18:31:55
450
转载 sql更改架构名称
在sql2000版本中exec sp_changeobjectowner '架构名.表名', '新架构名'批量修改exec sp_MSforeachtable 'exec sp_changeobjectowner "?","dbo"'在sql2005以上版本中ALTER SCHEMA [原架构名] TRANSFER 原架构名.表名ALTER SCHEMA [dbo] T
2012-04-16 16:30:00
711
转载 批量导入数据触发器处理
1.不需要关联insert into table(fd,fd1) select (ft,ft2) form inserted2、而我在实际应用中,还存在与storeFile关联的storeFileItem数据表,要用插入storeFile时自动生成的主键FileID,插入storeFileItem中作为外键关联CREATE TRIGGER TriInsertStoreFile ON
2012-04-10 16:22:49
1343
转载 linux——
/etc/profile:此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行.并从/etc/profile.d目录的配置文件中搜集shell的设置./etc/bashrc:为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取.~/.bash_profile:每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时
2011-10-25 16:14:47
414
原创 linux上跑aspx(apache + mono)
环境centos6.0 + apache2.2.21 +mono2.6 + mod_mono2.6.3 + xsp2.6.3apache安装去http://httpd.apache.org/download.cgi下载 apache的 unix版本切换roo用户su root 解压 tar文件tar -zxvf 或者 -jxvfcd进解压后的文件夹./
2011-10-22 15:00:09
3622
原创 sql 数据库日志压缩
执行下列语句DUMP TRANSACTION 数据库 WITH NO_LOGgoBACKUP LOG 数据库 WITH NO_LOGgo再在数据库上 右键 所有任务 收缩数据库 第二种方法1.分离数据库2.删除log文件3.附加数据库的同时创建新的日志文件 select (varchar(10), getdate(),120)select (va
2011-09-26 11:15:47
542
转载 c运算符优先级
PrecedenceOperatorDescriptionExampleAssociativity1()[]->.::++--Grouping operatorArray accessMember access
2011-09-19 17:54:32
425
转载 c、pascal指针类型
一、类型指针的定义。对于指向特定类型的指针,在C中是这样定义的: int *ptr; char *ptr; 与之等价的Object Pascal是如何定义的呢? var ptr :
2011-08-16 18:19:20
1007
原创 删除 repl_distributor
sp_droplinkedsrvlogin 'repl_distributor',null gosp_dropserver 'repl_distributor'
2011-07-20 12:11:25
1367
原创 连接数据库的字符串参数介绍
SQL数据库 "user id=sa":连接数据库的验证用户名为sa.他还有一个别名"uid",所以这句我们还可以写成"uid=sa". "password=":连接数据库的验证密码为空.他的别名为"pwd",所以我们可以写为"pwd=". 这里注意,你的SQL Server必须已经设置了需要用户名和密码来登录,否则不能用这样的方式来登录.如果你的SQL Server设置为Windows登录,那么在这里就不需要使用"user id"和"passwo
2011-05-17 10:39:00
871
原创 cxgrid gridmode 属性
<br />Setting the GridMode property to True enables caching of edit values and display texts. If required edit value and display text are not present in the cache, they are obtained from the lookup dataset and stored in the cache for future use. This con
2011-04-09 18:49:00
1514
原创 VS2008 C调用dll loadlibrary 126错误-找不到模块
<br />(1).看给loadlibrary传的dll路径是否正确<br />(2).dll关联的其他dll文件是否一起发布,可用depends工具查看dll文件关联的其他dll文件<br />(3).传递的dll文件名是char[]类型的,这是类型不兼容的错误,可用修改项目属性-配置属性-字符集,默认是Unicode字符,改为多字节字符
2010-12-13 11:03:00
2294
转载 colorindex
ColorIndex信息interiorfontHTMLbgcolor=Red<GreenBlueColorBlack[Color 1]#000000#000000000[Black]White[Color 2]#FFFFFF#FFFFFF255255255[White]Red[Color 3]#FF0000#FF000025500[Red]Green[Color 4]#00FF00#00FF0002550[Green]Blue[Color 5]#0000FF#0000FF00255[Blue]Yellow
2010-10-29 16:42:00
1265
转载 vs2008发布c编写的dll程序 初始化失败-0xc0150002
用VC2005编译的程序,编译时没有任何错误,但是运行时就是提示“应用程序正常初始化失败”!! 查找了各方面资料,做了各种尝试,网上说什么的都有:有让安装vc2005 sp1补丁的;有让安装vcredist_x86.exe的; 有让把CRT库的dll直接拷贝到程序目录的; 有让清理注册表的;有让装.NetFramework新版本的;有让查manifest的; 结果我尝试了半天,几乎都是浪费时间。上面最后一条说的还算正确,只是作者把事情描述得太繁琐了。。现在把处理的方法说一下,省得大家再走弯路: 1.
2010-10-01 16:39:00
8406
转载 protected override void OnPreRender(EventArgs e)
<br />protected override void OnPreRender(EventArgs e)<br />1) 加入脚本<br /> protected override void OnPreRender(EventArgs e)<br /> {<br /> base.OnPreRender(e);<br /> this.Page.RegisterClientScriptBlock("InsertText", this.R
2010-06-23 16:56:00
1092
DotNET Reactor4.5.破解版
2013-02-21
myeclipse6 整合struts spring hibernate
2011-11-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人