I'm attempting to use the sp_password stored procedure witin MS SQL Server in a PowerBuilder app.
DECLARE sp PROCEDURE FOR sp_password
@old = :s_old,
@new = :s_new,
@loginame = :s_login
using SQLCA;
SQLCA.Autocommit = true
EXECUTE sp ;
SQLCA.Autocommit = false
The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.