Dear All,
I use FWMARIADB with MariaDb and I got strange behavior as below;
I use oCon:QueryResult(..).
Result as many rows : got as dimension array
aResult := {{'1','smith', 100 },;
{'2','John', 200 }}
Result as 1 row : got as 1 column array as many rows
aResult := {'1','Smith',100}
But it should be
aResult := {{'1','Smith',100}}
Thanks for any idea or help.