Jump to content

[SOLVED] will this query statement work?


jim.davidson

Recommended Posts

Ok I trued it

 

$userid = 1;

 

  mysql_select_db($database_mine, $mine);

  $query_getCust = sprintf("SELECT * FROM customer WHERE updated_by = %s OR created_by =%s", GetSQLValueString($userid, "int"));

  $getCust = mysql_query($query_getCust, $mine) or die(mysql_error());

  $row_getCust = mysql_fetch_assoc($getCust);

  $totalRows_getCust = mysql_num_rows($getCust);

echo $totalRows_getCust;

 

Here's the error I'm getting.

 

Warning: sprintf() [function.sprintf]: Too few arguments in C:\Sites\shoppe\testsql.php on line 38

Query was empty

 

 

Link to comment
Share on other sites

Sorry I meant to say tried, no trued.  Also this is line 38

 

$query_getCust = sprintf("SELECT * FROM customer WHERE updated_by = %s OR created_by = %s", GetSQLValueString($userid, "int"));

 

I think it has to do with GetSQLValueString($userid, "int"), I'm pretty sure I'm missing something here.

 

Any help will be appreciated

 

Link to comment
Share on other sites

Hi

 

Don't normally use sprintf, but it appears you are using 2 parameters in the SQL but only only passing one.

 

So this would work (although horrible and pointless):-

 

$query_getCust = sprintf("SELECT * FROM customer WHERE updated_by = %s OR created_by = %s", GetSQLValueString($userid, "int"), GetSQLValueString($userid, "int"));

 

However not sure but think this would work and is better

 

$query_getCust = sprintf("SELECT * FROM customer WHERE updated_by = %1$s OR created_by = %1$s", GetSQLValueString($userid, "int"));

 

All the best

 

Keith

Link to comment
Share on other sites

Ok I tried a different route,

$userid = 1;

$query_getCust = "SELECT * FROM customer WHERE updated_by = $userid OR created_by = $userid";

  $row_getCust = mysql_fetch_assoc($getCust);

  $totalRows_getCust = mysql_num_rows($getCust);

  echo $totalRows_getCust;

 

$totalRows_getCust equaled 4 and thats the correct total

 

Am I asking for trouble going this way? I'm new to this and learning as I go.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.