Azavea.Open.DAO.Firebird.FirebirdDaLayer.GetStringType C# (CSharp) Method

GetStringType() protected method

Returns the SQL type used to store a "normal" (unicode) string in the DB. NOTE: At the moment just uses varchar, so will rely on whatever the DB is using for an encoding.
protected GetStringType ( ) : string
return string
        protected override string GetStringType()
        {
            // TODO: Figure out how force some sort of unicode encoding.
            // This does not work:
            //return "VARCHAR(2000) CHARACTER SET UTF8";
            return "VARCHAR(2000)";
        }