C
|
cristi 8/8/2024 |
It should work with DB::SetConnection strictly from multiple connections point of view - did you debug the query? - use the method from here and see if there is an error message. |
![]() |
ffrinai author 8/9/2024 |
Hi, $rs = DB::Select("trdo", "matr is not null" ); Fabio |
C
|
cristi 8/9/2024 |
I don't understand what database engine are you using now??? You translated the ms access to mysql/postgresql, etc or you are using msacces with phprunner? if( $recorddip = $rsdip->fetchAssoc() ) First of all conditionals don't use"=". They use"==". $x = mysqli_fetch_assoc($y); or if you check multiple rows: while($x = mysqli_fetch_assoc($y)) { The way you have written that conditional I don't understand what you plan to achieve - it doesn't work like this. Also if you use PHPRunner with MSAccess did you follow the steps from here? |