Re: AW: [Axapta-Knowledge-Village] calling prodecure with parameters in Axapta

2007-06-14 Thread Sumit Loya
Hi Abhijit, Use the following code static void storedProcedure( Args _args) { LogInProperty Lp = new LogInProperty( ); OdbcConnection myConnection; Statement myStatement; ResultSet myResult; ; LP.setServer( "MDT644" ); LP.setDatabase( "AXDB" ); try {

Re: AW: [Axapta-Knowledge-Village] calling prodecure with parameters in Axapta

2007-06-14 Thread abhijit raje
Hi, I have written this code but its still not nworking can u help me on this static void storedProcedure( Args _args) { LogInProperty Lp = new LogInProperty( ); OdbcConnection myConnection; Statement myStatement; ResultSet myResult; ; LP.setServer( "MDT644" ); LP.setDatabase( "AXDB" ); try { m

Re: [Axapta-Knowledge-Village] calling prodecure with parameters in Axapta

2007-06-14 Thread nitin mathur
:13 PM Subject: [Axapta-Knowledge-Village] calling prodecure with parameters in Axapta Hi Friends Can anyone help me in passing parameters to procedure through Axapta _ _ _ _ _ _ Moody friends. Drama queens. Your life? Nope! - their life, your

AW: [Axapta-Knowledge-Village] calling prodecure with parameters in Axapta

2007-06-14 Thread Matthias Lachetta
Hi, first thx for this help. I have the same problem to call a stored procedere from Axapta. The code works and is close to my own. But if i try to catch the resultSet There is a error message : No rows selected. How can i handle a resultset of a stored procere? Any suggestions? R