Viewing 14 posts - 1 through 14 (of 14 total)
Hi ratbak,
It looks like the easiest solution is to right-click in the grey area outside the report body, select Report Properties, and change the Page Setup there.
July 19, 2023 at 11:58 am
Extension definitions. Ok thanks, I never heard of that before.
July 18, 2023 at 7:49 pm
Frederico,
Thanks but that page doesn't call Stored Procedures. That illsutrates parameterized queries with straight UPDATEs or INSERTs. We don't have any problem doing that.
Anyway, our issue is resolved. It's because...
February 11, 2020 at 9:20 pm
Got it. I can't believe it.
It's the absence of braces.
The call to the Stored Procedure should be written
$sql_prep = "{ p_1A_insert( ?, ?, ?, ?, ?, .....
rather...
February 11, 2020 at 8:48 pm
The sqlsrv_query call, that we were originally using, works fine.
The problem is
$stmt = sqlsrv_prepare($queryLink, $sql_prep, $spParams ) ;
$storedProc = sqlsrv_execute($stmt) ;
The sqlsrv_prepare() call returns a valid object. ...
February 11, 2020 at 7:41 pm
Ok, thanks SSC.
I also ran through it in Python, after creating a mini-table with only 5 fields, and a corresponding INSERT Stored Procedure.
Same result. I tried both Driver 11, and...
February 11, 2020 at 3:53 pm
Yes, I understand. I'm just saying I can't find a reference to it anywhere, using a global search in the project subfolders, which includes all the php and all the...
February 6, 2020 at 5:10 pm
Hi MVDBA,
Yes, we're already using a Stored Procedure, and it runs fine with sqlsrv_query. We just can't seem to execute it, with prepared statements.
@p1 is not referenced anywhere in the...
February 6, 2020 at 3:22 pm
May 3, 2018 at 1:01 pm
From a table dbo.logtable with
id,
logindate,
action
, I’m trying to get only the most recent dates for...
December 19, 2017 at 2:07 pm
Please post the DDL (CREATE TABLE statement) for the table(s), sample data (as INSERT...
December 19, 2017 at 1:31 pm
Could you try this format...
July 31, 2017 at 12:19 pm
July 6, 2017 at 11:46 am
July 6, 2017 at 10:28 am
Viewing 14 posts - 1 through 14 (of 14 total)