Problem to use UnsafePointer<Int8>

Hello friends.


I tried write the below line on swift 3:


let text = UnsafePointer<Int8>(sqlite3_column_text(statement, index))


But I have this error:

'init' is unavailable: use 'withMemoryRebound(to:capacity:_)' to temporarily view memory as another layout-compatible type.


I thinh that Tthis error is about UnsafePointer<Int8>

How cain I fix it?

Problem to use UnsafePointer&lt;Int8&gt;
 
 
Q