MyMoneyTracker在Android操作系统上转储文件内容

MyMoneyTracker在Android操作系统上转储文件内容,android,sqlite,dump,database-dump,Android,Sqlite,Dump,Database Dump,很高兴见到你 我想备份数据库转储文件有一些特定的编码。这是sqlite3转储文件。与常规文本转储文件不同,它有许多^@和其他^符号,如^G或^H 是否可以在我的机器上通过独立的sqlite3创建生成类似的文件,以将其用作MyMoneyTracker中的备份?换句话说,用我自己的数据替换一个 转储文件中的第一个字符串: CREATE TABLE Budgets(_id integer primary key autoincrement,BudgetName text not null,OpenDa

很高兴见到你

我想备份数据库转储文件有一些特定的编码。这是sqlite3转储文件。与常规文本转储文件不同,它有许多^@和其他^符号,如^G或^H

是否可以在我的机器上通过独立的sqlite3创建生成类似的文件,以将其用作MyMoneyTracker中的备份?换句话说,用我自己的数据替换一个

转储文件中的第一个字符串:

CREATE TABLE Budgets(_id integer primary key autoincrement,BudgetName text not null,OpenDate integer not null,CloseDate integer not null    , CurrencyID int null)<81>^K^N^G^W^[^[^A<81>mtableHistoryHistory^PCREATE TABLE History (_id integer primary key autoincrement,ActionDate     integer not null, SQLQuery text not null)<81>Z^M^G^W^U^U^A<83>^WtableDebtDebt^OCREATE TABLE Debt (_id integer primary key autoincrement    ,Whom text not null,Type integer not null, AccountID integer not null, InitialBallance real not null,Date integer not null,Comments not     null)<81>^W^L^G^W;;^A<81>EtableAccountCurrecyAssigmentAccountCurrecyAssigment^NCREATE TABLE AccountCurrecyAssigment (AccountID integer n    ot null,CurrecyID integer not null)<81>%^K^G^W%%^A<82>^MtableExcangeRatesExcangeRates^MCREATE TABLE ExcangeRates (SourceCurrecyID intege    r not null,DestinationCurrencyID integer not null, ExchanageRate real not null)<81>^V
第三\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\(完)

转储文件中的另一个字符串:

CREATE TABLE Budgets(_id integer primary key autoincrement,BudgetName text not null,OpenDate integer not null,CloseDate integer not null    , CurrencyID int null)<81>^K^N^G^W^[^[^A<81>mtableHistoryHistory^PCREATE TABLE History (_id integer primary key autoincrement,ActionDate     integer not null, SQLQuery text not null)<81>Z^M^G^W^U^U^A<83>^WtableDebtDebt^OCREATE TABLE Debt (_id integer primary key autoincrement    ,Whom text not null,Type integer not null, AccountID integer not null, InitialBallance real not null,Date integer not null,Comments not     null)<81>^W^L^G^W;;^A<81>EtableAccountCurrecyAssigmentAccountCurrecyAssigment^NCREATE TABLE AccountCurrecyAssigment (AccountID integer n    ot null,CurrecyID integer not null)<81>%^K^G^W%%^A<82>^MtableExcangeRatesExcangeRates^MCREATE TABLE ExcangeRates (SourceCurrecyID intege    r not null,DestinationCurrencyID integer not null, ExchanageRate real not null)<81>^V

该文件是一个数据库文件,可能只是实际数据库的副本


您可以使用任何支持SQLite3数据库的工具打开,例如,或。

转储文件开头的正确位置是什么?@CL,我编辑了您问我的问题好的,我如何用新数据替换或更改它。