SQLite

SQLite is a self-contained SQL database engine. This means there is no serverinvolved. SQLite runs while your game is running and you write code to connectto the database and manipulate its contents. This is by no means a comprehensiveguide, in fact, we cover 1% of what SQLite can do for you. Please read theirwebsite for a lot more detail as to what functionality SQLIteoffers developers.

Getting Started.

In-order to use SQLite you must download it and add it to your project. Pleasesee the SQLite Downloads page for more details.For our purposes you will just need sqlite.h and sqlite.c in your project.Add these files to your environment and make sure they are part of your build process.

How Does SQL Work In A Game?

Now that you have SQLite you must understand how using a database in your appworks. There isn't any automatic benefit, unless you code it. There are no wizardsand no functionality for free. This is hand coded, by you, to meet your specificneeds. Generally speaking, you will need to evaluate the following:

  • Does your database already exist?

    • Yes? Connect to it.
    • No? Create it, probably using create table queries. Then connect to it.
  • Are you connected to the database?

    • Yes? Issue queries against it to achieve your goals.
    • No? Connect to it, then issue queries against it to achieve your goals.
  • Do you need to update your database based upon player achievements?

    • Yes? Run insert/update queries to change the database.
    • No? Probably select queries are enough to use the database to drive your gameplay.
  • Is the player done with your game?

    • Yes? Make sure to close the database when your game exists. Failure to do somay corrupt your database and make it unusable.

      Basic Database Creation And Manipulation

Let's cover how to create a simple database, connect to it and then manipulate it.

Creating A Simple Database

In order to use your database, it must exist. SQLite is file based. Simplycreating a new file to house your database is sufficient. Notice that we use a.db file extension to help notate that this is indeed our database. It is alsoimportant to understand where the database lives on the players device. When youcreate the database it must be put in a location that the device allows the playerto write data to. Cocos2d-x helps make this easy with a file system API calledgetWriteablePath(). Here is an example:

  1. sqlite3* pdb;
  2. pdb = NULL;
  3. std::string dbPath = cocos2d::FileUtils::getInstance()->getWritablePath() + "mydatabase.db";
  4. int result = sqlite3_open(dbPath.c_str(), &pdb);
  5. if(result == SQLITE_OK)
  6. std::cout << "open database successful!" << std::endl;
  7. else
  8. std::cout << "open database failed!" << std::endl;

With the database open, you can now use it.

Creating A Table

Databases use tables to store data. You need at least one table in your database.The caveat is that you must know what data your table will contain in-order to createit. You can always use the SQL alter table command if at a later tine you need tomodify your tables structure. This is outside the scope of this document, however.Creating a simple table:

  1. int result = 0;
  2. std::string sql;
  3. sql = "create table " +
  4. std::string("Master") +
  5. std::string(" (id TEXT PRIMARY KEY, value INT);");
  6. result = sqlite3_exec(pdb, sql.c_str(), NULL, NULL, NULL);
  7. if(result == SQLITE_OK)
  8. {
  9. // table created successfully
  10. }
  11. else
  12. {
  13. // table was NOT created successfully
  14. }

Querying Data

When you want information from your database you must execute a select query toget it. A select query is a read-only query. You don't have to worry aboutaccidentally modifying your game data when running these types of queries. An exampleselect query;

  1. std::string key = "Brown";
  2. std::string sql = "SELECT NAME " +
  3. std::string(" FROM ") +
  4. std::string("Master") +
  5. std::string(" WHERE id='") +
  6. std::string(key.c_str()) +
  7. std::string("' LIMIT 1;");
  8. sqlite3_stmt* statement;
  9. if (sqlite3_prepare_v2(&pdb, sql.c_str(), -1, &statement, 0) == SQLITE_OK)
  10. {
  11. int result = 0;
  12. while(true)
  13. {
  14. result = sqlite3_step(statement);
  15. if(result == SQLITE_ROW)
  16. {
  17. // do something with the row.
  18. }
  19. else
  20. {
  21. break;
  22. }
  23. }
  24. }

Inserting Data

You may need to insert data into your database to use again at a later time. Usean insert query to do this. Example:

Updating Data

Closing The Database

原文: http://docs.cocos.com/cocos2d-x/manual/zh/advanced_topics/sqlite.html