command class : CommandText getter
Description
Returns a SQL statement.
Syntax
instance.CommandText
Arguments
None.
Return value
| Class | Description |
| string | A SQL statement. |
Sample code
| 1: | connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;"); |
| 2: | cnn.Open(); |
| 3: | command cmm = new command("create table sometable (id int, name text);", cnn); |
| 4: | string sqlStr = cmm.CommandText; // create table sometable (id int, name text); |
Notes
None.
Links for reference
None.


