Re: PHP using ODBC not liking like
Don Brown via WEB400 <[email protected]> Wed, 28 Sep 2022 10:06:16 +1000
| Newsgroups | gmane.comp.systems.as400.web |
|---|---|
| Message-ID | <OFEF22176B.A2590620-ON4A2588CB.0000768C-4A2588CB.0000931A@msd.net.au> |
Thanks Roger, I will commit that to memory as if I had done that it would have been obvious!! Have a bonza day! Cheers Don From: "Roger Harman" <[email protected]> To: "Web Enabling the IBM i (AS/400 and iSeries)" <[email protected]> Date: 28/09/2022 10:04 AM Subject: Re: [WEB400] PHP using ODBC not liking like Sent by: "WEB400" <[email protected]> You learn after getting bit by that. I always used [] or {} to surround anything I printed for debugging purposes. Roger Harman COMMON Certified Application Developer - ILE RPG on IBM i on Power -----Original Message----- From: WEB400 <[email protected]> On Behalf Of Don Brown via WEB400 Sent: Tuesday, September 27, 2022 4:11 PM To: Midrange Systems Technical Discussion <[email protected]> Cc: Don Brown <[email protected]>; MIDRANGE-L <midrange-l-bounces-+hD5IHI5Xscn3HwCXmMcX9BPR1lH4CV8@public.gmane.org>; [email protected] Subject: Re: [WEB400] PHP using ODBC not liking like Sam, you win the prize!! Yes after adding the trim() it all started working. I was printing the array to the screen but blanks are hard to see ;-) Thank you Don From: "Sam_L" <[email protected]> To: [email protected] Cc: [email protected] Date: 28/09/2022 03:02 AM Subject: Re: PHP using ODBC not liking like Sent by: "MIDRANGE-L" <midrange-l-bounces-+hD5IHI5Xscn3HwCXmMcX9BPR1lH4CV8@public.gmane.org> Caveat: I'm not a PHP expert. I think it's likely that your like array value is padded right with blanks and you'll have to remove them. Not sure of syntax but maybe DEBAC LIKE %TRIM(?). Sam On 9/26/2022 11:50 PM, Don Brown via MIDRANGE-L wrote: > I an trying to use a LIKE in my SQL to allow searching for the result. > > From Run SQL Scripts this works exactly as expected > > select * from mfsdta/mfsdebpf > where debcoy = 1 and debac like 'A%' and debact = 'A' > fetch first 10 rows only; > > But from PHP running on the IBMi using the toolkitservice I have > > $conn = getToolkitServiceForCurrentUser(); > $sql = "select * from " > . MFS_LIBRARY . ".MFSDEBPF " > . " where DEBCOY = ? and DEBAC like ? and debact = > ? " > . " order by DEBAC " > . " fetch first 10 rows only"; > > $values = array(); > $values[0] = $company; > $values[1] = $search . "%"; > $values[2] = $status; > print_r($values); > $stmt = prepareAndExecute($conn, $sql, $values); > > The $values array have these values > > Array ( [0] => 1 [1] => A% [2] => A ) > > No errors are received but no records either. > > If I change the where to use and DEBAC >= ? then I get records returned > so it has to be the way I am formatting the variable with the % sign. > > As a separate question I can't find any log file that may hold the answer > - any suggestions ???? > > Thanks > > Don > > > > -- > This email has been scanned for computer viruses. Although MSD has taken reasonable precautions to ensure no viruses are present in this email, MSD cannot accept responsibility for any loss or damage arising from the use of this email or attachments.. -- This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: [email protected] To subscribe, unsubscribe, or change list options, visit: https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midrange.com%2Fmailman%2Flistinfo%2Fmidrange-l&data=05%7C01%7C%7Cfc2aa810e1394f7a9ddd08daa0dd9604%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637999170813140819%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=QYJp6rCqy6TLctBs4Y1lai%2BLIB5GiAWWtQ1JQu117fg%3D&reserved=0 or email: MIDRANGE-L-request-+hD5IHI5Xscn3HwCXmMcX9BPR1lH4CV8@public.gmane.org Before posting, please take a moment to review the archives at https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farchive.midrange.com%2Fmidrange-l&data=05%7C01%7C%7Cfc2aa810e1394f7a9ddd08daa0dd9604%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637999170813140819%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=5bKR5zLU5qq0cOfUcRKVXLPZ0MN7conCoba44%2F85OPE%3D&reserved=0 . Please contact support-FMtJrHiV//lnDLsaKlm4mFaTQe2KTcn/@public.gmane.org for any subscription related questions. Help support midrange.com by shopping at amazon.com with our affiliate link: https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Famazon.midrange.com%2F&data=05%7C01%7C%7Cfc2aa810e1394f7a9ddd08daa0dd9604%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637999170813140819%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=0acinB4DPqaizm8uMz3qTokFvlL03Nxo20fJVFWu8ME%3D&reserved=0 -- This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing list To post a message email: [email protected] To subscribe, unsubscribe, or change list options, visit: https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midrange.com%2Fmailman%2Flistinfo%2Fweb400&data=05%7C01%7C%7Cfc2aa810e1394f7a9ddd08daa0dd9604%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637999170813140819%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=F%2FIZdcewOAMC0t0QLmgH45Ict3vAPaNNWK52%2BpjAI8g%3D&reserved=0 or email: [email protected] Before posting, please take a moment to review the archives at https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farchive.midrange.com%2Fweb400&data=05%7C01%7C%7Cfc2aa810e1394f7a9ddd08daa0dd9604%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637999170813140819%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=dJRHTVIXp3mfU%2FB8ClETJq4e6FehR69AOvJH5BXTjc0%3D&reserved=0 . -- This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing list To post a message email: [email protected] To subscribe, unsubscribe, or change list options, visit: https://lists.midrange.com/mailman/listinfo/web400 or email: [email protected] Before posting, please take a moment to review the archives at https://archive.midrange.com/web400. -- This email has been scanned for computer viruses. Although MSD has taken reasonable precautions to ensure no viruses are present in this email, MSD cannot accept responsibility for any loss or damage arising from the use of this email or attachments.. -- This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing list To post a message email: [email protected] To subscribe, unsubscribe, or change list options, visit: https://lists.midrange.com/mailman/listinfo/web400 or email: [email protected] Before posting, please take a moment to review the archives at https://archive.midrange.com/web400.