in reply to Re^5: CGI Action call
in thread CGI Action call
Need some insight. Have been staring at this since last night. Placeholder issue
if ($kind == 3){ #Last record $stmt = "SELECT * FROM ( SELECT * FROM users WHERE ? <= ? AND +? >= ? ORDER BY ? ASC LIMIT 1 ) sub ORDER BY ? ASC"; #example user_id # $stmt = "SELECT * FROM ( SELECT * FROM users WHERE user_id <= +14999 AND user_id >= 1 ORDER BY user_id DESC LIMIT 1 ) sub ORDER BY u +ser_id ASC"; #Works fine hard coded
placeholder substitution
$sth = $dbh->prepare ($stmt) or die "Error Preparing:\n" . $stmt . + "\nDBI returned: \n", $dbh->errstr; warn("'$searchfield' '$maxrowpointer' '$searchfield' '$minrowpoint +er' '$searchfield' '$searchfield'"); #verified correct values in var +iables at this point $sth->execute ($searchfield, $maxrowpointer,$searchfield,$minrowpo +inter, $searchfield, $searchfield) or die "Unable to execute query: " + . $sth->errstr; my $refresult = $sth->fetchrow_hashref(); my $count = $sth->rows;
This works fine with hard coded vaues instead of placeholders and also testing MySQL directly. count = 1 When running with the placeholders, count = 0
Result with hard code JSON output below
{"DD":"2019-01-30","DP":"2018-12-31","MD":"120.00","MJ":"2018-01-30"," +address1":"1471 Meeks Rd","address2":null,"business":"JZ Electroplating","city":"Warran","comments":"This is a test entry","email":"jze@yahoo.com","forename":"John","id":57,"lastname":"Z +inzer","password":"1234","phone_cell":"517-240-1004","phone_home":"51 +7-233- 4378","pin":"JbwmZ","position":"General Member","state":"MI","user_id" +:19,"username":"bwm19","zip":"45789-2334"}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: CGI Action call
by Corion (Patriarch) on Mar 15, 2018 at 12:22 UTC | |
by tultalk (Monk) on Mar 20, 2018 at 00:24 UTC | |
by poj (Abbot) on Mar 20, 2018 at 09:31 UTC | |
by Corion (Patriarch) on Mar 20, 2018 at 08:07 UTC | |
by tultalk (Monk) on Mar 20, 2018 at 09:30 UTC | |
by Corion (Patriarch) on Mar 20, 2018 at 09:50 UTC | |
| |
by marto (Cardinal) on Mar 20, 2018 at 10:08 UTC |