SCRIPT5007: Impossible d'obtenir la propriété "paramètres" undefined ou référence null

CREATE  FUNCTION [dbo].[PMURP_Func_ParseArray] (@Array VARCHAR(1000),@separator CHAR(1))
RETURNS @T Table (ExtractWords varchar(50))
AS 
BEGIN
--DECLARE @T Table (col1 varchar(50))
-- @Array is the array we wish to parse
-- @Separator is the separator charactor such as a comma
DECLARE @separator_position INT -- This is used to locate each separator character
DECLARE @array_value VARCHAR(1000) -- this holds each array value as it is returned
-- For my loop to work I need an extra separator at the end. I always look to the
-- left of the separator character for each array value

SET @array = @array + @separator

-- Loop through the string searching for separtor characters
WHILE PATINDEX('%' + @separator + '%', @array) <> 0 
BEGIN
-- patindex matches the a pattern against a string
SELECT @separator_position = PATINDEX('%' + @separator + '%',@array)
SELECT @array_value = LEFT(@array, @separator_position - 1)
-- This is where you process the values passed.
INSERT into @T VALUES (@array_value) 
-- Replace this select statement with your processing
-- @array_value holds the value of this element of the array
-- This replaces what we just processed with and empty string
SELECT @array = STUFF(@array, 1, @separator_position, '')
END
RETURN 
END

et

Select Description from Bad_Names WHERE Description in (Select * from dbo.PMURP_Func_ParseArray('bala',' '))

et

Description,Name_ID
PK_BadNames nonclustered, unique, primary key located on PRIMARY    Description
jquery version 1.8.3
Qui jquery version utilisez-vous? $.les données ont été modifiées $._data
Je dirais donc utiliser $._data. Et désolé, j'ai supprimé le commentaire par erreur alors maintenant ma question est en dessous de votre réponse... :=) L'erreur que vous obtenez signifie validateur n'est pas défini. De toute façon, l' $._data ou $.de données n'est pas une méthode soutenu publiquement le...
Changé de dollars.les données de $._data mais je suis toujours obtenir la même erreur
Essayez par mise à jour de votre plugin/jquery ou utiliser jquery migrate

OriginalL'auteur Rooney | 2013-07-31