sqlite中文路径支持

sqlite中文路径支持,第1张

概述在工程中加sqlite3源代码,调用第一个函数sqlite3_open,发现其不支持中文路径。 经过检索发现该函数要求输入的文件名为utf8编码。 //再sqlite3.c中 winFullPathname、sqlite3_win32_mbcs_to_utf8、mbcsToUnicode、unicodeToUtf8与此事相关。 //参考以上4个函数,做的一个编码转换函数 CString CMyAp 在工程中加sqlite3源代码,调用第一个函数sqlite3_open,发现其不支持中文路径。
经过检索发现该函数要求输入的文件名为utf8编码。
//再sqlite3.c中 winFullPathname、sqlite3_win32_mbcs_to_utf8、mbcsToUnicode、unicodetoUtf8与此事相关。
//参考以上4个函数,做的一个编码转换函数
CString CMyApp::MbcsToUtf8(const char *file)
{
CString str;
WCHAR *pwchar=0;
CHAR *pchar=0;
int len=0;
int codepage = ArefileAPIsANSI() ? CP_ACP : CP_OEMCP;
len=MultiBytetoWIDeChar(codepage,file,-1,NulL,0);
pwchar=new WCHAR[len];
if(pwchar!=0)
{
len = MultiBytetoWIDeChar(codepage,pwchar,len);
if( len!=0 )
{
len = WIDeCharToMultiByte(CP_UTF8,0);
pchar=new CHAR[len];
if(pchar!=0)
{
len = WIDeCharToMultiByte(CP_UTF8,pchar,len,0);
if(len!=0)
{
str=pchar;
}
delete pchar;
}
delete pwchar;
}
}
return str;
}

//在调用 sqlite_open 前将文件路径,通过MbcsToUtf8函数将编码转换到utf8即可支持中文路径。


转自:http://rectnote.blog.sohu.com/111114142.HTML

总结

以上是内存溢出为你收集整理的sqlite中文路径支持全部内容,希望文章能够帮你解决sqlite中文路径支持所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1172577.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存