Hi,
is there a way to execute a command on AS/400 with VB??
Thanx
Printable View
Hi,
is there a way to execute a command on AS/400 with VB??
Thanx
Shell ? maybe
What command are you talking about.
You can execute any SQL and CL. If that what you want then you can do it on connection object
sSQL = "Call MyLib.MycL"
cn.Execute sSQL
where cn is connection to AS/400 database
Pay attention that it is a dot between library name and program - not a slash like AS400 likes. That is a little trick that Client Access doing to SQL while transferring it to 400.
Iouri Boutchkine
[email protected]