You know, something similar is happening to me, but when I replace the item in the iteminfo it says another ID, and another, happened 3 times.you dont need some query to delete it, if you change your iteminfo and deleted that item id from the iteminfo, just make some random item with that id, just copy i dont know, the row from the item id 1 and paste it on the id 2577, then u can log in and delete it without problem
char g_key[9] = "19800216";
int Encrypt(char* buf, int len, const char* pwd, int plen)
{
int i;
for(i = 0;i<plen;i++)
{
buf[i] = pwd[i] + g_key[i%8];
}
return i;
}