參數(shù)資料
型號(hào): PPSMMANUAL
英文描述: PPSMMANUAL
中文描述: PPSMMANUAL
文件頁(yè)數(shù): 50/187頁(yè)
文件大小: 1616K
代理商: PPSMMANUAL
第1頁(yè)第2頁(yè)第3頁(yè)第4頁(yè)第5頁(yè)第6頁(yè)第7頁(yè)第8頁(yè)第9頁(yè)第10頁(yè)第11頁(yè)第12頁(yè)第13頁(yè)第14頁(yè)第15頁(yè)第16頁(yè)第17頁(yè)第18頁(yè)第19頁(yè)第20頁(yè)第21頁(yè)第22頁(yè)第23頁(yè)第24頁(yè)第25頁(yè)第26頁(yè)第27頁(yè)第28頁(yè)第29頁(yè)第30頁(yè)第31頁(yè)第32頁(yè)第33頁(yè)第34頁(yè)第35頁(yè)第36頁(yè)第37頁(yè)第38頁(yè)第39頁(yè)第40頁(yè)第41頁(yè)第42頁(yè)第43頁(yè)第44頁(yè)第45頁(yè)第46頁(yè)第47頁(yè)第48頁(yè)第49頁(yè)當(dāng)前第50頁(yè)第51頁(yè)第52頁(yè)第53頁(yè)第54頁(yè)第55頁(yè)第56頁(yè)第57頁(yè)第58頁(yè)第59頁(yè)第60頁(yè)第61頁(yè)第62頁(yè)第63頁(yè)第64頁(yè)第65頁(yè)第66頁(yè)第67頁(yè)第68頁(yè)第69頁(yè)第70頁(yè)第71頁(yè)第72頁(yè)第73頁(yè)第74頁(yè)第75頁(yè)第76頁(yè)第77頁(yè)第78頁(yè)第79頁(yè)第80頁(yè)第81頁(yè)第82頁(yè)第83頁(yè)第84頁(yè)第85頁(yè)第86頁(yè)第87頁(yè)第88頁(yè)第89頁(yè)第90頁(yè)第91頁(yè)第92頁(yè)第93頁(yè)第94頁(yè)第95頁(yè)第96頁(yè)第97頁(yè)第98頁(yè)第99頁(yè)第100頁(yè)第101頁(yè)第102頁(yè)第103頁(yè)第104頁(yè)第105頁(yè)第106頁(yè)第107頁(yè)第108頁(yè)第109頁(yè)第110頁(yè)第111頁(yè)第112頁(yè)第113頁(yè)第114頁(yè)第115頁(yè)第116頁(yè)第117頁(yè)第118頁(yè)第119頁(yè)第120頁(yè)第121頁(yè)第122頁(yè)第123頁(yè)第124頁(yè)第125頁(yè)第126頁(yè)第127頁(yè)第128頁(yè)第129頁(yè)第130頁(yè)第131頁(yè)第132頁(yè)第133頁(yè)第134頁(yè)第135頁(yè)第136頁(yè)第137頁(yè)第138頁(yè)第139頁(yè)第140頁(yè)第141頁(yè)第142頁(yè)第143頁(yè)第144頁(yè)第145頁(yè)第146頁(yè)第147頁(yè)第148頁(yè)第149頁(yè)第150頁(yè)第151頁(yè)第152頁(yè)第153頁(yè)第154頁(yè)第155頁(yè)第156頁(yè)第157頁(yè)第158頁(yè)第159頁(yè)第160頁(yè)第161頁(yè)第162頁(yè)第163頁(yè)第164頁(yè)第165頁(yè)第166頁(yè)第167頁(yè)第168頁(yè)第169頁(yè)第170頁(yè)第171頁(yè)第172頁(yè)第173頁(yè)第174頁(yè)第175頁(yè)第176頁(yè)第177頁(yè)第178頁(yè)第179頁(yè)第180頁(yè)第181頁(yè)第182頁(yè)第183頁(yè)第184頁(yè)第185頁(yè)第186頁(yè)第187頁(yè)
7-4
DataDatabase Management
Programmer’s Manual
DBReadTotalNumberRecords(gAddBkDBaseID, &numRec);
}
7.4
Searching and Retrieving Data
The following example uses the database created from Example 7-1, and
searches for a particular record using a formatted data field as the key. It is good
programming practice to check the returned status of the call DBSearchData()
ensuring that a match is found before using the recID returned for subsequent
operation.
Example 7-2 Search a database record list using a formatted data field and
retrieve record data
/* Global database identifier */
U32 gAddBkDBaseID;
/* This is the search key */
TEXT grec1FName[4]={’K’,’e’,’n’,0};
STATUS searchRec(void)
{
STATUS ret;
U32 recID;
/* Pointers to the formatted data field to be read out */
P_TEXT tempLname, tempFname, tempPhone, tempAddress;
/* Search for a record in the record list with the DB_FIRST
formatted data field matching the key string grec1FName */
ret = DBSearchData(gAddBkDBaseID,DB_FIRST,grec1FName,&recID);
if (ret != PPSM_OK) return (-1); /* Search unsuccessful! */
/* recID now is the record which match the search key */
/* We can now access the data contained in the record via recID */
DBReadData(gAddBkDBaseID, recID, DB_LAST, &tempLname);
DBReadData(gAddBkDBaseID, recID, DB_FIRST, &tempFname);
DBReadData(gAddBkDBaseID, recID, DB_HOME, &tempPhone);
DBReadData(gAddBkDBaseID, recID, DB_ADDRESS, &tempAddress);
/* tempLname, tempFname, tempPhone, tempAddress now points to
data field stored in the record identified by recID */
} /* end searchRec() */
7.5
Navigating along a Record List
The following example uses the record list navigation tools to access record
sequentially. It is assumed that a database with the identifier gAddBkDBaseID has
already existed. Initially, the first record ID in the record list is retrieved. Then a
while loop is set up to access record in the list sequentially. Termination of the loop
is by using the botFlag passed to the routine DBGetNextRecID(). When this flag is
set to 1, it signifies that the current record is the last record of the record list.
Example 7-3 Use the record list navigation tools to access record sequen-
tially
/* Global database identifier */
U32 gAddBkDBaseID;
STATUS seqAccessofRec(void)
{
U32 RecId,nextRecId;
S32 srchToken = 1;
U16 botFlag = 0;
P_TEXT stdDataOut;
Personal Portable System Manager
Programmer’s Manual
7-5
STATUS ret;
/* Get the first record ID for the database */
ret = DBGetFirstRecID(gAddBkDBaseID, &RecId);
/* Check if the database record list is empty */
if (ret == PPSM_ERROR) return(-1);
/* Read back data */
DBReadData(gAddBkDBaseID, RecId, DB_FIRST, &stdDataOut);
.
/* Do something here */
.
/* Get next record */
while(srchToken)
{
DBGetNextRecID(gAddBkDBaseID, RecId, &nextRecId, &botFlag);
/* The RecId passed is already at the end of list, exit loop */
if(botFlag == 1){ srchToken = 0; break;}
/* Read back data */
DBReadData(gAddBkDBaseID, nextRecId, DB_FIRST, &stdDataOut);
.
/* Do something here */
.
/* Continue search */
RecId = nextRecId;
} /* end while (srchToken) */
} /* end of seqAccessofRec() */
F
Freescale Semiconductor, Inc.
For More Information On This Product,
Go to: www.freescale.com
n
.
相關(guān)PDF資料
PDF描述
PPT005-1G-WW-2V-FE DRUCKWANDLER
PPT020-1A-WF-2V-FE DRUCKWANDLER
PPT100-1A-WN-2V-FE DRUCKWANDLER
PPT100-1G-WN-2V-FE DRUCKWANDLER
PPT500-1G-WN-2V-FE DRUCKWANDLER
相關(guān)代理商/技術(shù)參數(shù)
參數(shù)描述
PPSN815 制造商:Pyle 功能描述:10 ft Eight Channel RCA Phono Snake Cable
PPST2 制造商:Amphenol Audio 功能描述:
PP-ST-50MM 制造商:Black Box Corporation 功能描述:PRE-POLISHED ST CON 50 MIC MM BLACK 12PAK
PP-ST-SM 制造商:Black Box Corporation 功能描述:PRE-POLISHED ST CON SM BLUE 12PAK
PPST-SP 制造商:Duratool 功能描述:Self Tapping Screw Kit-Panhead (Size 6-10)