Error executing multiple insert statements , Major Error 0x80040E14
SQL Compact - Error executing multiple insert statements:
Error executing multiple insert statements:
Major Error 0x80040E14, Minor Error 25501:
You could also consider using one single statement, and separating the individual values with commas. This works in regular SQL Server.
I'm not sure if it also works on Compact, as I don't have that installed, but I
see no reason why it shouldn't:
INSERT INTO TableName
(Cname,CName)
VALUES
('Value’), ('value')
Comments
Post a Comment