Initial commit

Initial commit
This commit is contained in:
Jaysyn904
2024-09-13 09:10:39 -04:00
parent 09dc8aec92
commit d1c309ae63
8437 changed files with 8727659 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/* 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 "" ; }