读取Sqlite转储中的单个语句

时间:2016-01-08 21:52:09

标签: sqlite

我有一个SQLite数据库,我想从转储中转储和读取单个语句。我遇到的问题是单个语句可以跨越多行。所以,我不能逐行读取转储文件。有没有办法更改.dump / .output命令的默认行分隔符?

1 个答案:

答案 0 :(得分:0)

func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! { if (annotation is MKUserLocation) { return nil } 命令始终使用换行符作为分隔符。

字符的任何组合(单个.dump除外)在字符串中有效,分号在触发器主体内有效。为了能够阅读单个语句,您必须实现SQL解析器。