创建 BREW 应用程序的方法

【转】:http://www.joymo.cn/Html/articles/release_37_004918.html

数据库技术作为一种对信息管理的高效方式,逐渐在业界占据了重要的地位,可以说目前任何类型的IT产品,都或多或少的采用了数据库技术,数据库产品无所不入。

  BREW作为无线开发环境也提供了数据库技术。那么下面我就对数据库技术作一下分析:

  BREW数据库是一种简单的关系型数据库,无多任务,无多用户,多记录。它提供给开发者三个接口:IDBMgr,IDatabase,IDBRecord。

  IDBMgr接口用于创建、打开、和删除数据库。IDatabase接口用户创建和访问数据库中的记录。IDBRecord接口用户访问、更新数据库记录中的域。

  下面是一些常用的数据库操作:

  1、创建新数据库

  代码:

IDBMgr * pIDBMgr = NULL;
IDatabase * pIDatabase = NULL;
boolean bCreate = TRUE;

ISHELL_CreateInstance(pIShell, AEECLSID_DBMGR, (void **)&pIDBMgr);
if (pIDBMgr == NULL)
return;

if ((pIDatabase = IDBMGR_OpenDatabase (pIDBMgr, pszFile, bCreate)) == NULL)
{
// Opened an already existing database.
}
else
{
// Create an database.
}

  2、打开数据库

  代码:

IDBMgr * pIDBMgr = NULL;
IDatabase * pIDatabase = NULL;
boolean bCreate = FALSE;

ISHELL_CreateInstance(pIShell, AEECLSID_DBMGR, (void **)&(*pIDBMgr));
if (pIDBMgr == NULL)
return;

if (((*pIDatabase) = IDBMGR_OpenDatabase ((*pIDBMgr), pszFile, bCreate)) == NULL)
{
// Opened an already existing database.
}
else
{
// Opened an database.
}



  3、关闭数据库

  代码:

// IDATABASE_Release closes the open database files, and frees
// any memory associated with the database.
if (pIDatabase)
{
IDATABASE_Release (pIDatabase);
}

// Release IDBMgr object. This step needs to be done
// only if no further use of the IDBMgr object is needed.
if (pIDBMgr)
{
IDBMGR_Release (pIDBMgr);
}


  4、创建一条记录

  代码:

boolean CreateOneRecord(IDatabase * pIDatabase, AEEDBField * dbField, int nNumfields)
{
IDBRecord * pIDBRecord = NULL;

// IDATABASE_CreateRecord: creates a new database record with the fields
// specified by pDBFields.
if ((pIDBRecord = IDATABASE_CreateRecord (pIDatabase, dbField, nNumfields)) != NULL)
{
// Successfully created a database record.

// Release record
IDBRECORD_Release (pIDBRecord);

return TRUE;
}
else
{

//Create DB Record Failed
}

return FALSE;
}


  dbField指向数据库记录域,nNumfields是域的个数。可以创建一个这样的记录:

  代码:

{
AEEDBField dbField[3];
int nNumfields = 3;
const char firstName [] = "John";
const char lastName [] = "Smith";
const char address [] = "123 First Street, USA";
AEEDBFieldType fieldType;
AEEDBFieldName fieldName;

// Data fill values used to create a database record.
// The parameter dbField is a three item array of type
// AEEDBField. Each array item corresponds to three fields
// of the record.
dbField[0].fName = AEEDBFIELD_FIRSTNAME;
dbField[0].fType = AEEDB_FT_STRING;
dbField[0].pBuffer = (void *)firstName;
dbField[0].wDataLen = STRLEN (firstName);

dbField[1].fName = AEEDBFIELD_LASTNAME;
dbField[1].fType = AEEDB_FT_STRING;
dbField[1].pBuffer = (void *)lastName;
dbField[1].wDataLen = STRLEN (lastName);

dbField[2].fName = AEEDBFIELD_ADDRESS;
dbField[2].fType = AEEDB_FT_STRING;
dbField[2].pBuffer = (void *)address;
dbField[2].wDataLen = STRLEN (address);

return CreateOneRecord(pIDatabase, dbField, 3);
}


  5、获取记录个数

  代码:

uint32 GetRecordCount(IDatabase * pIDatabase)
{
// IDATABASE_GetRecordCount: returns the number of records in the
// database specified. This gives the number of records in the
// database prior to creating any records in the database.
return IDATABASE_GetRecordCount (pIDatabase);
}


  6、读取记录域

  代码:

boolean GetRecordByID(IDatabase * pIDatabase, uint16 u16RecID)
{
IDBRecord * pIDBRec1 = NULL;
AEEDBFieldType fType;
AEEDBFieldName fName;
uint16 fLen;
byte * data = NULL;;

// This will reset the record Index to 0.
IDATABASE_Reset (pIDatabase);

// IDATABASE_GetRecordByID: returns a pointer to the record whose
// record ID is specified.
pIDBRec1 = IDATABASE_GetRecordByID (pIDatabase, u16RecID);

// Get the raw data of the field
for(;;)
{
// Get record 1 first field and display it
fType = IDBRECORD_NextField (pIDBRec1, &fName, &fLen);

data = IDBRECORD_GetField (pIDBRec1, &fName, &fType, &fLen);
if (data != NULL)
{
switch(fName)
{
case AEEDBFIELD_FIRSTNAME;
break;
case AEEDBFIELD_LASTNAME;
break;
case AEEDBFIELD_ADDRESS;
break;
default:
break;
}
}
else
{
break; //break for
}
}

// Now remove record 1.
IDBRECORD_Release(pIDBRec1);
return TRUE;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值