Hello,
 
	I am using  NI_Database_API.lvlib on Labview 2017. I am tringot insrt multiple rows into table but I have the error : 'Semicolon seperatot is missing at the end of the query.'
 
	Plaese find below my command to insert two rows onto one table T_Column ( C_Name as String, C_Status as String).
 
	INSERT INTO T_Column (C_Name , C_Status) 
	VALUES('21' , 'Not realised'), 
	('22' , 'Not realised');
 
	How do I must modify the query? Is it possible to insert multiple rows using Microsoft.oledb.4.0?
 
	Thanks for your help.