将指纹数据插入数据库时出错 table
Error when inserting finger print data into database table
我在一个项目中工作,该项目目前已经建成并且可以正常运行。但是当我尝试将指纹从设备插入数据库时出现问题 table。让我写一下它之前工作正常。但是当我设置一台新电脑或将项目移动到一个新环境时,它会抛出一个异常:
Retrieving the COM class factory for component with CLSID {00853A19-BD51-419B-9269-2DABE57EB61F}
failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
这是一个使用ZkemKeeper的指纹考勤系统,工程附带dll文件。这是代码片段:
/**This is a list of the users from database that uses fingerprint system - Starts**/
List<AttMachineBO> lstfrom = new List<AttMachineBO>();
for (int i = 0; i < dgv_Machine.Rows.Count; i++)
{
if (dgv_Machine.Rows[i].Cells[0].Value == null)
{
dgv_Machine.Rows[i].Cells[0].Value = false;
}
if ((bool)dgv_Machine.Rows[i].Cells[0].Value == true)
{
AttMachineBO obj = new AttMachineBO();
obj.Mechine_No = dgv_Machine.Rows[i].Cells[1].Value.ToString();
obj.Machine_Name = dgv_Machine.Rows[i].Cells[2].Value.ToString();
obj.IP_Address = dgv_Machine.Rows[i].Cells[3].Value.ToString().Trim();
lstfrom.Add(obj);
}
}
/**This is a list of the users from database that uses fingerprint system - Ends**/
基本上上面的代码是从分配有 IP 地址的 table 加载用户详细信息,点击时,指纹数据将从考勤设备(ZKTeco i-clock)插入数据库 table 580)。对于插入数据,使用以下代码:
if (lstfrom.Count > 0)
{
for (int x = 0; x < lstfrom.Count; x++)
{
/Here the exception starts/
**zkemkeeper.CZKEMClass fromM = new zkemkeeper.CZKEMClass();**
lblStatus.Text = "Connect To Device " + lstfrom[x].Machine_Name + " , IP=" + lstfrom[x].IP_Address + ".....";
lblStatus.Refresh();
if (fromM.Connect_Net(lstfrom[x].IP_Address, 4370))
{
lblStatus.Text = "Register The Device To PC";
lblStatus.Refresh();
if (fromM.RegEvent(fromM.MachineNumber, 65535))
{
lblStatus.Text = "Reading All Data From Machine";
lblStatus.Refresh();
fromM.ReadAllTemplate(fromM.MachineNumber);
List<AttMachineBO> datalst = new List<AttMachineBO>();
string empId = "", name = "", fingerprintData = "", fingerprintData2 = "", password = ""; ;
int prev = 0, TmpLength = 0;
bool isEnable = false;
int k = 0;
while (fromM.SSR_GetAllUserInfo(fromM.MachineNumber, out empId, out name, out password, out prev, out isEnable))
{
lblStatus.Text = "Processing Employee with ID=" + empId + ", Name =" + name;
lblStatus.Refresh();
AttMachineBO bo = new AttMachineBO();
bo.EMP_ID = empId;
bo.EMP_Name = name;
bo.IsfingerSaa = true;
bo.IP_Address = lstfrom[x].IP_Address;
bo.Com_Id = HRMS.MAIN.HRMS.Company;
bool f = fromM.SSR_GetUserTmpStr(fromM.MachineNumber, empId, 0, out fingerprintData, out TmpLength);
bo.finger1 = fingerprintData != null ? fingerprintData : "";
f = fromM.SSR_GetUserTmpStr(fromM.MachineNumber, empId, 1, out fingerprintData, out TmpLength);
bo.finger2 = fingerprintData != null ? fingerprintData : "";
datalst.Add(bo);
}
bool flag = Facede.Attendance.InserDatabase(datalst);
if (flag)
{
MessageBox.Show("Insert Successfully.");
return;
}
else
{
MessageBox.Show("Error In Insert.");
return;
}
}
else
{
lblStatus.Text = "Device registration failed.";
lblStatus.Refresh();
}
}
else
{
lblStatus.Text = "Failed to stablish connecting to device =" + lstfrom[x].Machine_Name + ", IP =" + lstfrom[x].IP_Address + "...."; ;
lblStatus.Refresh();
}
}
}
我已经在异常开始的代码(第二个代码部分)中突出显示,但有点困惑如何解决它。
您收到的错误很明确,zkemkeeper.dll 需要在 windows 系统上注册。
我不知道您是否已经拥有所有的 dll 文件...如果您没有所有的 dll 文件,您应该从以下网址下载最新的 SDK 版本 link https://www.zkteco.eu/uploads/ftp/SDK/Standalone%20SDK-Ver6.3.1.34.rar
为避免故障排除,您应该注册 32 位版本而不是 64 位版本,并为 x86 体系结构编译您的应用程序。
为了注册 dll,将 32 位文件夹的内容复制到 c:\windows\system(如果您的计算机是 x64,则复制到 c:\windows\syswow64),然后使用管理员权限,在您刚刚复制 dll 的文件夹中的位置和 运行 以下命令:
regsvr32 zkemkeeper.dll
注册文件后,需要调整对这个dll的引用。
在 visual studio 中,删除您当前的引用并在受影响的项目中添加一个新引用。您将在 COM 选项卡的底部找到新注册的 dll。
添加引用后,您需要调整一个参数。 Select 引用并右键单击 -> 属性,它将打开属性 window.. 将 "Embed interop types" 设置为 false.
应该可以。
我在一个项目中工作,该项目目前已经建成并且可以正常运行。但是当我尝试将指纹从设备插入数据库时出现问题 table。让我写一下它之前工作正常。但是当我设置一台新电脑或将项目移动到一个新环境时,它会抛出一个异常:
Retrieving the COM class factory for component with CLSID {00853A19-BD51-419B-9269-2DABE57EB61F} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
这是一个使用ZkemKeeper的指纹考勤系统,工程附带dll文件。这是代码片段:
/**This is a list of the users from database that uses fingerprint system - Starts**/
List<AttMachineBO> lstfrom = new List<AttMachineBO>();
for (int i = 0; i < dgv_Machine.Rows.Count; i++)
{
if (dgv_Machine.Rows[i].Cells[0].Value == null)
{
dgv_Machine.Rows[i].Cells[0].Value = false;
}
if ((bool)dgv_Machine.Rows[i].Cells[0].Value == true)
{
AttMachineBO obj = new AttMachineBO();
obj.Mechine_No = dgv_Machine.Rows[i].Cells[1].Value.ToString();
obj.Machine_Name = dgv_Machine.Rows[i].Cells[2].Value.ToString();
obj.IP_Address = dgv_Machine.Rows[i].Cells[3].Value.ToString().Trim();
lstfrom.Add(obj);
}
}
/**This is a list of the users from database that uses fingerprint system - Ends**/
基本上上面的代码是从分配有 IP 地址的 table 加载用户详细信息,点击时,指纹数据将从考勤设备(ZKTeco i-clock)插入数据库 table 580)。对于插入数据,使用以下代码:
if (lstfrom.Count > 0)
{
for (int x = 0; x < lstfrom.Count; x++)
{
/Here the exception starts/
**zkemkeeper.CZKEMClass fromM = new zkemkeeper.CZKEMClass();**
lblStatus.Text = "Connect To Device " + lstfrom[x].Machine_Name + " , IP=" + lstfrom[x].IP_Address + ".....";
lblStatus.Refresh();
if (fromM.Connect_Net(lstfrom[x].IP_Address, 4370))
{
lblStatus.Text = "Register The Device To PC";
lblStatus.Refresh();
if (fromM.RegEvent(fromM.MachineNumber, 65535))
{
lblStatus.Text = "Reading All Data From Machine";
lblStatus.Refresh();
fromM.ReadAllTemplate(fromM.MachineNumber);
List<AttMachineBO> datalst = new List<AttMachineBO>();
string empId = "", name = "", fingerprintData = "", fingerprintData2 = "", password = ""; ;
int prev = 0, TmpLength = 0;
bool isEnable = false;
int k = 0;
while (fromM.SSR_GetAllUserInfo(fromM.MachineNumber, out empId, out name, out password, out prev, out isEnable))
{
lblStatus.Text = "Processing Employee with ID=" + empId + ", Name =" + name;
lblStatus.Refresh();
AttMachineBO bo = new AttMachineBO();
bo.EMP_ID = empId;
bo.EMP_Name = name;
bo.IsfingerSaa = true;
bo.IP_Address = lstfrom[x].IP_Address;
bo.Com_Id = HRMS.MAIN.HRMS.Company;
bool f = fromM.SSR_GetUserTmpStr(fromM.MachineNumber, empId, 0, out fingerprintData, out TmpLength);
bo.finger1 = fingerprintData != null ? fingerprintData : "";
f = fromM.SSR_GetUserTmpStr(fromM.MachineNumber, empId, 1, out fingerprintData, out TmpLength);
bo.finger2 = fingerprintData != null ? fingerprintData : "";
datalst.Add(bo);
}
bool flag = Facede.Attendance.InserDatabase(datalst);
if (flag)
{
MessageBox.Show("Insert Successfully.");
return;
}
else
{
MessageBox.Show("Error In Insert.");
return;
}
}
else
{
lblStatus.Text = "Device registration failed.";
lblStatus.Refresh();
}
}
else
{
lblStatus.Text = "Failed to stablish connecting to device =" + lstfrom[x].Machine_Name + ", IP =" + lstfrom[x].IP_Address + "...."; ;
lblStatus.Refresh();
}
}
}
我已经在异常开始的代码(第二个代码部分)中突出显示,但有点困惑如何解决它。
您收到的错误很明确,zkemkeeper.dll 需要在 windows 系统上注册。
我不知道您是否已经拥有所有的 dll 文件...如果您没有所有的 dll 文件,您应该从以下网址下载最新的 SDK 版本 link https://www.zkteco.eu/uploads/ftp/SDK/Standalone%20SDK-Ver6.3.1.34.rar
为避免故障排除,您应该注册 32 位版本而不是 64 位版本,并为 x86 体系结构编译您的应用程序。
为了注册 dll,将 32 位文件夹的内容复制到 c:\windows\system(如果您的计算机是 x64,则复制到 c:\windows\syswow64),然后使用管理员权限,在您刚刚复制 dll 的文件夹中的位置和 运行 以下命令:
regsvr32 zkemkeeper.dll
注册文件后,需要调整对这个dll的引用。 在 visual studio 中,删除您当前的引用并在受影响的项目中添加一个新引用。您将在 COM 选项卡的底部找到新注册的 dll。
添加引用后,您需要调整一个参数。 Select 引用并右键单击 -> 属性,它将打开属性 window.. 将 "Embed interop types" 设置为 false.
应该可以。