Alangara_PRC8/_module/nss/pf_aps_sql_inc.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

16 lines
440 B
Plaintext

/* Persistence Facade v1.1, by benton
*/
//================== APS compatibilty functions ===================//
// These are put in for APS compatibility
// As of PFv1.0, they return empty SQL sets
int SQL_ERROR = 0;
int SQL_SUCCESS = 1;
void SQLExecDirect(string sSQL) { }
int SQLFetch() {return SQL_SUCCESS; }
int SQLFirstRow() { return SQL_ERROR; }
int SQLNextRow() { return SQL_ERROR; }
string SQLGetData(int iCol) { return "" ; }