hi,
i'm currently using Oracle Express 10g as my database. i usually create procedures by running sql scripts like...
this procedure will be inside the database or something like that...
i saw some tutorials earlier where stored procedures are created using classes?
maybe i misunderstood the tutorial or something but is this possible? and if so, which method is better in using stored procedures?
any comments/suggestions will be appreciated.
thanks.
i'm currently using Oracle Express 10g as my database. i usually create procedures by running sql scripts like...
VB.NET:
Create or Replace Procedure procName (parameter datatype)
As
Begin
< Statements... >
End;
i saw some tutorials earlier where stored procedures are created using classes?
maybe i misunderstood the tutorial or something but is this possible? and if so, which method is better in using stored procedures?
any comments/suggestions will be appreciated.
thanks.