// // System.Data.CommandType.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Specifies how a command string is interpreted. /// public enum CommandType { StoredProcedure, TableDirect, Text } }