上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 开始菜单-TortoiSVN-Setting,覆盖global ignore pattern:*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store bin obj *.pdb *.user *.cache *.FileListAbsolute.txt Debug Release 阅读全文
posted @ 2011-09-30 08:57 qb371 阅读(277) 评论(0) 推荐(0) 编辑
摘要: Oracle中包相当于命名空间,创建包分两步: 1.创建包头2.创建包体包体和包头创建要分开,而且要再sql window种执行,否则会出现错误:Error: PLS-00103: Encountered the symbol "CREATE"。下面是实例:SQL> create or replace package MyPackage as 2 type MyCursor is ref cursor; 3 procedure SelectBase(pageIndex int,pageSize int,tableName varchar2,whereStr varch 阅读全文
posted @ 2011-09-28 16:37 qb371 阅读(824) 评论(0) 推荐(0) 编辑
摘要: cnBlobs:http://www.cnblogs.com/huyong/CSDN:http://blog.csdn.net/chinahuyong 阅读全文
posted @ 2011-09-28 10:17 qb371 阅读(212) 评论(0) 推荐(0) 编辑
摘要: DevExpress XtraGrid的功能实在强大,刚使用的时候看到一大片属性设置,分不清东南西北,参照demo和使用中的一些经验,记录一下使用方法。现在数据库访问都使用ORM技术了,对于DataSouce绑定以下是以IList为说明对象。控件基本定义 DevExpress.XtraGrid.GridControl gridControl1;1、 数据绑定(IList)DevExpress.XtraGrid.Views.Grid.GridViewgridView1;IList<MyClass>list=newBindingList<MyClass>();//初始lis 阅读全文
posted @ 2011-09-27 18:35 qb371 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 调用Gridcontrol,列编辑器类型采用CheckEdit,选择结果无法保存,无法多选。解决方案:该列绑定的数据类型一定要是布尔型,且要赋初值代码如下: DataTable pPersonTable=m_pPersonLogic.GetPersonInfo(""); DataColumn dtCol=new DataColumn(); dtCol.ColumnName = "bSel"; dtCol.DataType=System.Type.GetType("System.Boolean")... 阅读全文
posted @ 2011-09-26 12:42 qb371 阅读(1386) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页