Difference between revisions of "SQLExecute Command"

From GXtest Wiki
Jump to: navigation, search
(SQLExecute)
Line 1: Line 1:
{{Idiomas|Comando SQLExecute|SQLExecute Command}}
+
{{Idiomas|Comando SQLExecute|SQLExecute Command | SQL 実行コマンド}}
 
[[category:GXtest Commands]]
 
[[category:GXtest Commands]]
  

Revision as of 04:00, 21 February 2014

Spanish.gif
English.gif
Japan.gif

Contents

SQLExecute

Employing the SQLExecute command makes possible running an arbitraty SQL query against a database. It is necessary to provide the following information:

  • The data to establish a connection against the database, such as host, name, user, password, etc.
  • The SQL Query which we want to run
  • The destination variable or Datapool in which the results will be saved (if any results are returned at all)


An example:


EjemploSQLExecute.PNG

Data for the connection

The information required to establish a connection to a database depends on its engine. A few examples are displayed below, where the database engine and the rest of data needed for the connection are shown (oracle, sqlserver, mysql, db2):

SQLServer

sqlserver=Data Source=myServer;Initial Catalog=myDatabase;Integrated Security=False;User Id=myUsername;Password=myPassword

DB2

db2=Database=SAMPLE;UserID=myUsername;Password=myPassword;Server=xxx.xxx.xxx.xxx:50000

Oracle

oracle=Data Source=TORCL;User Id=myUsername;Password=myPassword;

MySQL

mysql=Server=myServerAddress;Port=3306;Database=myDataBase;Uid=myUsername;Pwd=myPassword;

SQL Query

The SQL query to be used can be of three types:

  • Performs a change in the database, nonetheless, it does not return a value.
  • It returns a unique value. In that case, either a variable to save the returned value may be specified, or a datapool/column.
  • Returns a set of columns and rows. In that case, it is possible to specify a datapool with the same amount of columns as the returned data. In that way, all of the returned rows are saved in the datapool, deleting the data which was previously available in it.

Supported Connectors