Rune_PRC8/_module/nss/pf_aps_sql_inc.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -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 "" ; }