Database Functions

rinjin

New member
Joined
Apr 7, 2008
Messages
1
Programming Experience
Beginner
Hi All,

I need a help . I am a fresher and my question may sound silly to all. However, I am goin ahead and asking...

I have a database function fncEncryptPsswd(Password). I want to call this in my application. How do I do that???

Thanks and Regards,
Reena Diju
 
Is this a function written in .NET?

It depends on how you wrote it.

If it is within the class you would write Call Me.FncEncryptPsswd(Password).

If you wrote a class (depending on how you wrote it) and it is a method in that class you need to do something like the following:

Class.FncEncryptPsswd(Password).
 
Hi All,

I need a help . I am a fresher and my question may sound silly to all. However, I am goin ahead and asking...

I have a database function fncEncryptPsswd(Password). I want to call this in my application. How do I do that???

Thanks and Regards,
Reena Diju

Helpfully, you didnt bother saying what database youre using..
 
Back
Top