SqlStatement/en: Porovnání verzí

Z Wiki
Přejít na: navigace, hledání
(Založena nová stránka s textem „Data connection to be used for the SQL command.“)
 
(Není zobrazeno 20 mezilehlých verzí od stejného uživatele.)
Řádek 7: Řádek 7:
 
'''Alias: SS'''
 
'''Alias: SS'''
  
'''Executes an SQL command.'''
+
'''Runs an SQL statement.'''
  
Executes an SQL command of the type INSERT, UPDATE, or DELETE stored in the [[#sql-|SQL]] parameter on the data connection specified by the [[#dataconnection-|DataConnection]] parameter. The number of affected records will be stored in [[#recordsaffected-|RecordsAffected]].
+
Runs an SQL statement of the type INSERT, UPDATE, or DELETE stored in the [[#sql-|SQL]] parameter on the data connection specified by the [[#dataconnection-|DataConnection]] parameter. The number of affected records will be stored in [[#recordsaffected-|RecordsAffected]].
  
 
== Input parameters ==
 
== Input parameters ==
Řádek 18: Řádek 18:
 
Type [[Special:MyLanguage/Data types#DataConnection | DataConnection]]
 
Type [[Special:MyLanguage/Data types#DataConnection | DataConnection]]
  
Data connection to be used for the SQL command.
+
Data connection to be used for the SQL statement.
  
 
<span id="sql-"></span>
 
<span id="sql-"></span>
 
=== SQL ===
 
=== SQL ===
  
Typ [[Special:MyLanguage/Datové typy#String | String]]
+
Type [[Special:MyLanguage/Data types#String | String]]
  
SQL příkaz typu INSERT, UPDATE nebo DELETE.
+
SQL statement of the type INSERT, UPDATE or DELETE.
  
=== CommandTimeout ===
+
Type [[Special:MyLanguage/Data types#Number | Number]]
Typ [[Special:MyLanguage/Datové typy#Number | Number]]
 
  
Maximální doba čekání v sekundách na provedení SQL příkazu.
+
Timeout in seconds for the SQL statement to run.
  
 
=== Enabled ===
 
=== Enabled ===
  
Typ [[Special:MyLanguage/Datové typy#Number | Number]]
+
Type [[Special:MyLanguage/Data types#Number | Number]]
  
Povoluje nebo zakazuje příkaz. Při hodnotě 0 nebude příkaz proveden.
+
Enables or disables the command. If the value is 0, the command will not execute.
  
 
=== PreWait ===
 
=== PreWait ===
  
Typ [[Special:MyLanguage/Datové typy#Number | Number]]
+
Type [[Special:MyLanguage/Data types#Number | Number]]
  
Prodleva v milisekundách před provedením příkazu. Nemá žádný vliv je-li Enabled=0.
+
Delay in milliseconds before executing the command. It has no effect if Enabled=0.
  
 
=== PostWait ===
 
=== PostWait ===
  
Typ [[Special:MyLanguage/Datové typy#Number | Number]]
+
Type [[Special:MyLanguage/Data types#Number | Number]]
  
Prodleva v milisekundách po provedení příkazu. Nemá žádný vliv je-li Enabled=0.
+
Delay in milliseconds before executing the command. It has no effect if Enabled=0.
  
== Výstupní parametry ==
+
== Output parameters ==
  
 
<span id="recordsaffected-"></span>
 
<span id="recordsaffected-"></span>
 
=== RecordsAffected ===
 
=== RecordsAffected ===
  
Typ [[Special:MyLanguage/Datové typy#Number | Number]]
+
Type [[Special:MyLanguage/Data types#Number | Number]]
  
Počet řádků ovlivněných SQL příkazem.
+
Number of records affected by the SQL statement.

Aktuální verze z 3. 2. 2021, 20:00

Jiné jazyky:
English • ‎čeština

Description

Alias: SS

Runs an SQL statement.

Runs an SQL statement of the type INSERT, UPDATE, or DELETE stored in the SQL parameter on the data connection specified by the DataConnection parameter. The number of affected records will be stored in RecordsAffected.

Input parameters

DataConnection

Type DataConnection

Data connection to be used for the SQL statement.

SQL

Type String

SQL statement of the type INSERT, UPDATE or DELETE.

Type Number

Timeout in seconds for the SQL statement to run.

Enabled

Type Number

Enables or disables the command. If the value is 0, the command will not execute.

PreWait

Type Number

Delay in milliseconds before executing the command. It has no effect if Enabled=0.

PostWait

Type Number

Delay in milliseconds before executing the command. It has no effect if Enabled=0.

Output parameters

RecordsAffected

Type Number

Number of records affected by the SQL statement.