I want to try to define the schema to set list of libraries where i can search the table on which make the query sql.
at the momenti i can connect on my DB2 into IBMi with this string-connection:
$user = 'USER';
$password = 'PWD';
$hostname = '192.168.1.100';
$db = 'S6528B5A';
$conn_string = "DRIVER={iSeries Access ODBC Driver};
SYSTEM=$hostname;
PROTOCOL=TCPIP;
UID=$user;
PWD=$password;
DATABASE=$db;
DefaultSchema={LIB1,LIB2};";
the connection is successfully established i get Resource id #3 but when i try to execute sql query:
$sql = 'SELECT * FROM FILE1';
$rows = odbc_exec($conn, $sql);
i get an error SQL state S0002 where the file is not found (as if searching for the file in wrong library, search in the library with the same user name that opened the connection)
how can set my environment at the first connectione and than execute query? thanks