Azavea.Open.DAO.SQL.AbstractSqlConnectionDescriptor.NeedToAliasColumns C# (CSharp) 메소드

NeedToAliasColumns() 공개 추상적인 메소드

Does this database require that we alias the columns explicitly if we are aliasing the table name? Most DBs will alias the columns for you (I.E. if you "SELECT ID FROM TABLE1 AS ALIAS1" then the column will be called "ALIAS1.ID", etc). However some require that you alias the columns specifically (cough SQLite, Access cough).
public abstract NeedToAliasColumns ( ) : bool
리턴 bool
        public abstract bool NeedToAliasColumns();