gpt4 book ai didi

c++ - 带有非托管 SQLite 的混合 C++/CLI 代码

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:01 25 4
gpt4 key购买 nike

我尝试使用 C++/CLI 的混合模式来操作 SQLite。我写了这段代码:

    int rc; 
char *sql, *Sig, *DocName, *OrgName,*From,*To,*Date;
sqlite3 *db; //Database handle
sqlite3_stmt *stmt; //used to handle stmt for step(), its is name prepared stmt
sql = "insert into Norm1Tab values (?,?,?,?,?,?);";
sqlite3_open("TTest", &db);

Sig =(char *)Marshal::StringToHGlobalAnsi(this->maskedTextBox7->Text).ToPointer();
DocName =(char *)Marshal::StringToHGlobalAnsi(this->maskedTextBox2->Text).ToPointer();
OrgName =(char *)Marshal::StringToHGlobalAnsi(this->maskedTextBox3->Text).ToPointer();
From =(char *)Marshal::StringToHGlobalAnsi(this->maskedTextBox4->Text).ToPointer();
To =(char *)Marshal::StringToHGlobalAnsi(this->maskedTextBox5->Text).ToPointer();
Date =(char *)Marshal::StringToHGlobalAnsi(this->maskedTextBox6->Text).ToPointer();

rc= sqlite3_prepare(db, sql, strlen(sql), &stmt, NULL);//compile sql to byte code

sqlite3_bind_text(stmt, 1, Sig, strlen(Sig),SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, 2, DocName, strlen(DocName),SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, 3, OrgName, strlen(OrgName),SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, 4, From, strlen(From),SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, 5, To, strlen(To),SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, 6, Date, strlen(Date),SQLITE_TRANSIENT);
rc = sqlite3_step(stmt);//talk directly with VDBE and execute the bytecode


//free all handles and objects
Marshal::FreeHGlobal((IntPtr)Sig);
Marshal::FreeHGlobal((IntPtr)DocName);
Marshal::FreeHGlobal((IntPtr)OrgName);
Marshal::FreeHGlobal((IntPtr)From);
Marshal::FreeHGlobal((IntPtr)To);
Marshal::FreeHGlobal((IntPtr)Date);
sqlite3_finalize(stmt);
sqlite3_close(db);

此代码尝试将文件 TTest 写入具有六列的表 Norm1Tab 中,但是它无法写入任何内容!!有什么想法可以帮助解决问题吗?

编辑:

我注意到一些奇怪的事情,实际上我确实在 Windows XP SP3 机器上编译了以前的代码,它显示了所描述的问题。但是当我在 Windows 7 机器上编译它时,它在不做任何修改的情况下工作正常!我还尝试在 XP 机器上编译它,然后将带有“sqlite3.dll”和“数据文件”的二进制文件复制到 Win7,它运行得很好!

在 Windows XP 上我尝试了很多修改都没有任何好处,但我现在有了这个要点:

我的项目有 OpenFileDialog 对象,它由按钮 Button1 调用,该按钮不同于调用上述代码的按钮 Button2。奇怪的是,当我点击 Button1 然后点击 Button2 时,SQLite 的代码什么都不做,而如果我在 Button2 之前点击 Button1 代码工作正常!这仅适用于作为目标系统的 Windows XP。

这是 Button1 处理程序的代码:

private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
if(openFileDialog1->ShowDialog() == System::Windows::Forms::DialogResult::OK)
{

this->maskedTextBox1->Text=openFileDialog1->FileName->ToString();

}

HANDLE hFile;
HANDLE hMap;
//open the file//
hFile = ::CreateFile((LPCWSTR)Marshal::StringToHGlobalUni(this->maskedTextBox1->Text).ToPointer(), GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
0,OPEN_EXISTING , FILE_FLAG_SEQUENTIAL_SCAN, 0);

//get the size for creating the signature and mapping it to Virtual mem//
unsigned long sifi=0;
if(hFile !=INVALID_HANDLE_VALUE){
hMap= ::CreateFileMapping(hFile, 0, PAGE_READONLY | SEC_COMMIT, 0, 0, 0);//create Mem mapping for the file in virtual memory
sifi= ::GetFileSize(hFile,NULL);
}

//load the binary form of the file to memory//
LPVOID base;
BYTE b1,b2,b3,b4,b5,b6,b7,b8,b9,b10;
int inc=2;
if( hMap!=NULL){
base = ::MapViewOfFile(hMap, FILE_MAP_READ, 0, 0, 0);//load the mapped file into the RAM
b1= *((BYTE *)base + sifi/inc++);
b2= *((BYTE *)base + sifi/inc++);
b3= *((BYTE *)base + sifi/inc++);
b4= *((BYTE *)base + sifi/inc++);
b5= *((BYTE *)base + sifi/inc++);
b6= *((BYTE *)base + sifi/inc++);
b7= *((BYTE *)base + sifi/inc++);
b8= *((BYTE *)base + sifi/inc++);
b9= *((BYTE *)base + sifi/inc++);
b10= *((BYTE *)base + sifi/inc++);
}
inc=2;





//show the sig
String^ HexSig;
HexSig = String::Format("{0:X2}", b1)+String::Format("{0:X2}", b2)+String::Format("{0:X2}", b3)+String::Format("{0:X2}", b4)+String::Format("{0:X2}", b5)+String::Format("{0:X2}", b6)+String::Format("{0:X2}", b7)+String::Format("{0:X2}", b8)+String::Format("{0:X2}", b9)+String::Format("{0:X2}", b10);
this->maskedTextBox7->Text=HexSig;



//free handles
::CloseHandle(hFile);
::CloseHandle(hMap);
::UnmapViewOfFile(base);
}

这里的任何人都可以看到问题!

最佳答案

可能出现的问题:

您检查文件是否正确打开?您的表格是否只有六列?表已经创建了吗?表格的类型是否正确(即 TEXT,如果需要)?

在 button1 的代码末尾有一行

this->maskedTextBox7->Text=HexSig;

您使用 maskedTextBox7->Text 进行 sql 查询。此字符串是否与表(第一列)中的正确值兼容?

关于c++ - 带有非托管 SQLite 的混合 C++/CLI 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7693385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com