API GetArticles: Porovnání verzí
Z Podpora.nextis.cz
(Založena nová stránka s textem „ Example SELECT TOP 1000 [ID] ,[Title] ,[UrlName] ,[HtmlText] ,[Language] FROM [API_GetArticles]“) |
|||
(Není zobrazeno 5 mezilehlých verzí od stejného uživatele.) | |||
Řádka 1: | Řádka 1: | ||
− | + | ====Description==== | |
− | + | Method gives You overview of existing article in system. | |
− | + | ====Exact name==== | |
− | + | <code>API_GetArticles</code> | |
− | + | ====Type==== | |
− | + | Standard view. | |
− | + | ====Specification==== | |
− | + | {| class="wikitable" | |
− | + | !Column | |
+ | !Data type | ||
+ | !Description | ||
+ | !Relation | ||
+ | |- | ||
+ | |ID | ||
+ | |int | ||
+ | |Internal system id | ||
+ | | | ||
+ | |- | ||
+ | |UrlName | ||
+ | |nvarchar(50) | ||
+ | |Url name | ||
+ | | | ||
+ | |- | ||
+ | |Title | ||
+ | |nvarchar(50) | ||
+ | |Title | ||
+ | | | ||
+ | |- | ||
+ | |HtmlText | ||
+ | |nvarchar(max) | ||
+ | |Html text | ||
+ | | | ||
+ | |- | ||
+ | |Language | ||
+ | |int | ||
+ | |cs=0; pl=1; en=2; de=3; sk=4; hu=5; ar=11; bg=17 | ||
+ | | | ||
+ | |} | ||
+ | ====Example==== | ||
+ | <syntaxhighlight lang="sql"> | ||
+ | SELECT TOP 1000 * FROM [API_GetArticles] | ||
+ | </syntaxhighlight> | ||
+ | ====Notices<span> </span><span> </span>==== | ||
+ | None. |
Aktuální verze z 9. 11. 2018, 12:18
Description
Method gives You overview of existing article in system.
Exact name
API_GetArticles
Type
Standard view.
Specification
Column | Data type | Description | Relation |
---|---|---|---|
ID | int | Internal system id | |
UrlName | nvarchar(50) | Url name | |
Title | nvarchar(50) | Title | |
HtmlText | nvarchar(max) | Html text | |
Language | int | cs=0; pl=1; en=2; de=3; sk=4; hu=5; ar=11; bg=17 |
Example
SELECT TOP 1000 * FROM [API_GetArticles]
Notices
None.