English 中文(简体)
Refresh Database On Pic
原标题:Refresh Database On iPhone

我正试图将我的q子的最新版本推到我的装置上,迄今为止,除了每次重新命名外,没有找到其他办法。 左侧(附后)拷贝仍永久存放在装置上。

我理解,如何通过清理文件/申请文件夹将最新版本输入模拟器,但这似乎不会影响实物装置。

建议

最佳回答

如果数据库档案是您更新数据库时的必备部分。

如果该数据库不是 app的一部分,而是放在读物空间(如文件目录),那么你就需要执行自己的战略。

我包括一个图象——转换表——我的数据库:

create table schema_version (
  version integer not null
);

之后,我检查了目前的版本,然后看一看我的更新档案目录,以备更新。 因此,如果我的表象是4,Illeck for Update-schema-5.sql等。 (而且我重申,在我从更新的Sschema-N.sql档案中删除之前,这是必要的。)

请注意,电话线上方的笔记实照亮。 如果你需要更新200K数据库,那么你很可能需要说明某种方式,使用户在使用时能够随时使用。

我的评估采用混合办法,我们把我们的数据多数(60甲基溴)放在一个读到的数据库和一个较小的阅读标准数据库中,供用户捐助和贴切内容。

问题回答

你可以写出一个与老旧和新的支部相邻的文官X指挥线。 然后,将一台JSON物体(或XML)发送到所有增量,删除并更新,并将其应用于现有仓库。

您还可以将您的储存复印到文件夹上,然后从那里读到。 文件夹已经阅读/阅读/阅读,因此我认为,你可以把新的文件放在后面。 你们能够走这样的道路。

NSArray *arrayPaths = NSSearchPathForDirectoriesInDomains(
            NSDocumentDirectory,
            NSUserDomainMask,
            YES);

NSString *docDir = [arrayPaths objectAtIndex:0];




相关问题
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 ...

热门标签