Ejemplo n.º 1
0
 public void DeleteByHostId(int HostId)
 {
     m_SqliteOpera.DeleteData("delete from host_tag where host_id=" + HostId);
 }
Ejemplo n.º 2
0
 public void DeleteByTagName(string tagName)
 {
     m_SqliteOpera.DeleteData("delete from tag where name='" + tagName + "'");
 }