iOS SQLite3 sqlite3_column_text

2019独角兽企业重金招聘Python工程师标准>>> hot3.png


const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);


    其中参数iCol为列的序号,从0开始。如果返回值有多行,则可以再次调用sqlite3_step函数,然后由sqlite3_column_*函数取得返回值。


例如:

"SELECT ID, KEEP1 FROM COLLECTION ORDER BY ID"

返回的值有ID, KEEP1

使用sqlite3_column_text(sqlite3_stmt*, int iCol);的时候,iCol = 0是返回ID,iCol =1是返回KEEP1.

转载于:https://my.oschina.net/kevinvane/blog/152395

你可能感兴趣的:(iOS SQLite3 sqlite3_column_text)