10-17-2012 03:13 AM
I want to create the following stored procedure using LabVIEW...
DELIMITER $$;
DROP PROCEDURE IF EXISTS `parent_child`.`GetUIDCount`$$
CREATE PROCEDURE `parent_child`.`GetUIDCount` ()
BEGIN
select count(*) from unique_identification_mst;
END$$
DELIMITER ;$$
10-17-2012 04:36 AM
You seem to have the text already so what exactly are you trying to do? Which database are you using? Which NI Tools are you using?
I've very little DB experience, please excuse any silliness which may be present in my response.
Shane.