Azavea.Open.DAO.OleDb.OleDbAccessDaLayer.GetAsciiStringType C# (CSharp) Méthode

GetAsciiStringType() protected méthode

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
Résultat string
        protected override string GetAsciiStringType()
        {
            return "VARCHAR(255)";
        }