[DUG] Delphi 4 PHP - stored proc

2011-02-26 Thread Rohit Gupta
Does anyone know hot get a value/result back from a php function in delphi 4 php using storedproc ? I have tried many variations from other languages - but no go. There is no help and the examples dont provide much insight. ___ NZ Borland

Re: [DUG] Delphi 4 PHP - stored proc

2011-02-26 Thread Neven MacEwan
Rohit Which DB? which library? Does anyone know hot get a value/result back from a php function in delphi 4 php using storedproc ? I have tried many variations from other languages - but no go. There is no help and the examples dont provide much insight.

Re: [DUG] Delphi 4 PHP - stored proc

2011-02-26 Thread Rohit Gupta
Mysql. I have tried with the standard storedproc and Mysqlstoredproc On 26/02/2011 11:37 p.m., Neven MacEwan wrote: Rohit Which DB? which library? Does anyone know hot get a value/result back from a php function in delphi 4 php using storedproc ? I have tried many variations from other

Re: [DUG] Delphi 4 PHP - stored proc

2011-02-26 Thread Rohit Gupta
Neven, now I suspect that I am not even executing the procedure, I dont think I have teh params correct yet... the code is $params = array(); $params['ip_email'] = $this-edtEmail-Text; $params['ip_password'] = $this-edtPassword-Text; // $params[0] =

Re: [DUG] Delphi 4 PHP - stored proc

2011-02-26 Thread Rohit Gupta
By setting the proc name and params at design time, I can see that the thing is not going to work. First it is using call, even though it is supposed to use select when you use open. Second, it still does not seem to be getting teh parameters right what is the stuff after the semi-colon ?