BACnet.Client.Db.TableExistsCommand.TableExistsCommand C# (CSharp) Метод

TableExistsCommand() публичный Метод

Constructs a new table exists command instance
public TableExistsCommand ( SQLiteConnection connection ) : System
connection System.Data.SQLite.SQLiteConnection
Результат System
        public TableExistsCommand(SQLiteConnection connection)
        {
            _command = new SQLiteCommand(Queries.TableExists, connection);
            _tableName = new SQLiteParameter("@tableName");
            _command.Parameters.Add(_tableName);
        }