LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to create Stored Procedure using LabVIEW?

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 ;$$

 

 

0 Kudos
Message 1 of 2
(2,190 Views)

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.

0 Kudos
Message 2 of 2
(2,176 Views)