Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
USE Northwind
GO
CREATE PROC sp_insert_employee @empdata text
AS
DECLARE @hDoc int
EXEC sp_xml_preparedocument @hDoc OUTPUT, @empdata
INSERT INTO Employee
SELECT *
FROM OPENXML (@hDoc, '/root/Employee',3)
WITH Employee
EXEC sp_xml_removedocument @hDoc