´ç½Å¿¡°Ô·Î ¶°³ª´Â ²Þ¼Ó¿©Çà - ²Þ¼Ó³ª¶ó(http://www.inyourdream.net) ÀÔ±¹Çϱâ | ¿µÁÖ±Ç ½Åû
  • ¸öºÎ¸² °ñ¶ó°ñ¶ó
  • ¼Ò±Ù¼Ò±Ù
  • µµ¶õµµ¶õ
  • ³«¼­¸¶´ç
  • Âø°¢ÇѾÆÀÌ
  • ¼ýÀÚ¸ÂÃß±â
  • ¼Ò¿øºô±â
  • ÈçÀû³²±â±â
  • ²Þ¼Ó¿©Çà
  • Ä£±¸Áý ³î·¯°¡±â
  • ¸ðµÎµå¸²´ÔÀÇ È¨
  • î¤éÞ´ÔÀÇ È¨
  • Çö¿ì´ÔÀÇ È¨
  • º°¾ÆÇØ´ÔÀÇ È¨
  • ÇÞ»ì´ÔÀÇ È¨
  • À̳ª´Ï´ÔÀÇ È¨
  • À¯¸®¾Ë´ÔÀÇ È¨
  • ³È³ÈÀÌ´ÔÀÇ È¨
  • ²ÀÁö´ÔÀÇ È¨
  • ´ë¼º´ÔÀÇ È¨
  • 俵ÀÌ / 2000-06-01 / ¿ÀÈÄ 4:54:21 / 203.255.3.190
    Á¶È¸¼ö : 116
    [Áú¹®] Àúµµ ÇÁ·Î½ÃÀú´Â Çѹøµµ ¾ÈÇØ ºÃ½À´Ï´Ù.
    > ÀÌ ÆäÀÌÁö´Â °ü¸®ÀÚ ¸ðµå¿¡¼­ db¿¡ µ¥ÀÌÅ͸¦ »ðÀÔÇÏ°í, ÀúÀåÇÁ·Î½ÃÀú¸¦ È£ÃâÇÏ¿©. ½ÇÇà½ÃÅ°´Â ºÎºÐÀÔ´Ï´Ù.
    > ¹®Á¦°¡ µÇ´Â°ÍÀº ÇÁ·Î½ÃÀú¸¦ È£ÃâÇؼ­, ½ÇÇØÇÏ´Â ºÎºÐÀε¥, ´ÙÀ½ °ú°°Àº ¿¡·¯°¡ ³³´Ï´Ù.
    >
    > ADODB.Command error '800a0bb9'
    >
    > ÀÀ¿ë ÇÁ·Î±×·¥ÀÌ À߸øµÈ Çü½ÄÀ̰ųª, ¿Ã¹Ù¸¥ ¹üÀ§ ¹Û¿¡ Àְųª, ¼­·Î Ãæµ¹ÇÏ´Â Àμö¸¦ »ç¿ëÇÏ°í ÀÖ½À´Ï´Ù.
    >
    > Á¦°¡ ÇÁ·Î½ÃÀú È£ÃâÇÏ´Â ¹æ¹ýÀ» À߸ô¶ó¼­ÀÎÁö, ¾ÆÁ÷ Ãʺ¸¶ó¼­¿ä. ºÎµð ¹æ¹ýÀ» ¾Ë·ÁÁÖ¼¼¿ä.
    >
    > -------------¼Ò½ºÄÚµå-----------
    >
    > <%
    > Set db=Server.CreateObject("ADODB.Connection")
    > db.Open("dsn=xx;Uid=xx;pwd=xx")
    >
    > team_game_num = request("game_num")
    > team_num = request("team_num")
    >
    > sql = "insert into TEAM_RESULT (team_game_num,team_num) values (''"&team_game_num&"'',''"&team_num&"'')"
    >
    > db.Execute sql
    > %>
    > <%
    >
    > Set ObjCmd=Server.CreateObject("ADODB.Command")
    >
    > Set ObjCmd.ActiveConnection=db
    >
    > Set rs=Server.CreateObject("ADODB.Recordset")
    >
    > ObjCmd.CommandText="returnpoint"
    > ObjCmd.Commandtype=adCmdStoredProc
    >
    > objcmd.excute
    > Set rs=objcmd.execute
    > rs.Open objcmd
    > %>
    >
    >
    > ---------dbÀÇ ÀÌ ºÎºÐÀº ÇÁ·Î½ÃÀú ±¸¹®------
    > create proc returnpoint
    > as
    > declare bet cursor
    > for
    > select r.team_bet_num, r.mem_id, r.pre_point
    > from team_result tr, ratio r
    > where tr.team_game_num = r.team_game_num and tr.team_num = r.team_num
    >
    > open bet
    >
    > declare @team_bet_num int,
    > @mem_id varchar(8),
    > @point int
    >
    > fetch next from bet into @team_bet_num,@mem_id,@point
    >
    > while(@@fetch_status = 0)
    > begin
    > update member
    > set reminder = reminder + @point
    > where mem_id = @mem_id
    >
    > insert account_log values (@point, '°ÔÀӽ¸® (#$000'+convert(varchar(10),@team_bet_num)+')'
    > , getdate(), @mem_id)
    > fetch next from bet into @team_bet_num,@mem_id, @point
    > end
    >
    > close bet
    > deallocate bet
    > truncate table team_result
    >
    >
    -----------------------------------------------------------

    Àúµµ ÇÁ·Î½ÃÀú´Â Çѹøµµ ÇØ º»ÀûÀÌ ¾ø¾î¼­...

    Àß ¸ð¸£°Ú³×¿ä.....
    Byte * 200 Byte À̳»·Î ÀÔ·ÂÇϼ¼¿ä À̸§ : Æнº¿öµå :