1.3.2 capturing data Flashcards
what are the capturing data methods?
- form
- OMR (optical mark recognition)
- OCR (optical character recognition)
- sensors
forms
- we collect the user inputs.
- organise the data in structured format
- commonly used in websites.
OMR
- detect marked areas on paper using special machines to read the marks.
- used for exams, lottery tickets and surveys.
- data is collected and entered automatically.
OCR
- convert printed or handwritten text into digital text.
- useful for digesting documents.
- assist in searching or editing text.
sensors
- sensors are devices that detect and respond to changes in the environment.
- it converts physical signals into digital signals/data.
- it automatically collects and transmit data, and real-time monitoring (provide up-to-the-minute information about a system or environment)
Selecting and managing data
between the database and the program/person using the program, there is a layer called a database management system. DBMS makes sure that a database is manipulated in a consistent way while ensuring accuracy and security.
methods of selecting and managing data:
SQL: SQL is a language used to select and update data using commands.
QBE: in QBE a user will have a graphical interface where required fields can be dropped, and also allowing the user to set up conditions to filter the result.
exchanging data
when exchanging data, it is preferable to use standard data format.
examples:
- SQL
- CVS
- XML
- JSON
SQL
SQL is used to transfer data from one system to another.
DTMS generate a sequence of SQL instructions that, when run on a DTMS receiver create relevant tables, relationship and insert data.
CVS
CVS is a simple way of exchanging data.
each field is separated by a comma which makes it easy to store and transfer.
XLM
XLM is a markup language that uses tags to designate (specify) what different things within the documents are. in the case of database, each record could be enclosed within tags, and inside those each field is enclosed within further tags.
JSON
JSON is a format that represent things as objects (within objects). in the case of database, each record is an object that can contain an array of objects that represent fields.
JSON is useful when sending data to a javascript program, as java script can read the data directly.