コード例 #1
0
        public VfpCommand(string commandText = null, VfpClient.VfpConnection connection = null, VfpClient.VfpTransaction transaction = null)
        {
            CommandText = commandText;

            if (connection != null)
            {
                Connection = connection;
            }

            if (transaction != null)
            {
                Transaction = transaction;
            }
        }
コード例 #2
0
 protected internal VfpCommand(OleDbCommand oleDbCommand, VfpClient.VfpConnection vfpConnection)
     : base(oleDbCommand, vfpConnection)
 {
 }