![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » SQL/PSM Functions » ROWCOUNT |
ROWCOUNT(<CursorName>) <CursorName> = Previously-opened result set cursor
INTEGER
-- This procedure checks to see if the -- specified State exists in the States lookup -- table and inserts it if it isn't CREATE PROCEDURE LookupState(IN State CHAR(2) COLLATE ANSI_CI) BEGIN DECLARE StateCursor SENSITIVE CURSOR FOR Stmt; PREPARE Stmt FROM 'SELECT * FROM States WHERE State = ?'; OPEN StateCursor USING State; IF (ROWCOUNT(StateCursor) = 0) THEN INSERT INTO StateCursor VALUES (State); END IF; CLOSE StateCursor; END
Deviation | Details |
Extension | This function is an ElevateDB extension. |
This web page was last updated on Friday, January 31, 2025 at 08:42 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |