API UpdateSelectedCategory: Porovnání verzí
Z Podpora.nextis.cz
								
												
				| Řádka 60: | Řádka 60: | ||
| |} | |} | ||
| + | ==== Return ==== | ||
| + |  0 : OK | ||
| + |  100 : Item could not be updated | ||
| ==== Example ==== | ==== Example ==== | ||
| <syntaxhighlight lang="sql"> | <syntaxhighlight lang="sql"> | ||
| + |  DECLARE @return_value int | ||
|   DECLARE @ID int |   DECLARE @ID int | ||
|   DECLARE @Name nvarchar(255) |   DECLARE @Name nvarchar(255) | ||
| Řádka 81: | Řádka 85: | ||
|   WHERE  id = 3 |   WHERE  id = 3 | ||
| − |   EXECUTE [API_UpdateSelectedCategory]   | + |   EXECUTE @return_value = [API_UpdateSelectedCategory]   | 
|    @ID,   |    @ID,   | ||
|    @Name, |    @Name, | ||
Verze z 21. 9. 2017, 11:54
Description
Method allows You to update selected category in system.
Exact name
API_UpdateSelectedCategory
Type
Standard executable stored procedure.
Specification
| Parameter | Data type | Value range | Description | Relation | 
|---|---|---|---|---|
| @ID | int | Internal system id | ||
| @Name | nvarchar(255) | Name | ||
| @URL | text | URL | ||
| @Image | Image | Image | ||
| @ImageExt | nvarchar(5) | Image ext | ||
| @Language | int | Language cs=0; pl=1; en=2; de=3; sk=4; hu=5; ar=11; bg=17 | ||
| @OrderNumber | int | Order number | 
Return
0 : OK 100 : Item could not be updated
Example
 DECLARE @return_value int
 DECLARE @ID int
 DECLARE @Name nvarchar(255)
 DECLARE @URL text
 DECLARE @Image image
 DECLARE @ImageExt nvarchar(5)
 DECLARE @Language int
 DECLARE @OrderNumber int
 
 SELECT @ID = [ID], 
       @Name = 'Name 2',
       @URL = [URL],
       @Image = [Image],
       @ImageExt = [ImageExt],
       @Language = [Language],
       @OrderNumber = [OrderNumber]
 FROM   [API_GetSelectedCategories] 
 WHERE  id = 3
 
 EXECUTE @return_value = [API_UpdateSelectedCategory] 
  @ID, 
  @Name,
  @URL,
  @Image,
  @ImageExt,
  @Language,
  @OrderNumber
Notices
None.
