vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   SQL Query Read (https://vborg.vbsupport.ru/showthread.php?t=189858)

TheInsaneManiac 09-02-2008 09:12 PM

SQL Query Read
 
Hello. I am trying to make this script work, but for some reason it is not. I am trying to read from the DB to find a users customprofilepic filename. So far it's not working to well. Ideas?

Code:

$db->query_read("SELECT filename FROM " . TABLE_PREFIX . "customprofilepic WHERE userid='".$row[0]."'");

Eikinskjaldi 09-03-2008 02:36 AM

Well firstly you dont need to quote numeric variables.

Secondly you dont tell us about the nature of the not working.

Thirdly, and I will take a completely blind stab, are you using fetch_rows after the read_query?

TheInsaneManiac 09-06-2008 06:04 PM

Quote:

Originally Posted by Eikinskjaldi (Post 1613277)
Well firstly you dont need to quote numeric variables.

Secondly you dont tell us about the nature of the not working.

Thirdly, and I will take a completely blind stab, are you using fetch_rows after the read_query?

Basically it is going to fetch the filename of a profile picture for a specific user. This filename is going to be displayed inside of an img source tag.

sockwater 09-06-2008 07:50 PM

  1. What is the exact error it gives you?
  2. Are you certain $row[0] contains a valid userid? Use die($row[0]); to check.
  3. Don't quote the integer value.
  4. Are you sure $db is in scope?
  5. What hook are you doing this on?
Code:

$userid = (int) $row[0];
die($userid); // use this for a sanity check...
$db->query_read("
        SELECT filename
        FROM " . TABLE_PREFIX . "customprofilepic
        WHERE userid = $userid
");



All times are GMT. The time now is 02:41 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.00995 seconds
  • Memory Usage 1,718KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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