Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - UPDATE SQL
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

UPDATE SQL

 Post Reply Post Reply
Author
Gullanian View Drop Down
Senior Member
Senior Member
Avatar

Joined: 04 January 2002
Location: England
Status: Offline
Points: 4373
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gullanian Quote  Post ReplyReply Direct Link To This Post Topic: UPDATE SQL
    Posted: 08 September 2003 at 2:51pm
Hi guys, im doing a simple counter which updates 1 every page view, works fine on my PWS, when I upload to gearhost it makes the counter go up by 2 each time!  Anyone know why?
Back to Top
michael View Drop Down
Senior Member
Senior Member
Avatar

Joined: 08 April 2002
Location: United States
Status: Offline
Points: 4670
Post Options Post Options   Thanks (0) Thanks(0)   Quote michael Quote  Post ReplyReply Direct Link To This Post Posted: 08 September 2003 at 3:19pm
No.
Back to Top
michael View Drop Down
Senior Member
Senior Member
Avatar

Joined: 08 April 2002
Location: United States
Status: Offline
Points: 4670
Post Options Post Options   Thanks (0) Thanks(0)   Quote michael Quote  Post ReplyReply Direct Link To This Post Posted: 08 September 2003 at 3:20pm
Oh but maybe someone know if you post some code....
Back to Top
Gullanian View Drop Down
Senior Member
Senior Member
Avatar

Joined: 04 January 2002
Location: England
Status: Offline
Points: 4373
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gullanian Quote  Post ReplyReply Direct Link To This Post Posted: 08 September 2003 at 4:57pm

Dim statCurrYear

Dim statCurrMonth

Dim statCurrDay

Dim statCurrHour

Dim intCoolInt 'S

Dim intCoolInt2 'pv

statCurrYear = year(now())

statCurrMonth = month(now())

statCurrDay = day(now())

statCurrHour = hour(now())

'Do statistics

strSQL = "SELECT * from tblStats WHERE statYear = " & statCurrYear & " AND statMonth = " & statCurrMonth & " AND statDay = " & statCurrDay & " AND statHour = " & statCurrHour

rsCommon.open strSQL, adoCon

'Create if none exist

If rsCommon.eof or rsCommon.bof then

rsCommon.close

strSQL = "INSERT INTO tblStats (statYear,statMonth,StatDay,StatHour,sessions,pageViews) VALUES (" & statCurrYear & "," & statCurrMonth & "," & statCurrDay & "," & statCurrHour & ",0,0)"

rsCommon.open strSQL, adoCon

else

intCoolInt = rsCommon("sessions")

intCoolInt2 = rScommon("pageViews")

intCoolInt = intCoolInt+1

intCoolInt2 = intCoolInt2+1

rsCommon.close

end if

strSQL = "UPDATE tblStats SET pageViews = " & intCoolInt2

If isEmpty(Session("blnCounterSet")) = True Then

strSQL = strSQL + (", sessions = " & intCoolInt)

end if

strSQL = strSQL + (" WHERE statYear = " & statCurrYear & " AND statMonth = " & statCurrMonth & " AND statDay = " & statCurrDay & " AND statHour = " & statCurrHour)

rsCommon.open strSQL, adoCon

'Total session count

If isEmpty(Session("blnCounterSet")) = True Then

strSQL = "UPDATE tblConfiguration SET sessions = " & lngSessions + 1

rscommon.open strSQL, adoCon

Session("blnCounterSet") = True

End if

strSQL = "UPDATE tblConfiguration SET pageviews = " & lngPageViews + 1

rscommon.open strSQL, adoCon

%>

messy code coz i kept fiddling with other methods to try and get it to work!

Back to Top
Gullanian View Drop Down
Senior Member
Senior Member
Avatar

Joined: 04 January 2002
Location: England
Status: Offline
Points: 4373
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gullanian Quote  Post ReplyReply Direct Link To This Post Posted: 08 September 2003 at 6:10pm

this is where it all happens:

http://www.drum-world.com/stats.asp

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.