Discussion:
Problem using Unicode
m_g_c_6_1_8_0_3
2003-12-04 20:01:53 UTC
Permalink
Note that in Visual Studio .NET 2003, there are two new data types
DBVT_ASTRING and DBVT_WSTRING for ANSI and UNICODE respectively.
So, DBVariant now has two more string members to check:

class CDBVariant
{
...
union
{
BOOL m_boolVal;
unsigned char m_chVal;
short m_iVal;
long m_lVal;
float m_fltVal;
double m_dblVal;
TIMESTAMP_STRUCT* m_pdate;
CString* m_pstring;
CLongBinary* m_pbinary;
CStringA* m_pstringA;
CStringW* m_pstringW;
};
-----Original Message-----
Sent: Thursday, August 02, 2001 2:18 AM
Subject: Problem using Unicode
str = *var.m_pstring; // narrow characters
break;
------------------------ Yahoo! Groups Sponsor ---------------------~-->
KnowledgeStorm has over 22,000 B2B technology solutions. The most comprehensive IT buyers' information available. Research, compare, decide. E-Commerce | Application Dev | Accounting-Finance | Healthcare | Project Mgt | Sales-Marketing | More
http://us.click.yahoo.com/IMai8D/UYQGAA/cIoLAA/8FfwlB/TM
---------------------------------------------------------------------~->

To Unsubscribe, send a blank message to: unicode-***@yahooGroups.com

This mailing list is just an archive. The instructions to join the true Unicode List are on http://www.unicode.org/unicode/consortium/distlist.html


Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Loading...