Blacker.MangaScraper.Library.SQLite.SQLiteDALBase.ExecuteScalar C# (CSharp) Method

ExecuteScalar() protected method

protected ExecuteScalar ( SQLiteCommand command, SQLiteConnection connection ) : object
command System.Data.SQLite.SQLiteCommand
connection System.Data.SQLite.SQLiteConnection
return object
        protected object ExecuteScalar(SQLiteCommand command, SQLiteConnection connection)
        {
            return ExecuteScalar(command, connection, null);
        }

Same methods

SQLiteDALBase::ExecuteScalar ( SQLiteCommand command, SQLiteConnection connection, System.Data.SQLite.SQLiteTransaction transaction ) : object