vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Help with DB query for postbit. (https://vborg.vbsupport.ru/showthread.php?t=153709)

tinycg 07-29-2007 10:41 AM

Help with DB query for postbit.
 
I'm attempting to add my members Xbox Live Gamerscore as pulled by the gXboxlive mod which stores the gamerscore in the gboxlive.score table with the userid the same as user.userid.

So this was my thinking:
PHP Code:

$gmscore $db->query("SELECT " TABLE_PREFIX "gxboxlive.*, " TABLE_PREFIX "gxboxlive.score AS score, FROM " TABLE_PREFIX "gxboxlive WHERE " TABLE_PREFIX "gxboxlive.userid = " $vbulletin->userinfo['userid'] . " LIMIT 1");
$player $db->fetch_array ($gmscore); 

I realize now that by looking at some other things that
PHP Code:

$vbulletin->userinfo['userid'

Is bringing up the logged in user and not the post's userid, so that's part of the problem, does anyone know the right way I should be querying this in vB?

I've been up late on this, but could use some help with it, I'm naive with vb's code, but am trying to produce a query to pull the score based on the userid, then add it to the postbit with
PHP Code:

$player[score

I had the query seemingly working with an odd join based on the gboxlive code but it still wasn't printing the score out in the template.

Dismounted 07-29-2007 10:47 AM

Use $post['userid'] instead. Although you should really query all the scores and cache them, preventing 1 query for each post displayed on the page.

tinycg 07-29-2007 10:57 AM

Forgive me Dismounted but what would be the best way to go about doing that, or is there even a way to tie a userfield to a database table and just call the userfield??

testebr 08-01-2007 11:22 AM

how to make cache of query?

Dismounted 08-02-2007 06:31 AM

Query the whole lot, put them into an array. Then you can simply access that array to access the data,

Adrian Schneider 08-02-2007 06:48 AM

You can actually just do a join in the main posts query to get that data.


All times are GMT. The time now is 09:27 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01045 seconds
  • Memory Usage 1,721KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete