我有一个为Android构建的Unity项目,该项目使用SQLite数据库。但是,当我将平台切换到UWP时,出现以下错误:
Reference to type 'Component' claims it is defined in 'System', but it could not be found
Reference to type 'ICloneable' claims it is defined in 'mscorlib', but it could not be found
我读到这是因为SQLite库与UWP不兼容。因此,我无法使用System.Data
和Mono.Data.SQLite
。
我唯一能找到的解决方案是按照此链接使用SQLite4Unity3D
:
https://github.com/codecoding/SQLite4Unity3d
但是有了这个,我无法在Read()
中找到DataReader
函数的替代品,以逐行读取数据。
对此的最佳解决方案是什么?