English 中文(简体)
删除档案和数据库的相应条目
原标题:Deleting files and corresponding entries from database

我有一个处理档案管理的网站。 用户可上载档案,添加说明、编辑和删除。 这种情景的最佳做法是什么?

  1. 在档案系统中储存档案。

  2. 我应如何处理删除档案的问题? 在这种情况下,我不得不删除:档案和输入数据库。 第一,我删除档案,如果没有错误,我删除数据库中的条目。 但是,如果能够删除数据库的条目,我就不能恢复我的档案。 因此,第二种情况是不公开的:首先从数据库进入,然后存档。 但同样,如果档案不能删除,我就不能恢复 d的条目。 哪一种办法更好? 或者是否有其他?

我认为,这一问题对于所有网络方案拟订语言和所有数据库引擎都是普遍的。 但我要说,我有MySQL和PHP,因此不可能从数据库储存程序的水平删除档案。

最佳回答
问题回答

这是一种可能性。

您首先可将档案移至删除的夹,然后删除数据库中的条目。 如果失败,从删除的夹中恢复档案。

为删除删除的夹中的档案,在删除数据库的条目之后也这样做。 如果失败,你将孤儿档案放在一个删除的夹中...... 根据你的要求,这也许不是一个问题。

另一种选择是发出电话(可能寄上End会议或服务),清理数据库。

我将亲自确保数据库具有优先地位,因为它对该系统更为重要。 因此,一是确保灯泡被删除,然后删除档案。 如果删除档案的工作失败,即无声失职。 因此,如果所有档案都有其编目对口单位,如果未标明应予删除,则我将对所有档案进行核查,以便系统保持干净和一致。

垃圾收集阶段往往存在,事实上,你的数据库也有类似的称为“交易记录”,可以用来减少交易或推进交易。

在您的档案中,删除你将有一个定期的清理过程(如发生坠毁时,或经常自动进行),将磁盘上的内容与数据库中的内容进行比较,并进行适当的更正。

为使任何行动都成为“住所”,在发生坠毁事件时必须采用清理方法。 关键在于找到一种方法,以便始终如一地清理,从而在“住所”作业的任何时间都不会使该系统无法收回。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签