Changeset b128109 in network-game for server/DataAccess.h
- Timestamp:
- Jan 29, 2013, 7:34:29 PM (12 years ago)
- Branches:
- master
- Children:
- 60b77d2
- Parents:
- 5806dc2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/DataAccess.h
r5806dc2 rb128109 3 3 4 4 #include <string> 5 #include <list> 5 6 6 7 #include <mysql/mysql.h> … … 16 17 17 18 int insertPlayer(string username, string password); 19 int updatePlayer(string username, string password); 18 20 19 Player *getPlayer(string username); 20 int printPlayers(); 21 Player* getPlayer(string username); 22 list<Player*>* getPlayers(); 23 bool verifyPassword(string encrypted, string password); 21 24 22 25 int insert(string table, string rows, string values); 26 int update(string table, string values, string where); 23 27 MYSQL_RES *select(string table, string filter); 24 28
Note:
See TracChangeset
for help on using the changeset viewer.