Click here to Skip to main content
15,891,431 members

Comments by Stan Huang (Top 85 by date)

Stan Huang 26-Sep-23 0:09am View    
What function does '@' play in "NSLog(@"Failed to execute the query %d",result);" statement?
Stan Huang 11-May-23 0:15am View    
I am still got confused about the meaning of thme. Take the 1st sample, "iRet = sqlite3_prepare_v2(pDB, "SELECT " SZ_KEY_PATH" FROM
"SZ_KEY_REPORT" " "WHERE " SZ_KEY_STARTTIME "< :" SZ_KEY_NAME ,
-1, &pStmt, NULL);"
Since SZ_KEY_NAME is defined as 'name' and SZ_KEY_STARTTIME is defined as 'starttime', so what does
"where starttime < :name" means? ':name' means the value gotten from 'name' column?
Stan Huang 22-Nov-22 4:58am View    
So, I still don't understand what 'scan.cgi?scan=1' means at statement "newAJAXCommand('scan.cgi?scan=1');". Could you explain them?
Stan Huang 22-Nov-22 4:55am View    
Yes, I have access to the server, which is an embedded system.
Stan Huang 3-Feb-21 6:40am View    
I'm considering building both (C# application / C++ DLL) in 64-bit. I built the 64-bit application successfully. But I failed to do it for DLL. I changed its property page's Target Machine option to x64, then re-built it. I got the error: "fatal error LNK1112: module machine type 'x86' conflicts with target machine type 'x64'"
How come? What should I do to build a 64-bit DLL?