GetInsertCommand() public method

public GetInsertCommand ( ) : DeveelDbCommand
return DeveelDbCommand
コード例 #1
0
        public void BuildInsert()
        {
            var adapter = new DeveelDbDataAdapter(connection, "SELECT * FROM test_table");
            var builder = new DeveelDbCommandBuilder(adapter);

            var command = builder.GetInsertCommand();

            Assert.IsNotNull(command);
        }
コード例 #2
0
        public void BuildInsert()
        {
            var adapter = new DeveelDbDataAdapter(connection, "SELECT * FROM test_table");
            var builder = new DeveelDbCommandBuilder(adapter);

            var command = builder.GetInsertCommand();

            Assert.IsNotNull(command);
        }