answersLogoWhite

0


Best Answer

A form can be created to show just a single record.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which database object displays a window with a single record?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Accounting

What is a data base record?

A database record is a row of data. The row contains fields that are arranged in columns. Each field contains a single piece of information.


What is the difference between object based model and record based model?

Object Model: deals with object oriented "blue-print" of your system. This includes, class diagrams (classes you will be creating), relationship between these classes, methods in the classes, properties etc. Data model: deals with entities at the database level. Like how the classes in the OM will get stored in the database, in which tables etc. So DM deals with Table schema, relationship between different tables (PKs, FKs) etc. Example: DM does not have complex OO features like polymorphism, inheritance, overloading etc which are usually listed in an OM. As a rough example, two classes in the OM can get stored (mapped) to a single Table in the DM, like both Employee and Manager persons can be stored in a single DB table.


Which database application is better for one time operating business either single user or multiple user?

Access is a great database application that can be used for both single and multiple uses of a one time operating business.


What is an example of flat file database?

A spreadsheet is one example. All the data is in a single table.


What are the advantages of using Access for a database?

It's cheap. Access consists of a decent scripting language on the front end coupled with a lightweight database engine on the back end. It is not scalable, and doesn't work well for more than a single user. What it does have as a benefit is the controlling language and the set of database drivers that allow the scripting language, and many other applications, to talk to the database easily and with a minimum of programming. If the drivers and scripting language are coupled with a well-built database engine, it can be quite useful.

Related questions

What can you treat a range of data as a distintinct object in a Excel worksheet?

A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.A range can be named and then it is simpler to treat it as a single object. It could also be a table, or a record or field in a database when you have one set up in Excel.


How a developer of a relational database refers to a record?

A developer of a relational database refers to a single row of data as a "record." This record contains all the information related to a specific entity or object in the database.


What is detailview in asp.net?

The DetailsView control in ASP.Net is used to create an HTML table that displays the contents of a single database record. It is data bound control.


What is all of the fields for a single database entity?

Record


Is a table a collection of records for a single object?

A table in a database contains a collection of records (or rows). Each record contains one or more fields (or columns).


What is all of the fields for a single database entity called?

Record


Any large single block of data stored in a database such as a picture or sound file which does not include record fields and cannot be directly searched by the databases search engine?

A binary large object (BLOB) is a data type used to store large amounts of binary data in a database, such as images or audio files. BLOBs are typically indexed but are not directly searchable by the database search engine, as they are stored as a single entity rather than separate fields. To retrieve or access the contents of a BLOB, you typically need to reference it using its identifier.


How is and order form the same as a record in a database?

Each Order Form consists of a number of 'Boxes' which are completed to record individual pieces of information about a single order. Each Record in a database order table consists of a number of fields which are used to store individual pieces of information about a single order If you have a filing cabinet filled with lots of Order Forms this is like the Order Table in the database which stores lots of Order Records.


What is data base record?

A database record is a row of data. The row contains fields that are arranged in columns. Each field contains a single piece of information.


What is a data base record?

A database record is a row of data. The row contains fields that are arranged in columns. Each field contains a single piece of information.


You wants to print a single record in crystal report using vb6 but you don't where and how you write query to retreive single from database?

In Crystal Reports, you can write the query directly in the report designer. In the "Database Expert" window, right-click on "Add Command" and write your SQL query to retrieve the single record. After defining the query, you can link it to your report elements to display the data accordingly. Using VB6, you can then call the Crystal Report Viewer to display the report with the single record retrieved from the database.


Explain the concept of database record and recordset?

A database record is a single row in a database. A recordset (or cursor) represents a query, and looks like (part of) a record or row. It is actually a row of the query, or virtual table representing the query. When you submit a query that returns data, you create a recordset and the database fills it in with the first record that matches the predicate clause. You do what you need to do with that data. When you need the next record, you fetch the next row, and so on and so forth. Some recordsets represent more than one row at a time. That is up to the database and your program design, but the concept is the same - the recordset is all or part of the resultset from the query.