我使用下面的代码从sqlite中的记录集中获取值:
let colSQL0 = sqlite3_column_text(compiledStatement, 0)
let value = String(cString: UnsafePointer<CChar>(colSQL0!))
工作正常,但现在在Swift 3中出现以下错误获取值:
error: 'init' is unavailable: use 'withMemoryRebound(to:capacity:_)' to temporarily
有什么建议吗?提前谢谢你......