if not exists(select 1 from syscolumns where name = 'BuyOperator_id' and id = object_id('Scheme'))
alter table Scheme add [BuyOperator_id] int
GO
if not exists(select 1 from syscolumns where name = 'WinOperator_id' and id = object_id('Scheme'))
alter table Scheme add [WinOperator_id] int
GO
if not exists(select 1 from syscolumns where name = 'AcceptOperator_id' and id = object_id('UserDistill'))
alter table UserDistill add [AcceptOperator_id] int
GO
if not exists(select 1 from syscolumns where name = 'PayOperator_id' and id = object_id('UsersDetail'))
alter table UsersDetail add [PayOperator_id] int
GO
if not exists(select 1 from syscolumns where name = 'LotteryBuyRightsList' and id = object_id('Users'))
alter table Users add [LotteryBuyRightsList] varchar(1000) default '[-1]'
GO
if not exists(select 1 from syscolumns where name = 'IsOpen' and id = object_id('Isuse'))
alter table Isuse add [IsOpen] bit default 0
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[P_BuildLotteryNumber_SSQ]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[P_BuildLotteryNumber_SSQ]
GO
declare @VersionNumber varchar(100)
select @VersionNumber = [Value] from [Options] where [Key] = 'DatabaseVersionNumber'
if @VersionNumber < '4.01004'
begin
update Isuse set IsOpen = 0 where ltrim(rtrim(WinLotteryNumber)) = ''
update Isuse set IsOpen = 1 where ltrim(rtrim(WinLotteryNumber)) <> ''
update [Lottery] set Type_id = 8 where [id] = 6
update [Lottery] set IntervalType = '天' where [id] = 26
update [Lottery] set WinLotteryExemple = '01 02 03 04 05 06 + 01 02 03 04' where [id] = 5
update [Users] set LotteryBuyRightsList = '[-1]' where LotteryBuyRightsList is null or LotteryBuyRightsList = ''
update Scheme set BuyOperator_id = 1 where BuyOperator_id is null and LotteryBuyed = 1
update Scheme set WinOperator_id = 1 where WinOperator_id is null and not WinDescription is null
update UserDistill set AcceptOperator_id = 1 where AcceptOperator_id is null
update UsersDetail set PayOperator_id = 1 where PayOperator_id is null
end
GO
declare @VersionNumber varchar(100)
select @VersionNumber = [Value] from [Options] where [Key] = 'DatabaseVersionNumber'
if @VersionNumber < '4.01006'
begin
if not exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[WaitSendEmail]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
CREATE TABLE [dbo].[WaitSendEmail] (
[id] [bigint] IDENTITY (1, 1) NOT NULL ,
[MailTo] [image] NULL ,
[Subject] [image] NULL ,
[Body] [image] NULL ,
[isSended] [bit] NULL default 0
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
end
GO
declare @VersionNumber varchar(100)
select @VersionNumber = [Value] from [Options] where [Key] = 'DatabaseVersionNumber'
if @VersionNumber < '4.01007'
begin
if not exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UsersPayOutDetail_99Bill]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
CREATE TABLE [dbo].[UsersPayOutDetail_99Bill] (
[id] [bigint] IDENTITY (1, 1) NOT NULL ,
[Distill_id] [int] NULL ,
[DealCharge] [money] NULL default 0 ,
[DebitCharge] [money] NULL default 0 ,
[CreditCharge] [money] NULL default 0 ,
[DealID] [varchar] (100) COLLATE Chinese_PRC_CI_AS NULL default '' ,
[ResultFlag] [bit] NULL default 0 ,
[FailureCause] [varchar] (100) COLLATE Chinese_PRC_CI_AS NULL default ''
) ON [PRIMARY]
end
GO
declare @VersionNumber varchar(100)
select @VersionNumber = [Value] from [Options] where [Key] = 'DatabaseVersionNumber'
if @VersionNumber < '4.01007'
begin
CREATE TABLE #TempOptions (
[id] [int] NULL ,
[Key] [varchar] (100) COLLATE Chinese_PRC_CI_AS NULL ,
[ValueImage] [image] NULL ,
[Value] [varchar] (2000) COLLATE Chinese_PRC_CI_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
insert into #TempOptions select * from [dbo].[Options] order by [id]
drop table [dbo].[Options]
CREATE TABLE [dbo].[Options] (
[id] [int] NULL ,
[Key] [varchar] (100) COLLATE Chinese_PRC_CI_AS NULL ,
[ValueImage] [image] NULL ,
[Value] [varchar] (2000) COLLATE Chinese_PRC_CI_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
insert into [dbo].[Options] ([id], [Key], [ValueImage], [Value]) select * from #TempOptions order by [id]
declare @OldOptions_RowCount int
set @OldOptions_RowCount = @@ROWCOUNT
drop table #TempOptions
if @OldOptions_RowCount = 28
begin
insert into [dbo].[Options] ([id], [Key], [Value]) values (29, 'ShowTopAD', 'True')
insert into [dbo].[Options] ([id], [Key], [Value]) values (30, 'TopADImage', 'TopAD.gif')
insert into [dbo].[Options] ([id], [Key], [Value]) values (31, 'ShowSumBuyMoney', 'True')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1001, '*****发送方邮箱参数设置*********************', '**************************')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1002, 'EmailServer_From', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1003, 'EmailServer_EmailServer', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1004, 'EmailServer_User', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1005, 'EmailServer_Password', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1101, '*****短信ISP*********************', '**************************')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1102, 'ISP_HostName', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1103, 'ISP_HostPort', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1104, 'ISP_UserID', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1105, 'ISP_UserPassword', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1106, 'ISP_RegCode', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1107, 'ISP_ServiceNumber', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1201, '*****是否发送邮件选项*********************', '**************************')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1202, 'isRegisterSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1203, 'isRegisterAdvSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1204, 'isForgetPasswordSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1205, 'isUserEditSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1206, 'isUserEditAdvSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1207, 'isBuy_InitiateSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1208, 'isBuy_DSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1209, 'isBuy_JoinSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1210, 'isChaseSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1211, 'isChaseExecSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1212, 'isDistillSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1213, 'isDistillAcceptSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1214, 'isDistillNoAcceptSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1215, 'isQuashSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1216, 'isQuashSchemeSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1217, 'isQuashChaseSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1218, 'isQuashChaseAllSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1219, 'isWinSendEmail', '')
insert into [dbo].[Options] ([id], [Key], [Value]) values (1301, '*****是否发送短信选项*********************', '**************************')
inser
没有合适的资源?快使用搜索试试~ 我知道了~
晓风彩票程序源码 旗舰版彩票销售网站模板
共2000个文件
gif:2108个
cs:260个
jpg:254个
3星 · 超过75%的资源 需积分: 11 44 下载量 133 浏览量
2013-07-31
10:00:45
上传
评论 3
收藏 15.18MB ZIP 举报
温馨提示
晓风彩票程序源码 旗舰版彩票销售网站模板 彩票这一词大家都不陌生,或多或少都接触过了解过一点,本人曾经在逛街的时候,突然心血来潮跑到彩票店买了一张大乐透,想着碰碰运气,说不定就中大奖了,那真是做梦都要笑了。曾经也梦想过要是中了彩票,该怎么怎么花,想想这也是一种生活的期待。现在彩票已成为人民生活中的一种乐趣,也是一种希望。 晓风彩票网站源码预留100多种的API接口,支持各种类型电子票出票规范。其彩票代购合买网站后台管理中心更是拥有强大的彩票业务管理逻辑,管理团队。从彩票玩法规则、彩票时间设置、彩票期号管理到最核心的彩票投注方案、彩票开奖派奖、彩票电子票据出票等都有非常详细的管理栏目,管理方便、快捷。 彩票购买要求很高的信息实时性和时效性,晓风彩票代购合买网站非常注重彩票信息、彩民信息的高速流动和及时传递。晓风彩票网站程序拥有非常自由的信息发布迷失,并支持自由配置信息模板、邮件通道和短信通道,支持一对一、一对多、多对多等彩票信息发布方式;并且能将发布的彩票信息及时归档,保证以后数据的查阅。 在当下互联网盛行的时代,各种网络软件、社交平台被用户所使用。晓风彩票网站程序支持当前最流行的社交玩法,联合登录、微博分享、跟单合买等各种应用,非常注重用户体验这方面的内容。行业之所以选择晓风彩票代购合买网站,就是因为该网站是根据用户体验所建立的网站,只有用户用的顺序、放心、安心,才是网站建设的最高价值。 官方网址介绍:http://www.sls.net.cn/soft/daigou/
资源推荐
资源详情
资源评论
收起资源包目录
晓风彩票程序源码 旗舰版彩票销售网站模板 (2000个子文件)
Global.asax 52B
BuyMenu.ascx 18KB
MemberMenu.ascx 17KB
Header1.ascx 10KB
Header2.ascx 8KB
Header4.ascx 8KB
Header3.ascx 8KB
Footer.ascx 8KB
Login.ascx 6KB
BuyHelp.ascx 3KB
LotteryStation.ascx 3KB
LotteryResult.ascx 3KB
WinNameList.ascx 2KB
WinAffiche.ascx 1KB
Ad.ascx 617B
AD_Top.ascx 380B
AD_Float.ascx 104B
ManageClientService.asmx 108B
TrendChart_SHSSL.aspx 112KB
TrendChart_CQSSC.aspx 110KB
TrendChart_SZPL_5.aspx 104KB
ZCDC_DCBF_2.aspx 90KB
ZCDC_DCBF.aspx 86KB
ZCDC_BQC_2.aspx 81KB
ZCDC_ZJQ_2.aspx 79KB
ZCDC_SPF_2.aspx 79KB
ZCDC_BQC.aspx 78KB
ZCDC_SXDS_2.aspx 78KB
ZCDC_ZJQ.aspx 77KB
ZCDC_SXDS.aspx 75KB
ZCDC_SPF.aspx 75KB
TrendChart_SZPL.aspx 67KB
TrendChart_FC3D.aspx 67KB
CelebAdd.aspx 61KB
CelebEdit.aspx 59KB
LotteryIsuse.aspx 59KB
Join.aspx 59KB
LotteryInfo.aspx 58KB
MemberRegisterAdv.aspx 53KB
LotteryWin.aspx 51KB
NewsFootball.aspx 49KB
About.aspx 44KB
News.aspx 43KB
SchemeChat.aspx 42KB
LotteryIsuseEdit.aspx 38KB
Scheme.aspx 38KB
LotteryIsuseAdd.aspx 36KB
TrendChart_SSQ.aspx 35KB
Chase.aspx 33KB
Initiate.aspx 31KB
LotteryWinNumber.aspx 31KB
MemberAccountCost.aspx 28KB
Celeb.aspx 27KB
TrendChart_QLC.aspx 25KB
Surrogate.aspx 23KB
FJTC36X7_F.aspx 23KB
LotteryWinManual.aspx 23KB
FJTC36X7_D.aspx 23KB
FJTC31X7_F.aspx 22KB
SZPL3_ZhiF.aspx 22KB
FJTC31X7_D.aspx 22KB
FC3D_ZhiF.aspx 22KB
SSQ_F.aspx 22KB
UserDetail.aspx 21KB
Menu.aspx 21KB
SendeMail.aspx 19KB
MemberRegister.aspx 19KB
FJTC22X5_D.aspx 17KB
NewsEdit.aspx 17KB
FJFC20X5_D.aspx 16KB
Help.aspx 16KB
NewsAdd.aspx 16KB
LotteryWinAfficheEdit.aspx 16KB
UserQuestionAnswer.aspx 16KB
FC3D_ZhiB.aspx 16KB
SZPL3_ZhiH.aspx 16KB
RegisterAgreement.aspx 15KB
MemberPromotioner.aspx 15KB
FJTC22X5_F.aspx 15KB
FJFC20X5_F.aspx 15KB
OtherPay.aspx 15KB
OptionOther.aspx 14KB
OnlinePaySet.aspx 13KB
UserManagementRights.aspx 12KB
UserLoginCount.aspx 12KB
Lottery.aspx 12KB
Index.aspx 11KB
MemberInvestHistory.aspx 11KB
TrendChart_QXC.aspx 11KB
MoveDivAttributesForMultiSite.aspx 11KB
MoveDivAttributes.aspx 11KB
MemberEdit1Adv.aspx 11KB
UserList.aspx 11KB
News01.aspx 11KB
MemberChaseDetail.aspx 11KB
LotterySchemeQuery.aspx 11KB
News03.aspx 11KB
About.aspx 11KB
News02.aspx 11KB
News04.aspx 10KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
- alen2014-04-09不好用啊 下载了对我来说没用
- wxjlvoebxl2014-04-10不好用啊 下载了对我来说没用
- Win10下载官网2013-11-15有问题 出错 用不了
- c3392812682015-04-08有点问题呀 好像用不了的
youyaxin
- 粉丝: 0
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功