문제

I want to get a long longdata type value from sqlite3 in iOS from some table.

If I want get the standard int value I currently use the sqlite3_column_int(statement, 1) function.

But how can I get a larger value if I save there a long long data type?

도움이 되었습니까?

해결책

You can use sqlite3_column_int64().

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top