PROCEDURE VerifyCounterparty(
v_EmailAddress IN VARCHAR,
v_Password IN VARCHAR2,
v_Count OUT NUMBER,
v_AccountLocked OUT NUMBER,
v_TradesCompanyId OUT NUMBER,
v_FirstName OUT VARCHAR2)
IS
BEGIN
SELECT COUNT(firstname) firstname,
ACCOUNTLOCKED,
TRADESCOMPANYID,
FIRSTNAME
INTO v_Count,
v_AccountLocked,
v_TradesCompanyId,
v_FirstName
FROM T_USER
WHERE EMAILADDRESS = v_EmailAddress
AND PASSWORD = v_Password GROUP BY ACCOUNTLOCKED, TRADESCOMPANYID, FIRSTNAME;
EXCEPTION
WHEN NO_DATA_FOUND THEN
v_Count := 0;
v_AccountLocked := 0;
v_TradesCompanyId := 0;
END VerifyCounterparty;
Network and collaborate with thousands of CTOs, CISOs, and IT Pros rooting for you and your success.
”The time we save is the biggest benefit of E-E to our team. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange.
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Most Valuable Expert award recognizes technology experts who passionately share their knowledge with the community, demonstrate the core values of this platform, and go the extra mile in all aspects of their contributions. This award is based off of nominations by EE users and experts. Multiple MVEs may be awarded each year.
The Distinguished Expert awards are presented to the top veteran and rookie experts to earn the most points in the top 50 topics.