能力值:
( LV7,RANK:140 )
|
-
-
2 楼
似乎只能通过回调函数累加
|
能力值:
( LV5,RANK:65 )
|
-
-
3 楼
哎实在是太麻烦了 不过可以通过这个sqlite3_column_count 但是sql语句要换一下。
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
CppSQLite3了解一下咯
|
能力值:
( LV3,RANK:20 )
|
-
-
5 楼
这么写:
sql.Format("select 张三,李四 from Scanner where IP = '%s'",IP) ; localRecordsetPtr = GetRecord(sql);
localRecordsetPtr->MoveFirst();
if(!localRecordsetPtr->adoEOF) { if(localRecordsetPtr->Fields->GetItem("张三")->GetValue().vt==VT_NULL) dbSetupVRV = 0; else dbSetupVRV = localRecordsetPtr->Fields->GetItem("张三")->GetValue();
}
|
能力值:
( LV2,RANK:10 )
|
-
-
6 楼
select count(*) as personCount from person where name = '张三'
|
|
|