我有一个SQLite数据库,我想从转储中转储和读取单个语句。我遇到的问题是单个语句可以跨越多行。所以,我不能逐行读取转储文件。有没有办法更改.dump / .output命令的默认行分隔符?
答案 0 :(得分:0)
func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
if (annotation is MKUserLocation) {
return nil
}
命令始终使用换行符作为分隔符。
字符的任何组合(单个.dump
除外)在字符串中有效,分号在触发器主体内有效。为了能够阅读单个语句,您必须实现SQL解析器。