Azavea.Open.DAO.OleDb.OleDbAccessDaLayer.GetAsciiStringType C# (CSharp) Method

GetAsciiStringType() protected method

Returns the SQL type used to store an ascii string in the DB. MS Access does not seem to differentiate between encodings.
protected GetAsciiStringType ( ) : string
return string
        protected override string GetAsciiStringType()
        {
            return "VARCHAR(255)";
        }