T
Tim Kuehn
Guest
What you're trying to do won't work - you need to return from the procedure that makes the connection before you can run any code that accesses that db. This means you need to follow this structure: prog1 -> Connect.p prog1 -> prog2.p (use class mycls1) --> class mycls1 (access db1) --> prog3.p -> connect.p prog3.p -> prog4.p (access db2)
Continue reading...
Continue reading...