posted @ 2005-11-24 14:52 伯乐共勉 阅读(257) 评论(0) 推荐(0) 编辑
摘要:
SET QUOTED_IDENTIFIER ON GOSET ANSI_NULLS ON GOALTER PROCEDURE DecryptObject (@objectName varchar(50)) -- WITH ENCRYPTION AS begin declare @objectname1 varchar(100) dec... 阅读全文
摘要:
http://www.beyoyo.net/http://www.dwway.com/http://www.dmgroup.org.cn/http://www.dmresearch.net/http://www.mosha.com/msolap/index.htmhttp://www.cnblogs.com/team/DotNetBI.html?page=2http://www.chinabi.n... 阅读全文
posted @ 2005-10-23 16:52 伯乐共勉 阅读(328) 评论(2) 推荐(0) 编辑
摘要:
前台要求:1。员工不能为自己受权:主要包括:“取消”,“退货”,“重打”,“作废”,“折扣”,“前台统计”。2。在打开钱箱时,需要输入当前员工工号和密码,但是其他任何的工号和密码无效(包括主管机的超级用户)。3。统一打印,挂单时打印出挂单小票。 阅读全文
posted @ 2005-08-21 16:18 伯乐共勉 阅读(694) 评论(0) 推荐(0) 编辑
摘要:
--SQLSERVER的自定义类型比较好用吧,但是,一旦引用该数据类型后,想修改数据类型,就是一大头疼的事了,本存储过程就是专门对付它的。--sp_rebuildallview 见如下超链接create procedure sp_rechangfieldtype(@typename varchar(50), @newtype varchar(50))asbegin declare @typeid ... 阅读全文
posted @ 2005-06-01 18:32 伯乐共勉 阅读(434) 评论(0) 推荐(0) 编辑
摘要:
create procedure sp_rebuildallviewasbegin declare @mytext varchar(8000)declare @id intdeclare mycursor cursor for select c.text from dbo.syscomments c, dbo.sysobjects o where o.id = c.id and o.typ... 阅读全文
posted @ 2005-06-01 18:04 伯乐共勉 阅读(851) 评论(0) 推荐(0) 编辑
摘要:
这个该死的问题,困绕了我好几天,终于千试万试,试出来了一种方法。procedure TExplorer.WMMax(var Msg: TWMGetMinMaxInfo); message WM_GETMINMAXINFO;begin //什么都不用写。end;procedure TExplorer_Frm.WmSize(var msg: TWMSIZE);begin if msg.SizeT... 阅读全文
posted @ 2005-05-25 18:29 伯乐共勉 阅读(974) 评论(0) 推荐(0) 编辑
摘要:
POWERDESIGNER 生成 delphi的代码。 是study.rar 中 从delphi 代码生成powerdesigner 模型,是在PDLinkSource.rar中 以后有空就准备整一个完整的,目前还是有不少的BUG。 不多说什么了,源码给大家看一看。 http://www.cnblogs.com/Files/qiubole/PDLinkSource.rar http://w... 阅读全文
posted @ 2005-05-18 09:45 伯乐共勉 阅读(1588) 评论(6) 推荐(0) 编辑
摘要:
create table qiubole(did int) sp_configure 'allow updates', 1 RECONFIGURE WITH OVERRIDE update sysobjects set xtype = 'S',info = 4 where id = object_id('qiubole') sp_configure 'allow updates', ... 阅读全文
posted @ 2005-05-10 14:15 伯乐共勉 阅读(662) 评论(1) 推荐(0) 编辑