command class : command(string,connection,transaction) fitter
Description
Returns a new instance of command class.
Syntax
new command(string commandText, connection cnn, transaction tran)
Arguments
| Class | Name | Description |
| string | commandText | SQL statement. |
| connection | cnn | Database connection. |
| transaction | tran | Transaction. |
Return value
| Class | Description |
| command | A new instance of command class. |
Sample code
| 1: | connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;"); |
| 2: | cnn.Open(); |
| 3: | transaction tran = cnn.BeginTransaction(); |
| 4: | command cmm = new command("create table sometable (id int, name text);", cnn, tran); |
Notes
The returned instance has been initialized.
Links for reference
None.


