Changes in server/DataAccess.cpp [b128109:60017fc] in network-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/DataAccess.cpp
rb128109 r60017fc 81 81 } 82 82 83 if ( ( row = mysql_fetch_row(result)) != NULL ) 83 if ( ( row = mysql_fetch_row(result)) != NULL ) { 84 cout << "Creating a new player" << endl; 84 85 p = new Player(string(row[1]), string(row[2])); 85 else {86 }else { 86 87 cout << "Returned no results for some reason" << endl; 87 88 p = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.