US8700646B2 - Reference file for formatted views - Google Patents

Reference file for formatted views Download PDF

Info

Publication number
US8700646B2
US8700646B2 US12/540,056 US54005609A US8700646B2 US 8700646 B2 US8700646 B2 US 8700646B2 US 54005609 A US54005609 A US 54005609A US 8700646 B2 US8700646 B2 US 8700646B2
Authority
US
United States
Prior art keywords
data
database
layout
data record
record
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active, expires
Application number
US12/540,056
Other versions
US20110040747A1 (en
Inventor
Vladimir Brad
Christopher Crim
David McKee
Stephen Iremonger
Toufic Milan
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Apple Inc
Original Assignee
Apple Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Apple Inc filed Critical Apple Inc
Priority to US12/540,056 priority Critical patent/US8700646B2/en
Assigned to APPLE INC. reassignment APPLE INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BRAD, VLADIMIR, MILAN, TOUFIC, CRIM, CHRISTOPHER, IREMONGER, STEPHEN, MCKEE, DAVID
Publication of US20110040747A1 publication Critical patent/US20110040747A1/en
Application granted granted Critical
Publication of US8700646B2 publication Critical patent/US8700646B2/en
Active legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/80Information retrieval; Database structures therefor; File system structures therefor of semi-structured data, e.g. markup language structured data such as SGML, XML or HTML
    • G06F16/84Mapping; Conversion

Definitions

  • This disclosure relates generally to database applications.
  • Many modern database application programs include a query engine with a formatting tool.
  • a user can use the query engine to build queries to retrieve data from the database, and use the formatting tool to display the data in a report in various formats.
  • the queries and formatting information can be saved in the database application program.
  • a conventional database application program reruns the query to retrieve data, reformats the retrieved data, and redisplays the result.
  • the query can be complex and the data in the database may have been changed (e.g., a new record can be inserted into the database).
  • a database application program can generate a result set using one or more queries.
  • the result set can contain actual data from a database and metadata.
  • the metadata can contain references to data records in the database, the references can include identifiers that can identify the data records.
  • the result set can be saved as a reference file.
  • the database application program opens the saved reference file, the database application program can reproduce the result set using the stored references without running all of the queries.
  • a reference file can capture records in the result set that are not results of a direct query (e.g., records manually added to the result set).
  • the reference file can increase the likelihood that a formatted view reproduced later using the reference file contains the same records as the current formatted view.
  • Reproducing a formatted view using a reference file rather than a query set can be more efficient when the database is large or when the query set contains complex queries that take a long time to execute.
  • the reference file can contain references rather than actual code for queries, therefore can be compact and easily transportable (e.g., through email).
  • a recipient of the reference file can reproduce the formatted view using a lightweight database application (e.g., an application that includes a light-weight database engine), without having to run complex queries.
  • FIGS. 1A and 1B illustrate a comparison between a conventional database application program and a database application program using reference file techniques.
  • FIG. 2 illustrates exemplary implementations of reference file techniques for multi-part result sets.
  • FIG. 3 illustrates exemplary techniques for directly referencing database records.
  • FIG. 4 is a flowchart illustrating an exemplary process for creating, transmitting, and opening of reference file techniques.
  • FIG. 5 is a flowchart illustrating an exemplary process for creating a formatted view using a reference file.
  • FIG. 6 is a block diagram of an exemplary system architecture for implementing the features and operations described in reference to FIGS. 1-5 .
  • FIGS. 1A and 1B illustrate a comparison between a conventional database application program and a database application program using reference file techniques.
  • the exemplary implementations will be described with respect to a database reporting system that runs the application program, and a user using a database application program.
  • the database reporting system can permit the user to view formatted data through an application program instead of directly accessing raw data stored in a database.
  • a database application program can include various components, such as a query engine (for retrieving data from the database), a layout editor (for creating and editing layout for formatting data), and a formatting engine (for formatting and displaying the data using the layout).
  • a user who is a database application developer can create a database application program, which can be run as a database application by the database reporting system, in a way similar to an operating system running an executable. An end user can create reports for viewing and printing using the database reporting system.
  • FIG. 1A illustrates a conventional database application program.
  • a user creates database application program 120 a for database 102 .
  • Database application program 120 a running on the database reporting system.
  • Database application program 120 a can contain one or more query sets 122 a for querying database 102 , and layout 124 for formatting data retrieved from database 102 .
  • Query set 122 a can retrieve records from database table 104 through database connection 126 a .
  • data records e.g., data records 108 , 112 , and 114
  • the result of query set 122 can be stored in result set 130 a , which can contain retrieved database records 108 , 112 , and 114 from database 102 .
  • result set 130 a can be transient.
  • result set 130 a can exist in memory as long as a display window of the database application tool is open.
  • the database reporting system can use layout 124 a to format result set 130 a to create formatted view 140 a , which can include, for example, header 142 a , body 144 a that includes formatted database records 108 , 112 , and 114 , and footer 146 a.
  • Database application program 120 b can include query set 122 b and layout 124 b , which can be identical to query set 122 a and 124 a .
  • the database reporting system can execute database report 120 b against database 102 . At runtime, the database reporting system can open a new database connection 126 b .
  • the query set can retrieve records and store the retrieved records in result set 130 b.
  • result set 130 b contains the same records (e.g., database records 108 , 112 , and 114 ) as result set 130 a . Because result set 130 a can be transient, the content in result 130 a is not saved. Between the executions of database application programs 120 a and 120 b , new records can be inserted into database table 104 . Some fields of existing records in database table 104 can change (e.g., a sales number may be revised to go up). As a result, database records 106 and 110 , which did not satisfy selection criteria defined in query set 122 a when database application program 120 a was executed, can satisfy selection criteria defined in query set 122 b when database application program 120 b was executed.
  • database records 106 and 110 which did not satisfy selection criteria defined in query set 122 a when database application program 120 a was executed, can satisfy selection criteria defined in query set 122 b when database application program 120 b was executed.
  • result set 130 b can contain data records 106 , 108 , 110 , 112 , and 114 .
  • the database reporting system can use layout 120 b to format result set 130 b , creating formatted view 140 b .
  • Formatted view 140 b can have the same general look and feel of formatted view 140 a .
  • header 142 b and footer 146 b can be substantially identical to header 142 a and footer 146 a .
  • body section 144 b can be different from body section 144 a.
  • FIG. 1B illustrates database application program 120 c implementing reference file techniques.
  • Database application program 120 c can contain query set 122 c and layout 124 c .
  • Database application program 120 c can also contain state information, which can track how a report is being viewed by a user.
  • the state information which can be saved with database application program 120 c or separately, can include one or more current data viewing states.
  • Data viewing states can include indicators of viewing mode, active data record (e.g., a record being edited), current view page, etc.
  • one or more queries in query set 122 c can access database table 104 and retrieve database records 108 , 112 , and 114 .
  • Retrieved database records 108 , 112 , and 114 can be stored in result set 130 c .
  • Result set 130 c can be a found set.
  • a found set can include a set of records in database table 104 that are made active by a find request. When all records are found, the found set can include all records in the entire table 104 .
  • Result set 130 c can contain data field values 134 from database records 108 , 112 , and 114 (e.g., values of database fields).
  • result set 130 c can contain record identifications 132 .
  • Record identifications 132 need not be explicitly retrieved by query 122 c , but can be included by the system as a separate and hidden data structure in result set 130 c .
  • record identifications 132 can include internal record identifiers that reference database records 108 , 112 , and 114 . These internal record identifiers can be provided at system level, e.g., as physical address of the data records.
  • record identifiers can be values in a database field that uniquely identifies a record in database table 104 (e.g., an “ID” field), it is not necessary that the record identifiers are stored in a particular database field.
  • the database reporting system can format the result set 130 c using layout 124 c to create formatted view 140 c .
  • Formatted view 140 c can contain header 142 c , body 144 c , and footer 146 c .
  • the header 142 c , body 144 c , and footer 146 c can be configured in layout 124 c .
  • Layout 124 c can include an arrangement of data fields, objects, pictures, and layout parts that represents ways information is organized and presented when a user browses, previews, or prints data records.
  • Layout 124 c can contain various parts.
  • a layout part is a section of layout 124 c that organizes or summarizes information.
  • a header section can be a layout part that can contain, e.g., boilerplate text for an entire report, date and time, and other information generally related to a displayed view.
  • a body section can be a layout part that can contain individual records retrieved from a database (e.g., the retrieved data).
  • Other layout parts can include footer, title header, title footer, leading and trailing grand summary, and leading and trailing sub-summary.
  • body 144 c can be formatted according to formatting information (e.g., geometry, position, color, font, etc.) of a body section of layout 124 c .
  • Body 144 c can contain some or all data field values 134 in result set 130 c .
  • record identification can be excluded from being rendered in body 144 c (e.g., only actual data, rather than metadata, are displayed).
  • data fields in layout 124 c can be limited to data field values 134 .
  • field values 134 rather than record identification 132 , can be rendered in formatted view 104 c.
  • Result set 130 c can be transient, and can persist for as long as a window is open (e.g., when formatted view 104 c is displayed). In addition, in some implementations, result set 130 c can be invalidated when database connection 126 c is closed. However, result set 130 c can be saved as reference file 150 .
  • Reference file 150 can contain data identifiers 152 , which can correspond to record identifications 132 in the result set 130 c .
  • reference file 150 can contain other information.
  • reference file 150 can contain layout reference 154 , which references layout 124 c (which can be stored separately). Reference file 150 can also contain state information associated with database application program 120 c .
  • reference file 150 can also contain state information associated with states of a report that are more current than the states stored in database application program 120 c .
  • state information associated with states of a report that are more current than the states stored in database application program 120 c .
  • the state saved in reference 150 can indicate a report mode.
  • Saving result set 130 c as reference file 150 can include, for example, parsing result set 130 c to collect record identifications 132 , acquiring an ID of layout 124 c , and examining the state information of the report. Record identifications 132 and the other information can be formatted using various formatting wrappers (e.g., XML tags) and saved as reference file 150 . Reference file 150 can be copied, emailed, or stored in a file system as a conventional file.
  • parsing result set 130 c to collect record identifications 132 , acquiring an ID of layout 124 c , and examining the state information of the report.
  • Record identifications 132 and the other information can be formatted using various formatting wrappers (e.g., XML tags) and saved as reference file 150 .
  • Reference file 150 can be copied, emailed, or stored in a file system as a conventional file.
  • the database reporting system can open reference file 150 upon user request (e.g., an “open file” command from a menu). Opening reference file 150 can trigger various processes, including, for example retrieving data set 136 , which can contain data records from database 102 .
  • Retrieving data set 136 can differ from a standard query process (e.g., for retrieving result set 130 c ), because, in the former case, the database reporting system is not required to run queries of a query set (e.g., query set 122 c ) to retrieve data set 136 . Instead, the database reporting system can retrieve individual records 108 , 112 , and 114 directly, using data identifiers 152 .
  • the retrieval can be accomplished using a direct database accessing module that uses data identifiers 152 to retrieve data.
  • Another process triggered by opening reference file 150 can include establishing database connection 156 to connect to database 102 . If a database connection already exists, the database reporting system can utilize the existing database connection rather than creating database connection 156 . Because data identifiers 152 can identify individual database records (e.g., database records 108 , 112 , and 114 ), other database records 106 and 110 can be excluded from data set 136 , even if database records 106 and 110 are added or modified such that they satisfy selection criteria in a query.
  • the database reporting system can apply layout 124 c , as referenced by layout reference 154 , to retrieved data set 136 to create formatted view 140 d .
  • Formatted view 140 d can contain header 142 d , body 144 d , and footer 146 d , each specified by layout 124 c .
  • Body 144 d can include data from database records 108 , 114 , and 114 , similar to body 144 c in formatted view 140 c.
  • FIG. 2 illustrates exemplary implementations of reference file techniques for multi-field result sets.
  • Multi-field result sets can include data from multiple data fields from multiple tables.
  • a reference file can contain references to the data fields as well as the tables.
  • the exemplary implementations will be described with respect to a database reporting system that performs the techniques, and a user using a database application program.
  • a database application program can include layout 210 (including header part 212 , body part 214 , and footer part 216 ).
  • the database reporting system can also include database interface component 220 , which can include query set 222 .
  • Query set 222 can retrieve data from both tables 204 and 206 in database 202 .
  • database 202 is a structured query language (SQL) database
  • retrieving data from both tables 202 and 204 can be achieved using a select statement with a join clause.
  • SQL structured query language
  • database interface component 220 can retrieve result set 224 .
  • Result set 224 can contain records including multiple data fields.
  • the multiple data fields can come from records of both tables 204 and 206 , as well as record identifications that correspond to internal identifiers of the records.
  • the database records in tables 204 and 206 can each have an internal identifier (internal ID, e.g., 1 , 2 , 3 , 4 , 5 , 21 , 22 , 24 , 24 , 25 , 26 , and 27 ).
  • the internal ID can be the primary keys of tables 204 and 206 .
  • the internal ID can be an automatically generated address of each database record that is unique to the record and is not exposed to users. In some implementations, internal IDs can be a mixture of automatically generated addresses and primary keys (e.g., of external or foreign database tables).
  • an internal ID of a data record can include a table identifier and a record identifier.
  • the table identifier can be used to identify in which table (e.g., table 204 or 206 ) the data record is located, as well as an address within the table (e.g., a row id of the data record, and a column ID of the field within the row).
  • the internal ID can have a form “ 204 : 2 : 3 ” which specifies that the data record is located at table 204 , second row.
  • the data field is at the third data column of that data record.
  • result set 224 can contain three data records. Each data record can contain one or more data fields and contain data about a single activity, individual, subject or transaction.
  • a data record can be formed by a combination of data fields in both database table 204 and database table 206 (e.g., data field employee name from database table 204 and data field project name in database table 206 , linked (e.g., joined) by an assigned project ID).
  • result set 224 can also contain one or more record identifications for each record. For example, record identifiers 2 - 22 for a first record can indicate that the first record is formed by data from data record having internal ID “ 2 ” from database table 204 and from data record having internal ID “ 22 ” from database table 206 .
  • the database reporting system can generate formatted view 230 , which can include header 232 and footer 236 corresponding to header 212 and footer 216 in layout 210 .
  • a user can select to save result set 224 as reference file 240 .
  • Data in various database tables can be treated differently during the saving process, depending whether the table is a base table of a layout.
  • layout 210 can have base table 204 and related table 206 .
  • Base table 204 can be a default table for layout 224 .
  • a base table can be any table in a database.
  • Related table 206 can be any database table that is related to base table 204 by one or more data columns.
  • internal IDs of base table 204 are saved in reference file 240 .
  • reference file 240 can contain the following items, as well as other information that can be used to construct a second formatted view 266 :
  • Reference file 240 can have various formats, e.g., binary format or text format.
  • a text-based format e.g., Extensible Markup Language (XML) format
  • XML Extensible Markup Language
  • Using a text-based format can be advantageous under certain conditions, e.g., when reference file 240 is attached to an email, because an email program is not required to Base-64 encode a text-based reference file 240 .
  • the database reporting system can open the saved reference file 240 automatically (e.g., triggered by receiving an email containing reference file 240 on a server) or upon a user request.
  • the database reporting system can include direct database access module 252 , which can retrieve database records using internal identifiers and without running a database query. For example, direct database access module 252 can submit internal identifiers 2 , 4 , and 5 in a request 254 to database 202 .
  • Database 202 can use internal identifiers 2 , 4 , and 5 to locate specific data records in database tables 204 and 206 , and return values of the located data records in response 256 .
  • the located data records can be sent to a formatter to generate formatted view 266 .
  • the formatter can be a component of the database reporting system that formats data using one or more layouts.
  • data from related table 206 can be retrieved by performing the join operation again, because internal IDs 22 , 24 , and 26 are not saved.
  • the join operation can be limited to the set of base table IDs in reference file 240 .
  • An example including an Employee table (e.g., base table 204 ) and a Project table (e.g., related table 206 ) can be used to illustrate how data from related table 206 can be retrieved.
  • Base table 204 and related table 206 can be related by a field (e.g., Project ID).
  • Layout 210 can be designed to show a Project Name field (stored in related table 206 ) for each employee.
  • formatted view 266 can be the same list as the time reference file 240 was saved, the Project ID and the corresponding Project Name values can differ. This can be permissible. Although the particular snapshot of which employees were viewed at the time was restored, the expectation can be that formatted view 266 is displaying correct and up-to-date information.
  • the formatter can locate layout 210 using a layout reference stored reference file 240 to create header 262 and footer 264 in formatted view 266 .
  • the formatter can use other information contained in reference file 240 (e.g., current mode, view type, etc.) to display formatted view 266 in a way that corresponds to the mode and view type of formatted view 230 when reference file 240 was saved.
  • FIG. 3 illustrates exemplary techniques for directly referencing database records.
  • Database 310 can include database table 312 , which can include data columns as well as data rows 314 , 316 , and 318 .
  • Data columns for database table 312 can include column “ID” that contains data fields for primary keys (e.g., “ 101 ,” “ 102 ,” and “ 103 ” for data records 314 , 316 , and 318 , respectively), column “Name” that contains data field for employee names (e.g., “Alice,” “Bob,” and “Carl”), and column “Title” that contains job title for each employee (e.g., “manager 1 ,” “individual contributor level 1 ,” and “individual contributor level 2 ”).
  • the primary keys in the “ID” column are distinct from the internal IDs. For example, a user can write a query statement to retrieve the primary key; however, the same user can be prohibited from accessing the internal ID of the rows of table 312 .
  • Database query 302 (e.g., a SQL “SELECT” statement) can be used to retrieve data in database table 312 .
  • Database query 302 can be a typical query in query set 122 or 222 .
  • Query 302 does not access data fields directly or individually.
  • database table 312 can be an atomic unit of operation (e.g., query 302 does not divide database table 312 into sub-parts to retrieve individual records). If query 302 needs to access a subset of table 312 , a query that creates views or temporary tables can be utilized. However, in these situations, the view or temporary tables are the new atomic units of operation.
  • database records 314 , 316 , and 318 can be stored at different locations (e.g., at non-consecutive addresses 320 , 322 , and 324 , respectively).
  • Each of database records 314 , 316 , and 318 can be located by a reference (e.g., an internal ID) that can be hidden from a user.
  • Data fields can be retrieved from addresses 320 , 322 , and 324 transparently from the user.
  • a process can identify the internal IDs using table schema and query logic, as well as the internal IDs. The identification process can be hidden from the user.
  • the internal IDs can be sent together with the retrieved data fields, but in a separate and hidden data structure. For example, if the retrieved data are stored in a result object as public instance variables, the internal IDs can be stored as private or protected instance variables. UI components can be prevented from accessing the private or protected instance variables.
  • the database reporting system can use direct database access module 330 to access addresses 320 , 322 , or 324 directly, using the internal IDs.
  • Using internal IDs to access addresses 320 , 322 , or 324 directly can reduce the number of steps database 310 has to perform to retrieve data (e.g., no query interpretation is necessary).
  • Data retrieval using direct access can be consistent when new records are inserted into database table 312 . For example, if new records are inserted, the direct database access module can still retrieve the original three records.
  • direct database access module 330 can retrieve data reflecting the change because the update can occur at address 324 . If a database record (e.g., data record 316 ) is deleted, data at address 322 can be removed. Direct database access module 330 can use various techniques (e.g., default action, exception handling, or other mechanisms) to handle the situation.
  • FIG. 4 is a flowchart illustrating an exemplary process 400 for creating, transmitting, and opening of reference file techniques.
  • the exemplary implementations will be described with respect to a database reporting system that performs the techniques, and a user using a database application program.
  • the database reporting system can receive ( 410 ) a first result set (e.g., 130 c ).
  • First result set 130 c can include one or more data records retrieved from database 102 using one or more queries in query set 122 c .
  • First result set 130 c can include data references (e.g., record identifications 132 ) to the data records.
  • the data references can include internal record identifiers corresponding to the data records in database 102 .
  • the record identifiers are “internal” because they can be hidden from application developers or end users.
  • the database reporting system can display ( 420 ) first result set 130 c in a first representation (e.g., formatted view 140 c ).
  • Formatted view 140 c can include user interface (UI) components that allow the user to invoke a “save as reference file” feature.
  • the “save as reference file” can be accessible from a menu item on a file menu, or from an icon.
  • the file menu and the icon can be implemented using a menu bar on formatted view 140 c.
  • Invoking the “save as reference file” feature can include opening a dialog box for the feature.
  • the dialog box can allow the user to specify a file name for reference file 150 .
  • Reference file 150 can have a default name, e.g., a name of database application program, a name of an active database window, a name of a database, etc.
  • the dialog box can also include a component that can permit a user to configure the database reporting system such that reference file 150 is attached to an automatically generated email.
  • the component when activated, can cause the database reporting system to launch a default email client after saving reference file 150 and create a new message. Reference file 150 can be attached to the message. If no default email client exists or if problems occur launching the default email client, the database reporting system can either take no action or invoke error processing functions (e.g., logging an error in a log file).
  • the database reporting system can store ( 430 ) reference file 150 on a storage device.
  • the database reporting system can store ( 440 ) layout reference 154 as a part of reference file 150 .
  • Layout reference 154 can include a pointer to or an identifier of a layout (e.g., layout 124 c ) that is currently being used to format result set 130 c .
  • the user can specify a layout to which layout reference 154 refer. For example, the user can be given an option of using the current layout 124 c or another layout.
  • the database reporting system can create ( 450 ) a second result set (e.g., result set 130 b ) using the stored reference file 150 .
  • Creating result set 130 b can include directly retrieving data records from database 102 using the internal record identifiers in the reference file 150 .
  • the database reporting system can format ( 460 ) the second result set (e.g., result set 130 b ).
  • Formatting result set 130 b can include retrieving layout reference 154 from reference file 150 , retrieving layout 124 c to which layout reference 154 refers, and creating a formatted view (e.g., formatted view 140 d ) using the retrieved layout.
  • Result set 130 b can be displayed in the formatted view 240 d.
  • FIG. 5 is a flowchart illustrating an exemplary process 500 for creating a formatted view using a reference file.
  • the exemplary implementations will be described with respect to a database reporting system that performs the techniques, and a user using a database application program.
  • the database reporting system can open ( 502 ) reference file 150 .
  • the database reporting system can accept reference file 150 for opening based on an extension file name that has been registered with an operating system.
  • the behavior of opening reference file 150 can correspond to the behavior of executing a regular database application program for running a query or selecting a layout (e.g., opening a connection, retrieving data, and formatting the data).
  • the database reporting system can display a “no access” prompt.
  • the database reporting system can determine ( 504 ) if a source (e.g., database 102 ) referenced in reference file 150 is already open.
  • Reference file 150 can include a data source reference that identifies database 102 from which result set 130 c was retrieved.
  • a data source can be a named reference that provides access to a database file or an Open Database Connectivity (ODBC) data source (e.g., an external SQL database).
  • ODBC Open Database Connectivity
  • a database file can include a collection of information in a file containing one or more tables pertaining to a subject, such as customers or invoices.
  • a database can include one or more database files.
  • the database reporting system can examine a connection pool and determine if an open connection to database 102 (e.g., an opened database file or an ODBC connection) exists. If a connection does not exist already, the database reporting system can attempt to open ( 506 ) the connection automatically.
  • the database reporting system can first attempt to open the connection using a remote path.
  • the remote path can identify a database on a remote server (e.g., a server identifiable using an IP address). If the attempt to open the connection using the remote path fails, the database reporting system can attempt to open the connection using a local path.
  • the local path can identify a database on a local server, for example, by identifying a database file stored locally.
  • database 102 e.g., a remote database identified in a database path or a local database in the form of one or more database files, identified in a file path
  • the database reporting tool can provide a standard error message indicating that the database cannot be opened or cannot be found.
  • the database reporting system can create a new database window upon the opening of reference file 150 .
  • the window can be used to display formatted view 140 d .
  • Displaying formatted view 140 d can include restoring states (e.g., view mode) of formatted view 140 d to prior states of formatted view 140 c when reference file 150 was saved.
  • the window can include a window name, which can be based on a name of reference file 150 .
  • the database reporting system can determine ( 508 ) whether referenced layout (e.g., layout 124 a ) still exists. If referenced layout 124 a is no longer in existence, the database reporting system can select ( 510 ) a backup layout.
  • the backup layout can be a layout that is associated with a relevant database table (e.g., database table 104 from which result set 130 a was retrieved). If no such layout exists, or if the relevant database table 104 has been deleted, the database reporting system can invoke an error processing process, which can provide an error message in a UI, informing the user that records cannot be displayed because either the table no longer exists or no layout based on the table exists in referenced database 102 .
  • the database reporting system can display ( 516 ) records identified in reference file 150 .
  • the states e.g., viewing modes
  • the states can be restored.
  • data records in database 102 can change (e.g., they can be modified by various database queries). If a data record identified in reference file 150 is deleted after reference file 150 was created, the database reporting system can display a warning, informing the user that some or all of the records in reference file 150 are no longer available in the referenced database, and that only the remaining available records will be shown. If the current record (e.g., an active record) is one of the deleted records, the first available record in result set 130 b can be made active.
  • the current record e.g., an active record
  • the following list illustrates content of an exemplary reference file (e.g., reference file 150 ).
  • the exemplary reference file shown in LIST 1 can be a file in XML format.
  • a schema of the reference file e.g., a document type definition, DTD, which can include a formal description of a particular type of XML
  • DTD document type definition
  • a formal description of a particular type of XML can be omitted, when the reference file is limited to private use (e.g., used by a specific database reporting system).
  • the reference file can contain an XML declaration element stating the XML version of the reference file, and a root element (e.g., enclosed by the ⁇ RFTAG> and ⁇ /RFTAG> tags).
  • the root tag can include a UIState element for defining a state of a formatted view (e.g., formatted view 140 d ).
  • An element “Universal Path List” can be used to reference a database (e.g., database 102 ) from which result set 130 a is retrieved.
  • the universal path list element can contain references to one or more remote databases, which can be specified using a uniform resource locator (URL, e.g., “dbnet://192.168.1.197/sample database”) and one or more local databases, which can be specified using a file path (e.g., “filemac:sample.fp7).
  • a remote database can be hosted on a local machine and accessed through local port (e.g., “localhost://127.0.0.1/sample database”).
  • a “Rows” element can be used to specify the data records to be retrieved.
  • the “Rows” element can include a “type” element, which specifies what type of record identifications (e.g., record identifications 132 ) are contained in the reference file.
  • a type of rows can be “nativeIDList,” which can indicate that the record identifications are internal record identifiers.
  • Type of rows can alternatively include primary keys of a database table, and identifier field of a database table, etc.
  • the “Rows” element can further include a baseTableId attribute, identifying an internal identifier of a table.
  • the “Rows” element can also contain a rowCount attribute, which can indicate the length of the data (e.g., a number of the data records referenced). The rowCount can be used for error checking and for other purposed.
  • the “Rows” element can include character data (CDATA) that includes the record identifications.
  • the reference file can include various other elements that specify display options.
  • a “Layout” element can be used to reference a layout (e.g., layout 124 c ) based on which an original formatted view (e.g., formatted view 140 c ) is displayed.
  • the “Layout” element can include an attribute “id” which identifies the layout, which can be stored as a file or as a database item.
  • a “View” element and a “type” attribute can be used to specify a view type (e.g., “form,” “list,” or “table”).
  • a “SelectedRow” element and an “id” attribute can be used to specify which row is a “current” row (e.g., an active row).
  • a “StatusToolbar” element and a “visible” attribute can be used to specify what a status toolbar is visible in a formatted view (e.g., formatted view 140 d ).
  • a “Mode” element and a “value” attribute can be used to specify whether the formatted view is in a browse mode or preview mode.
  • the reference file can also include a “SortList” element that can specify whether the formatted view contains a sort specification.
  • the “SortList” element can include a “Sort” sub-element, which can specify whether data records should be sorted in ascending or descending order.
  • a “PrimaryField” element can be used to specify one or more fields for sorting.
  • the reference file in LIST 1 is shown in XML format.
  • a reference file can be saved using other formats, including binary format.
  • FIG. 6 is a block diagram of an exemplary system architecture 600 for implementing the features and operations described in reference to FIGS. 1-5 .
  • architecture 600 includes one or more processors 602 (e.g., dual-core Intel® Xeon® Processors), one or more output devices 604 (e.g., LCD), one or more network interfaces 606 , one or more input devices 608 (e.g., mouse, keyboard, touch-sensitive display) and one or more computer-readable mediums 612 (e.g., RAM, ROM, SDRAM, hard disk, optical disk, flash memory, etc.).
  • processors 602 e.g., dual-core Intel® Xeon® Processors
  • output devices 604 e.g., LCD
  • network interfaces 606 e.g., one or more input devices 608 (e.g., mouse, keyboard, touch-sensitive display)
  • input devices 608 e.g., mouse, keyboard, touch-sensitive display
  • computer-readable mediums 612 e.
  • computer-readable medium refers to any medium that participates in providing instructions to processor 602 for execution, including without limitation, non-volatile media (e.g., optical or magnetic disks), volatile media (e.g., memory) and transmission media.
  • Transmission media includes, without limitation, coaxial cables, copper wire and fiber optics.
  • Computer-readable medium 612 can further include operating system 614 (e.g., Mac OS® server, Windows® NT server), network communication module 616 , database interface 620 , formatter 630 , direct database access module 640 , graphical user interface 650 , and reference files 660 , as described in reference to FIGS. 1-5 .
  • Operating system 614 can be multi-user, multiprocessing, multitasking, multithreading, real time, etc. Operating system 614 performs basic tasks, including but not limited to: recognizing input from and providing output to devices 606 , 608 ; keeping track and managing files and directories on computer-readable mediums 612 (e.g., memory or a storage device); controlling peripheral devices; and managing traffic on the one or more communication channels 610 .
  • operating system 614 e.g., Mac OS® server, Windows® NT server
  • network communication module 616 e.g., database interface 620 , formatter 630 , direct database access module 640 , graphical user interface 650
  • Network communications module 616 includes various components for establishing and maintaining network connections (e.g., software for implementing communication protocols, such as TCP/IP, HTTP, etc.).
  • Direct database access module 640 can include one or more functional components for retrieving a data record from a database using an internal identifier.
  • Reference files 660 can include data values, data record identifications, references to layouts, display modes, and other data and formatting information.
  • Architecture 600 can be included in any device capable of hosting a database application program.
  • Architecture 600 can be implemented in a parallel processing or peer-to-peer infrastructure or on a single device with one or more processors.
  • Software can include multiple software components or can be a single body of code.
  • the described features can be implemented advantageously in one or more computer programs that are executable on a programmable system including at least one programmable processor coupled to receive data and instructions from, and to transmit data and instructions to, a data storage system, at least one input device, and at least one output device.
  • a computer program is a set of instructions that can be used, directly or indirectly, in a computer to perform a certain activity or bring about a certain result.
  • a computer program can be written in any form of programming language (e.g., Objective-C, Java), including compiled or interpreted languages, and it can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment.
  • Suitable processors for the execution of a program of instructions include, by way of example, both general and special purpose microprocessors, and the sole processor or one of multiple processors or cores, of any kind of computer.
  • a processor will receive instructions and data from a read-only memory or a random access memory or both.
  • the essential elements of a computer are a processor for executing instructions and one or more memories for storing instructions and data.
  • a computer will also include, or be operatively coupled to communicate with, one or more mass storage devices for storing data files; such devices include magnetic disks, such as internal hard disks and removable disks; magneto-optical disks; and optical disks.
  • Storage devices suitable for tangibly embodying computer program instructions and data include all forms of non-volatile memory, including by way of example semiconductor memory devices, such as EPROM, EEPROM, and flash memory devices; magnetic disks such as internal hard disks and removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks.
  • semiconductor memory devices such as EPROM, EEPROM, and flash memory devices
  • magnetic disks such as internal hard disks and removable disks
  • magneto-optical disks and CD-ROM and DVD-ROM disks.
  • the processor and the memory can be supplemented by, or incorporated in, ASICs (application-specific integrated circuits).
  • ASICs application-specific integrated circuits
  • the features can be implemented on a computer having a display device such as a CRT (cathode ray tube) or LCD (liquid crystal display) monitor for displaying information to the user and a keyboard and a pointing device such as a mouse or a trackball by which the user can provide input to the computer.
  • a display device such as a CRT (cathode ray tube) or LCD (liquid crystal display) monitor for displaying information to the user and a keyboard and a pointing device such as a mouse or a trackball by which the user can provide input to the computer.
  • the features can be implemented in a computer system that includes a back-end component, such as a data server, or that includes a middleware component, such as an application server or an Internet server, or that includes a front-end component, such as a client computer having a graphical user interface or an Internet browser, or any combination of them.
  • the components of the system can be connected by any form or medium of digital data communication such as a communication network. Examples of communication networks include, e.g., a LAN, a WAN, and the computers and networks forming the Internet.
  • the computer system can include clients and servers.
  • a client and server are generally remote from each other and typically interact through a network.
  • the relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other.
  • database can refer to any structured collection of data that is stored on a computer system, including, for example, a relational database, an object-oriented database, a file system, an indexed collection of documents, or any structured data.
  • query can refer to any request for information retrieval, including, for example, a SQL query, a search request, or a request into a file system.
  • database reporting system can refer to any system that accepts queries, identifies information using the queries, and presents the identified information to a user in a formatted view.
  • a database reporting system can include, for example, a Relational Database Management System (RDBMS), a desktop file indexing system, or an Internet search engine.
  • RDBMS Relational Database Management System
  • reference file is not limited to a stand-alone file, but can include, for example, a set of two or more files, a body of an electronic mail message, or a data structure stored on a disk, on a flash drive, or in memory of a computer system.

Abstract

Methods, program products, and systems for displaying data in formatted views using reference files are described. In some implementations, a database application program can generate a result set using one or more queries. The result set can contain actual data from a database and metadata. The metadata can contain references to data records in the database, the references can include identifiers that can identify the data records. When a user saves a database report file, the user can save at least a part of the result set using the identifiers instead of the queries and layouts. Thus, the result set can be saved as a reference file. When the database application program opens the saved reference file, the database application program can reproduce the result set using the stored references without running all of the queries.

Description

TECHNICAL FIELD
This disclosure relates generally to database applications.
BACKGROUND
Many modern database application programs include a query engine with a formatting tool. A user can use the query engine to build queries to retrieve data from the database, and use the formatting tool to display the data in a report in various formats. The queries and formatting information can be saved in the database application program. To reproduce the report, a conventional database application program reruns the query to retrieve data, reformats the retrieved data, and redisplays the result. The query can be complex and the data in the database may have been changed (e.g., a new record can be inserted into the database).
SUMMARY
Methods, program products, and systems for displaying data in formatted views using reference files are described. In some implementations, a database application program can generate a result set using one or more queries. The result set can contain actual data from a database and metadata. The metadata can contain references to data records in the database, the references can include identifiers that can identify the data records. When a user saves a database report file, the user can save at least a part of the result set using the identifiers instead of the queries and layouts. Thus, the result set can be saved as a reference file. When the database application program opens the saved reference file, the database application program can reproduce the result set using the stored references without running all of the queries.
Saving a result set as a reference file can achieve the following advantages. A reference file can capture records in the result set that are not results of a direct query (e.g., records manually added to the result set). The reference file can increase the likelihood that a formatted view reproduced later using the reference file contains the same records as the current formatted view. Reproducing a formatted view using a reference file rather than a query set can be more efficient when the database is large or when the query set contains complex queries that take a long time to execute. The reference file can contain references rather than actual code for queries, therefore can be compact and easily transportable (e.g., through email). A recipient of the reference file can reproduce the formatted view using a lightweight database application (e.g., an application that includes a light-weight database engine), without having to run complex queries.
The details of one or more implementations of using reference files for formatted views are set forth in the accompanying drawings and the description below. Other features, aspects, and advantages of reference files will become apparent from the description, the drawings, and the claims.
BRIEF DESCRIPTION OF THE DRAWINGS
FIGS. 1A and 1B illustrate a comparison between a conventional database application program and a database application program using reference file techniques.
FIG. 2 illustrates exemplary implementations of reference file techniques for multi-part result sets.
FIG. 3 illustrates exemplary techniques for directly referencing database records.
FIG. 4 is a flowchart illustrating an exemplary process for creating, transmitting, and opening of reference file techniques.
FIG. 5 is a flowchart illustrating an exemplary process for creating a formatted view using a reference file.
FIG. 6 is a block diagram of an exemplary system architecture for implementing the features and operations described in reference to FIGS. 1-5.
Like reference symbols in the various drawings indicate like elements.
DETAILED DESCRIPTION Reference File Techniques Overview
FIGS. 1A and 1B illustrate a comparison between a conventional database application program and a database application program using reference file techniques. For convenience, the exemplary implementations will be described with respect to a database reporting system that runs the application program, and a user using a database application program. Generally, the database reporting system can permit the user to view formatted data through an application program instead of directly accessing raw data stored in a database. A database application program can include various components, such as a query engine (for retrieving data from the database), a layout editor (for creating and editing layout for formatting data), and a formatting engine (for formatting and displaying the data using the layout). A user who is a database application developer can create a database application program, which can be run as a database application by the database reporting system, in a way similar to an operating system running an executable. An end user can create reports for viewing and printing using the database reporting system.
FIG. 1A illustrates a conventional database application program. A user creates database application program 120 a for database 102. Database application program 120 a running on the database reporting system. Database application program 120 a can contain one or more query sets 122 a for querying database 102, and layout 124 for formatting data retrieved from database 102. Query set 122 a can retrieve records from database table 104 through database connection 126 a. In response to query set 122 a, data records (e.g., data records 108, 112, and 114) that satisfy certain criteria can be retrieved. The result of query set 122 can be stored in result set 130 a, which can contain retrieved database records 108, 112, and 114 from database 102. Although query set 122 a can be persistent, result set 130 a can be transient. For example, result set 130 a can exist in memory as long as a display window of the database application tool is open. The database reporting system can use layout 124 a to format result set 130 a to create formatted view 140 a, which can include, for example, header 142 a, body 144 a that includes formatted database records 108, 112, and 114, and footer 146 a.
The user can save database application program 120 a as a separate database application program 120 b (e.g., for sending to another user). Database application program 120 b can include query set 122 b and layout 124 b, which can be identical to query set 122 a and 124 a. The database reporting system can execute database report 120 b against database 102. At runtime, the database reporting system can open a new database connection 126 b. The query set can retrieve records and store the retrieved records in result set 130 b.
There is no guarantee that result set 130 b contains the same records (e.g., database records 108, 112, and 114) as result set 130 a. Because result set 130 a can be transient, the content in result 130 a is not saved. Between the executions of database application programs 120 a and 120 b, new records can be inserted into database table 104. Some fields of existing records in database table 104 can change (e.g., a sales number may be revised to go up). As a result, database records 106 and 110, which did not satisfy selection criteria defined in query set 122 a when database application program 120 a was executed, can satisfy selection criteria defined in query set 122 b when database application program 120 b was executed. Therefore, result set 130 b can contain data records 106, 108, 110, 112, and 114. The database reporting system can use layout 120 b to format result set 130 b, creating formatted view 140 b. Formatted view 140 b can have the same general look and feel of formatted view 140 a. For example, header 142 b and footer 146 b can be substantially identical to header 142 a and footer 146 a. However, because result set 130 b contains more records than result set 130 a, body section 144 b can be different from body section 144 a.
FIG. 1B illustrates database application program 120 c implementing reference file techniques. Database application program 120 c can contain query set 122 c and layout 124 c. Database application program 120 c can also contain state information, which can track how a report is being viewed by a user. The state information, which can be saved with database application program 120 c or separately, can include one or more current data viewing states. Data viewing states can include indicators of viewing mode, active data record (e.g., a record being edited), current view page, etc.
Through database connection 126 c, one or more queries in query set 122 c can access database table 104 and retrieve database records 108, 112, and 114. Retrieved database records 108, 112, and 114 can be stored in result set 130 c. Result set 130 c can be a found set. A found set can include a set of records in database table 104 that are made active by a find request. When all records are found, the found set can include all records in the entire table 104.
Result set 130 c can contain data field values 134 from database records 108, 112, and 114 (e.g., values of database fields). In addition, result set 130 c can contain record identifications 132. Record identifications 132 need not be explicitly retrieved by query 122 c, but can be included by the system as a separate and hidden data structure in result set 130 c. In various implementations, record identifications 132 can include internal record identifiers that reference database records 108, 112, and 114. These internal record identifiers can be provided at system level, e.g., as physical address of the data records. Although, in some implementations, record identifiers can be values in a database field that uniquely identifies a record in database table 104 (e.g., an “ID” field), it is not necessary that the record identifiers are stored in a particular database field.
The database reporting system can format the result set 130 c using layout 124 c to create formatted view 140 c. Formatted view 140 c can contain header 142 c, body 144 c, and footer 146 c. The header 142 c, body 144 c, and footer 146 c can be configured in layout 124 c. Layout 124 c can include an arrangement of data fields, objects, pictures, and layout parts that represents ways information is organized and presented when a user browses, previews, or prints data records. Layout 124 c can contain various parts. A layout part is a section of layout 124 c that organizes or summarizes information. For example, a header section can be a layout part that can contain, e.g., boilerplate text for an entire report, date and time, and other information generally related to a displayed view. A body section can be a layout part that can contain individual records retrieved from a database (e.g., the retrieved data). Other layout parts can include footer, title header, title footer, leading and trailing grand summary, and leading and trailing sub-summary.
In the example shown, body 144 c can be formatted according to formatting information (e.g., geometry, position, color, font, etc.) of a body section of layout 124 c. Body 144 c can contain some or all data field values 134 in result set 130 c. In some implementations, record identification can be excluded from being rendered in body 144 c (e.g., only actual data, rather than metadata, are displayed). For example, data fields in layout 124 c can be limited to data field values 134. Thus, field values 134, rather than record identification 132, can be rendered in formatted view 104 c.
Result set 130 c can be transient, and can persist for as long as a window is open (e.g., when formatted view 104 c is displayed). In addition, in some implementations, result set 130 c can be invalidated when database connection 126 c is closed. However, result set 130 c can be saved as reference file 150. Reference file 150 can contain data identifiers 152, which can correspond to record identifications 132 in the result set 130 c. Optionally, reference file 150 can contain other information. For example, reference file 150 can contain layout reference 154, which references layout 124 c (which can be stored separately). Reference file 150 can also contain state information associated with database application program 120 c. In addition, reference file 150 can also contain state information associated with states of a report that are more current than the states stored in database application program 120 c. For example, when a view mode in database application program 120 c is a browse mode but the user is in a report mode when saving reference file 150, the state saved in reference 150 can indicate a report mode.
Saving result set 130 c as reference file 150 can include, for example, parsing result set 130 c to collect record identifications 132, acquiring an ID of layout 124 c, and examining the state information of the report. Record identifications 132 and the other information can be formatted using various formatting wrappers (e.g., XML tags) and saved as reference file 150. Reference file 150 can be copied, emailed, or stored in a file system as a conventional file.
The database reporting system can open reference file 150 upon user request (e.g., an “open file” command from a menu). Opening reference file 150 can trigger various processes, including, for example retrieving data set 136, which can contain data records from database 102. Retrieving data set 136 can differ from a standard query process (e.g., for retrieving result set 130 c), because, in the former case, the database reporting system is not required to run queries of a query set (e.g., query set 122 c) to retrieve data set 136. Instead, the database reporting system can retrieve individual records 108, 112, and 114 directly, using data identifiers 152. The retrieval can be accomplished using a direct database accessing module that uses data identifiers 152 to retrieve data. Another process triggered by opening reference file 150 can include establishing database connection 156 to connect to database 102. If a database connection already exists, the database reporting system can utilize the existing database connection rather than creating database connection 156. Because data identifiers 152 can identify individual database records (e.g., database records 108, 112, and 114), other database records 106 and 110 can be excluded from data set 136, even if database records 106 and 110 are added or modified such that they satisfy selection criteria in a query.
The database reporting system can apply layout 124 c, as referenced by layout reference 154, to retrieved data set 136 to create formatted view 140 d. Formatted view 140 d can contain header 142 d, body 144 d, and footer 146 d, each specified by layout 124 c. Body 144 d can include data from database records 108, 114, and 114, similar to body 144 c in formatted view 140 c.
Creating and Using Reference Files
FIG. 2 illustrates exemplary implementations of reference file techniques for multi-field result sets. Multi-field result sets can include data from multiple data fields from multiple tables. A reference file can contain references to the data fields as well as the tables. For convenience, the exemplary implementations will be described with respect to a database reporting system that performs the techniques, and a user using a database application program.
A database application program can include layout 210 (including header part 212, body part 214, and footer part 216). The database reporting system can also include database interface component 220, which can include query set 222. Query set 222 can retrieve data from both tables 204 and 206 in database 202. In some implementations (e.g., when database 202 is a structured query language (SQL) database), retrieving data from both tables 202 and 204 can be achieved using a select statement with a join clause.
By executing a query containing a join clause in query set 222, database interface component 220 can retrieve result set 224. Result set 224 can contain records including multiple data fields. The multiple data fields can come from records of both tables 204 and 206, as well as record identifications that correspond to internal identifiers of the records. The database records in tables 204 and 206 can each have an internal identifier (internal ID, e.g., 1, 2, 3, 4, 5, 21, 22, 24, 24, 25, 26, and 27). In some implementations, the internal ID can be the primary keys of tables 204 and 206. In some implementations, the internal ID can be an automatically generated address of each database record that is unique to the record and is not exposed to users. In some implementations, internal IDs can be a mixture of automatically generated addresses and primary keys (e.g., of external or foreign database tables).
In some implementations, an internal ID of a data record can include a table identifier and a record identifier. The table identifier can be used to identify in which table (e.g., table 204 or 206) the data record is located, as well as an address within the table (e.g., a row id of the data record, and a column ID of the field within the row). For example, the internal ID can have a form “204:2:3” which specifies that the data record is located at table 204, second row. In addition, the data field is at the third data column of that data record.
In this example, result set 224 can contain three data records. Each data record can contain one or more data fields and contain data about a single activity, individual, subject or transaction. A data record can be formed by a combination of data fields in both database table 204 and database table 206 (e.g., data field employee name from database table 204 and data field project name in database table 206, linked (e.g., joined) by an assigned project ID). In addition to values of various data fields in the records, result set 224 can also contain one or more record identifications for each record. For example, record identifiers 2-22 for a first record can indicate that the first record is formed by data from data record having internal ID “2” from database table 204 and from data record having internal ID “22” from database table 206.
The database reporting system can generate formatted view 230, which can include header 232 and footer 236 corresponding to header 212 and footer 216 in layout 210. A user can select to save result set 224 as reference file 240. Data in various database tables can be treated differently during the saving process, depending whether the table is a base table of a layout. For example, layout 210 can have base table 204 and related table 206. Base table 204 can be a default table for layout 224. A base table can be any table in a database. Related table 206 can be any database table that is related to base table 204 by one or more data columns. In some implementations, internal IDs of base table 204 are saved in reference file 240.
Optionally, reference file 240 can contain the following items, as well as other information that can be used to construct a second formatted view 266:
    • Links to one or more originating databases (e.g., database 202 from which the data records are retrieved). A link can be a database connection ID, a database connection object, or a database locator containing a path to or file name of the database;
    • References to layout 210 (e.g., a layout ID for uniquely identifying a layout stored on a storage system or a layout file name, if the layout is stored as a separate file);
    • A current mode (e.g., whether formatted view 232 is being viewed in a browse mode or in a preview mode). A browse mode can be a view mode in which a user can enter and edit information in data fields. A preview mode can be a view mode in which a user can see how layouts will look when they are printed;
    • A current view type (e.g., whether formatted view 232, in a browse mode, is being viewed in a form view, a list view, or a table view). In a form view, a user can view one record at a time. In a list view, a user can view records in a list. In a table view, a user can view records arranged in a spreadsheet-like table;
    • A current record ID (e.g., for identifying a particular data record that is active); and
    • One or more current sort specifications (e.g., for specifying on which particular field the data records are sorted).
Reference file 240 can have various formats, e.g., binary format or text format. In some implementations, a text-based format (e.g., Extensible Markup Language (XML) format) can be used. Using a text-based format (e.g. XML) can be advantageous under certain conditions, e.g., when reference file 240 is attached to an email, because an email program is not required to Base-64 encode a text-based reference file 240.
The database reporting system can open the saved reference file 240 automatically (e.g., triggered by receiving an email containing reference file 240 on a server) or upon a user request. The database reporting system can include direct database access module 252, which can retrieve database records using internal identifiers and without running a database query. For example, direct database access module 252 can submit internal identifiers 2, 4, and 5 in a request 254 to database 202. Database 202 can use internal identifiers 2, 4, and 5 to locate specific data records in database tables 204 and 206, and return values of the located data records in response 256. The located data records can be sent to a formatter to generate formatted view 266. The formatter can be a component of the database reporting system that formats data using one or more layouts.
In some implementations where internal IDs of base table 204 are saved in reference file 240, data from related table 206 can be retrieved by performing the join operation again, because internal IDs 22, 24, and 26 are not saved. However, the join operation can be limited to the set of base table IDs in reference file 240.
An example including an Employee table (e.g., base table 204) and a Project table (e.g., related table 206) can be used to illustrate how data from related table 206 can be retrieved. Base table 204 and related table 206 can be related by a field (e.g., Project ID). Layout 210 can be designed to show a Project Name field (stored in related table 206) for each employee. After reference file 240 is loaded, an implicit query can be performed matching the records from table 204, which can be identified in the reference file, with records from related table 206 whose Project ID field values are equal. Although a list of employees that is shown on formatted view 266 can be the same list as the time reference file 240 was saved, the Project ID and the corresponding Project Name values can differ. This can be permissible. Although the particular snapshot of which employees were viewed at the time was restored, the expectation can be that formatted view 266 is displaying correct and up-to-date information.
Optionally, the formatter can locate layout 210 using a layout reference stored reference file 240 to create header 262 and footer 264 in formatted view 266. In addition, the formatter can use other information contained in reference file 240 (e.g., current mode, view type, etc.) to display formatted view 266 in a way that corresponds to the mode and view type of formatted view 230 when reference file 240 was saved.
FIG. 3 illustrates exemplary techniques for directly referencing database records. Database 310 can include database table 312, which can include data columns as well as data rows 314, 316, and 318. Data columns for database table 312 can include column “ID” that contains data fields for primary keys (e.g., “101,” “102,” and “103” for data records 314, 316, and 318, respectively), column “Name” that contains data field for employee names (e.g., “Alice,” “Bob,” and “Carl”), and column “Title” that contains job title for each employee (e.g., “manager 1,” “individual contributor level 1,” and “individual contributor level 2”). In some implementations, the primary keys in the “ID” column are distinct from the internal IDs. For example, a user can write a query statement to retrieve the primary key; however, the same user can be prohibited from accessing the internal ID of the rows of table 312.
Database query 302 (e.g., a SQL “SELECT” statement) can be used to retrieve data in database table 312. Database query 302 can be a typical query in query set 122 or 222. Query 302 does not access data fields directly or individually. From a viewpoint of database query 302, database table 312 can be an atomic unit of operation (e.g., query 302 does not divide database table 312 into sub-parts to retrieve individual records). If query 302 needs to access a subset of table 312, a query that creates views or temporary tables can be utilized. However, in these situations, the view or temporary tables are the new atomic units of operation.
In some implementations, database records 314, 316, and 318 can be stored at different locations (e.g., at non-consecutive addresses 320, 322, and 324, respectively). Each of database records 314, 316, and 318 can be located by a reference (e.g., an internal ID) that can be hidden from a user. Data fields can be retrieved from addresses 320, 322, and 324 transparently from the user. For example, during data retrieval, a process can identify the internal IDs using table schema and query logic, as well as the internal IDs. The identification process can be hidden from the user. The internal IDs can be sent together with the retrieved data fields, but in a separate and hidden data structure. For example, if the retrieved data are stored in a result object as public instance variables, the internal IDs can be stored as private or protected instance variables. UI components can be prevented from accessing the private or protected instance variables.
In some implementations, to retrieve data using reference file 240, the database reporting system can use direct database access module 330 to access addresses 320, 322, or 324 directly, using the internal IDs. Using internal IDs to access addresses 320, 322, or 324 directly can reduce the number of steps database 310 has to perform to retrieve data (e.g., no query interpretation is necessary). Data retrieval using direct access can be consistent when new records are inserted into database table 312. For example, if new records are inserted, the direct database access module can still retrieve the original three records. If a value of a data field is updated (e.g., when job title for Carl is changed from “IC 2” to “MG 1”), direct database access module 330 can retrieve data reflecting the change because the update can occur at address 324. If a database record (e.g., data record 316) is deleted, data at address 322 can be removed. Direct database access module 330 can use various techniques (e.g., default action, exception handling, or other mechanisms) to handle the situation.
Exemplary Reference File Creation, Transmission, and Receipt
FIG. 4 is a flowchart illustrating an exemplary process 400 for creating, transmitting, and opening of reference file techniques. For convenience, the exemplary implementations will be described with respect to a database reporting system that performs the techniques, and a user using a database application program.
The database reporting system can receive (410) a first result set (e.g., 130 c). First result set 130 c can include one or more data records retrieved from database 102 using one or more queries in query set 122 c. First result set 130 c can include data references (e.g., record identifications 132) to the data records. The data references can include internal record identifiers corresponding to the data records in database 102. The record identifiers are “internal” because they can be hidden from application developers or end users.
Optionally, the database reporting system can display (420) first result set 130 c in a first representation (e.g., formatted view 140 c). Formatted view 140 c can include user interface (UI) components that allow the user to invoke a “save as reference file” feature. The “save as reference file” can be accessible from a menu item on a file menu, or from an icon. The file menu and the icon can be implemented using a menu bar on formatted view 140 c.
Invoking the “save as reference file” feature can include opening a dialog box for the feature. The dialog box can allow the user to specify a file name for reference file 150. Reference file 150 can have a default name, e.g., a name of database application program, a name of an active database window, a name of a database, etc.
The dialog box can also include a component that can permit a user to configure the database reporting system such that reference file 150 is attached to an automatically generated email. The component, when activated, can cause the database reporting system to launch a default email client after saving reference file 150 and create a new message. Reference file 150 can be attached to the message. If no default email client exists or if problems occur launching the default email client, the database reporting system can either take no action or invoke error processing functions (e.g., logging an error in a log file).
The database reporting system can store (430) reference file 150 on a storage device. In some implementations, the database reporting system can store (440) layout reference 154 as a part of reference file 150. Layout reference 154 can include a pointer to or an identifier of a layout (e.g., layout 124 c) that is currently being used to format result set 130 c. In some implementations, the user can specify a layout to which layout reference 154 refer. For example, the user can be given an option of using the current layout 124 c or another layout.
Upon opening reference file 150, the database reporting system can create (450) a second result set (e.g., result set 130 b) using the stored reference file 150. Creating result set 130 b can include directly retrieving data records from database 102 using the internal record identifiers in the reference file 150.
Optionally, the database reporting system can format (460) the second result set (e.g., result set 130 b). Formatting result set 130 b can include retrieving layout reference 154 from reference file 150, retrieving layout 124 c to which layout reference 154 refers, and creating a formatted view (e.g., formatted view 140 d) using the retrieved layout. Result set 130 b can be displayed in the formatted view 240 d.
FIG. 5 is a flowchart illustrating an exemplary process 500 for creating a formatted view using a reference file. For convenience, the exemplary implementations will be described with respect to a database reporting system that performs the techniques, and a user using a database application program.
The database reporting system can open (502) reference file 150. The database reporting system can accept reference file 150 for opening based on an extension file name that has been registered with an operating system. The behavior of opening reference file 150 can correspond to the behavior of executing a regular database application program for running a query or selecting a layout (e.g., opening a connection, retrieving data, and formatting the data). In some implementations, if the user has insufficient privileges to view the layout referenced in reference file 150 or insufficient privileges to access the database in reference file 150), the database reporting system can display a “no access” prompt.
The database reporting system can determine (504) if a source (e.g., database 102) referenced in reference file 150 is already open. Reference file 150 can include a data source reference that identifies database 102 from which result set 130 c was retrieved. A data source can be a named reference that provides access to a database file or an Open Database Connectivity (ODBC) data source (e.g., an external SQL database). A database file can include a collection of information in a file containing one or more tables pertaining to a subject, such as customers or invoices. A database can include one or more database files.
The database reporting system can examine a connection pool and determine if an open connection to database 102 (e.g., an opened database file or an ODBC connection) exists. If a connection does not exist already, the database reporting system can attempt to open (506) the connection automatically. The database reporting system can first attempt to open the connection using a remote path. The remote path can identify a database on a remote server (e.g., a server identifiable using an IP address). If the attempt to open the connection using the remote path fails, the database reporting system can attempt to open the connection using a local path. The local path can identify a database on a local server, for example, by identifying a database file stored locally. If database 102 (e.g., a remote database identified in a database path or a local database in the form of one or more database files, identified in a file path) is unavailable because the user lacks privilege, the database reporting tool can provide a standard error message indicating that the database cannot be opened or cannot be found.
If a connection (e.g., connection 156) to database 102 is already open, the database reporting system can create a new database window upon the opening of reference file 150. The window can be used to display formatted view 140 d. Displaying formatted view 140 d can include restoring states (e.g., view mode) of formatted view 140 d to prior states of formatted view 140 c when reference file 150 was saved. The window can include a window name, which can be based on a name of reference file 150.
The database reporting system can determine (508) whether referenced layout (e.g., layout 124 a) still exists. If referenced layout 124 a is no longer in existence, the database reporting system can select (510) a backup layout. The backup layout can be a layout that is associated with a relevant database table (e.g., database table 104 from which result set 130 a was retrieved). If no such layout exists, or if the relevant database table 104 has been deleted, the database reporting system can invoke an error processing process, which can provide an error message in a UI, informing the user that records cannot be displayed because either the table no longer exists or no layout based on the table exists in referenced database 102.
The database reporting system can display (516) records identified in reference file 150. The states (e.g., viewing modes) stored in reference file 150 can be restored.
After the creation of reference file 150, data records in database 102 can change (e.g., they can be modified by various database queries). If a data record identified in reference file 150 is deleted after reference file 150 was created, the database reporting system can display a warning, informing the user that some or all of the records in reference file 150 are no longer available in the referenced database, and that only the remaining available records will be shown. If the current record (e.g., an active record) is one of the deleted records, the first available record in result set 130 b can be made active.
Exemplary Reference File
The following list illustrates content of an exemplary reference file (e.g., reference file 150).
<?xml version=“1.0” encoding=“UTF-8”?>
<RFTAG>
<UIState>
<UniversalPathList>
dbnet:/192.168.1. 197/sample database
filemac:sample.fp7
</UniversalPathList>
<Rows type=“nativeIDList” rowCount=“6” baseTableId=“129”>
<![CDATA[1 2 4 9 10 11]]>
</Rows>
<Layout id=“5”></Layout>
<View type=“form”></View>
<SelectedRow type=“nativeID” id=“1”></SelectedRow>
<StatusToolbar visible=“True”></StatusToolbar>
<Mode value=“browseMode”></Mode>
<SortList value=“True”>
<Sort type=“Ascending”>
<PrimaryField>
<Field tableId=“1065090” table=“d1table1”
id=“1”
name=“d1”></Field>
</PrimaryField>
</Sort>
</SortList>
</UIState>
</RFTAG >
LIST 1. Exemplary Reference File
The exemplary reference file shown in LIST 1 can be a file in XML format. In some implementations, a schema of the reference file (e.g., a document type definition, DTD, which can include a formal description of a particular type of XML) can be omitted, when the reference file is limited to private use (e.g., used by a specific database reporting system).
The reference file can contain an XML declaration element stating the XML version of the reference file, and a root element (e.g., enclosed by the <RFTAG> and </RFTAG> tags). The root tag can include a UIState element for defining a state of a formatted view (e.g., formatted view 140 d).
An element “Universal Path List” can be used to reference a database (e.g., database 102) from which result set 130 a is retrieved. The universal path list element can contain references to one or more remote databases, which can be specified using a uniform resource locator (URL, e.g., “dbnet://192.168.1.197/sample database”) and one or more local databases, which can be specified using a file path (e.g., “filemac:sample.fp7). A remote database can be hosted on a local machine and accessed through local port (e.g., “localhost://127.0.0.1/sample database”).
A “Rows” element can be used to specify the data records to be retrieved. The “Rows” element can include a “type” element, which specifies what type of record identifications (e.g., record identifications 132) are contained in the reference file. For example, a type of rows can be “nativeIDList,” which can indicate that the record identifications are internal record identifiers. Type of rows can alternatively include primary keys of a database table, and identifier field of a database table, etc. The “Rows” element can further include a baseTableId attribute, identifying an internal identifier of a table. The “Rows” element can also contain a rowCount attribute, which can indicate the length of the data (e.g., a number of the data records referenced). The rowCount can be used for error checking and for other purposed. The “Rows” element can include character data (CDATA) that includes the record identifications.
The reference file can include various other elements that specify display options. For example, a “Layout” element can be used to reference a layout (e.g., layout 124 c) based on which an original formatted view (e.g., formatted view 140 c) is displayed. The “Layout” element can include an attribute “id” which identifies the layout, which can be stored as a file or as a database item. A “View” element and a “type” attribute can be used to specify a view type (e.g., “form,” “list,” or “table”). A “SelectedRow” element and an “id” attribute can be used to specify which row is a “current” row (e.g., an active row). A “StatusToolbar” element and a “visible” attribute can be used to specify what a status toolbar is visible in a formatted view (e.g., formatted view 140 d). A “Mode” element and a “value” attribute can be used to specify whether the formatted view is in a browse mode or preview mode.
The reference file can also include a “SortList” element that can specify whether the formatted view contains a sort specification. The “SortList” element can include a “Sort” sub-element, which can specify whether data records should be sorted in ascending or descending order. A “PrimaryField” element can be used to specify one or more fields for sorting.
The reference file in LIST 1 is shown in XML format. In various implementations, a reference file can be saved using other formats, including binary format.
Example System Architecture
FIG. 6 is a block diagram of an exemplary system architecture 600 for implementing the features and operations described in reference to FIGS. 1-5. Other architectures are possible, including architectures with more or fewer components. In some implementations, architecture 600 includes one or more processors 602 (e.g., dual-core Intel® Xeon® Processors), one or more output devices 604 (e.g., LCD), one or more network interfaces 606, one or more input devices 608 (e.g., mouse, keyboard, touch-sensitive display) and one or more computer-readable mediums 612 (e.g., RAM, ROM, SDRAM, hard disk, optical disk, flash memory, etc.). These components can exchange communications and data over one or more communication channels 610 (e.g., buses), which can utilize various hardware and software for facilitating the transfer of data and control signals between components.
The term “computer-readable medium” refers to any medium that participates in providing instructions to processor 602 for execution, including without limitation, non-volatile media (e.g., optical or magnetic disks), volatile media (e.g., memory) and transmission media. Transmission media includes, without limitation, coaxial cables, copper wire and fiber optics.
Computer-readable medium 612 can further include operating system 614 (e.g., Mac OS® server, Windows® NT server), network communication module 616, database interface 620, formatter 630, direct database access module 640, graphical user interface 650, and reference files 660, as described in reference to FIGS. 1-5. Operating system 614 can be multi-user, multiprocessing, multitasking, multithreading, real time, etc. Operating system 614 performs basic tasks, including but not limited to: recognizing input from and providing output to devices 606, 608; keeping track and managing files and directories on computer-readable mediums 612 (e.g., memory or a storage device); controlling peripheral devices; and managing traffic on the one or more communication channels 610. Network communications module 616 includes various components for establishing and maintaining network connections (e.g., software for implementing communication protocols, such as TCP/IP, HTTP, etc.). Direct database access module 640 can include one or more functional components for retrieving a data record from a database using an internal identifier. Reference files 660 can include data values, data record identifications, references to layouts, display modes, and other data and formatting information.
Architecture 600 can be included in any device capable of hosting a database application program. Architecture 600 can be implemented in a parallel processing or peer-to-peer infrastructure or on a single device with one or more processors. Software can include multiple software components or can be a single body of code.
The described features can be implemented advantageously in one or more computer programs that are executable on a programmable system including at least one programmable processor coupled to receive data and instructions from, and to transmit data and instructions to, a data storage system, at least one input device, and at least one output device. A computer program is a set of instructions that can be used, directly or indirectly, in a computer to perform a certain activity or bring about a certain result. A computer program can be written in any form of programming language (e.g., Objective-C, Java), including compiled or interpreted languages, and it can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment.
Suitable processors for the execution of a program of instructions include, by way of example, both general and special purpose microprocessors, and the sole processor or one of multiple processors or cores, of any kind of computer. Generally, a processor will receive instructions and data from a read-only memory or a random access memory or both. The essential elements of a computer are a processor for executing instructions and one or more memories for storing instructions and data. Generally, a computer will also include, or be operatively coupled to communicate with, one or more mass storage devices for storing data files; such devices include magnetic disks, such as internal hard disks and removable disks; magneto-optical disks; and optical disks. Storage devices suitable for tangibly embodying computer program instructions and data include all forms of non-volatile memory, including by way of example semiconductor memory devices, such as EPROM, EEPROM, and flash memory devices; magnetic disks such as internal hard disks and removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks. The processor and the memory can be supplemented by, or incorporated in, ASICs (application-specific integrated circuits).
To provide for interaction with a user, the features can be implemented on a computer having a display device such as a CRT (cathode ray tube) or LCD (liquid crystal display) monitor for displaying information to the user and a keyboard and a pointing device such as a mouse or a trackball by which the user can provide input to the computer.
The features can be implemented in a computer system that includes a back-end component, such as a data server, or that includes a middleware component, such as an application server or an Internet server, or that includes a front-end component, such as a client computer having a graphical user interface or an Internet browser, or any combination of them. The components of the system can be connected by any form or medium of digital data communication such as a communication network. Examples of communication networks include, e.g., a LAN, a WAN, and the computers and networks forming the Internet.
The computer system can include clients and servers. A client and server are generally remote from each other and typically interact through a network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other.
A number of implementations of the invention have been described. Nevertheless, it will be understood that various modifications can be made without departing from the spirit and scope of the invention. Accordingly, other implementations are within the scope of the following claims.
For example, the term “database” can refer to any structured collection of data that is stored on a computer system, including, for example, a relational database, an object-oriented database, a file system, an indexed collection of documents, or any structured data. The term “query” can refer to any request for information retrieval, including, for example, a SQL query, a search request, or a request into a file system. The term “database reporting system” can refer to any system that accepts queries, identifies information using the queries, and presents the identified information to a user in a formatted view. A database reporting system can include, for example, a Relational Database Management System (RDBMS), a desktop file indexing system, or an Internet search engine. The term “reference file” is not limited to a stand-alone file, but can include, for example, a set of two or more files, a body of an electronic mail message, or a data structure stored on a disk, on a flash drive, or in memory of a computer system.

Claims (21)

What is claimed is:
1. A computer-implemented method, comprising:
receiving a first data request to save a formatted view of data, the formatted view of data being defined by a query to a database and a layout, the layout including formatting information for arranging, in the formatted view, a data record retrieved from the database using the query;
in response to the first data request, storing a database report file on a storage device that is different from the database, wherein storing the database report file comprises:
storing a data reference to the data record, the data reference including an address of the data record, the address indicative of where a value of the data record is stored in the database; and
storing the formatting information in association with the data reference;
receiving a second data request to open the database report file to recreate the formatted view of data;
in response to the second data request, retrieving the record from the database using direct access into the database, the direct access being different from a database query and including retrieving one or more values of the data record using the address in the data reference, wherein, when the one or more values of the data record in the database have been updated and are different from values of the data record in the formatted view of data at time of saving, the data record retrieved using the address includes updated information from the database; and
recreating the formatted view of data using the data record retrieved from the database using the address, wherein recreating the formatted view comprises arranging the data record including one or more updated data values according to the formatting information stored in association with the data record in the database report file.
2. The method of claim 1, wherein storing the formatting information comprises:
storing a layout reference to the layout in association with the data reference.
3. The method of claim 2, wherein recreating the formatted view comprises:
retrieving the layout using the stored layout reference; and
arranging the data record using formatting information in the retrieved layout.
4. The method of claim 3, wherein retrieving the layout comprises:
determining whether the stored layout reference points to a valid layout; and
upon a finding that the stored layout reference does not point to a valid layout, retrieve a replacement layout, the replacement layout including a layout based on a table from which the data record is received.
5. The method of claim 1, further comprising:
storing, in association with the data reference:
a state of a current view;
a state of a sort specification;
a state of a view mode; and
a visibility state of a status tool bar.
6. The method of claim 1, wherein the address includes a table identifier identifying a data table in the database, a row identifier identifying a data row in the data table, and a field identifier identifying a data field in the data row.
7. The method of claim 1, wherein retrieving the data record includes:
determining whether a connection to the database is open;
upon determining that the connection is open, retrieving the data record using the connection;
upon determining that the connection is not open,
opening a new connection to the database; and
retrieving the data record using the new connection.
8. A computer program product encoded on a non-transitory computer storage medium, operable to cause data processing apparatus to perform operations comprising:
receiving a first data request to save a formatted view of data, the formatted view being defined by a query to a database and a layout, the layout including formatting information for arranging, in the formatted view, a data record retrieved from the database using the query;
in response to the first data request, storing a database report file on a storage device that is different from the database, wherein storing the database report file comprises:
storing a data reference to the data record, the data reference including an address of the data record, the address indicative of where a value of the data record is stored in the database; and
storing the formatting information in association with the data reference;
receiving a second data request to open the database report file to recreate the formatted view of data;
in response to the second data request, retrieving the data record from the database using direct access into the database, the direct access being different from a database query and including retrieving one or more values of the data record using the address in the data reference, wherein, when the one or more values of the data record in the database have been updated and are different from values of the data record in the formatted view of data at time of saving, the data record retrieved using the address includes updated information from the database; and
recreating the formatted view of data using the data record retrieved from the database using the address, wherein recreating the formatted view comprises arranging the data record including one or more updated data values according to the formatting information stored in association with the data record in the database report file.
9. The product of claim 8, wherein storing the formatting information comprises:
storing a layout reference to the layout in association with the data reference.
10. The product of claim 9, wherein recreating the formatted view comprises:
retrieving the layout using the stored layout reference; and
arranging the data record using formatting information in the retrieved layout.
11. The product of claim 10, wherein retrieving the layout comprises:
determining whether the stored layout reference points to a valid layout; and
upon a finding that the stored layout reference does not point to a valid layout, retrieve a replacement layout, the replacement layout including a layout based on a table from which the data record is received.
12. The product of claim 8, the operations further comprising:
storing, in association with the data reference:
a state of a current view;
a state of a sort specification;
a state of a view mode; and
a visibility state of a status tool bar.
13. The product of claim 8, wherein the address includes a table identifier identifying a data table in the database, a row identifier identifying a data row in the data table, and a field identifier identifying a data field in the data row.
14. The product of claim 8, wherein retrieving the data record includes:
determining whether a connection to the database is open;
upon determining that the connection is open, retrieving the data record using the connection;
upon determining that the connection is not open,
opening a new connection to the database; and
retrieving the data record using the new connection.
15. A system comprising:
one or more computers; and
a computer program product encoded on a non-transitory computer storage medium, operable to cause the one or more computers to perform operations comprising:
receiving a first data request to save a formatted view of data, the formatted view being defined by a query to a database and a layout, the layout including formatting information for arranging, in the formatted view, a data record retrieved from the database using the query;
in response to the first data request, storing a database report file on a storage device that is different from the database, wherein storing the database report file comprises:
storing a data reference to the data record, the data reference including an address of the data record, the address indicative of where a value of the data record is stored in the database; and
storing the formatting information in association with the data reference;
receiving a second data request to open the database report file to recreate the formatted view of data;
in response to the second data request, retrieving the data record from the database using direct access into the database, the direct access being different from a database query and including retrieving one or more values of the data record using the address in the data reference, wherein, when the one or more values of the data record in the database have been updated and are different from values of the data record in the formatted view of data at time of saving, the one or more data record retrieved using the address includes updated information from the database; and
recreating the formatted view of data using the data record retrieved from the database using address, wherein recreating the formatted view comprises arranging the data record including one or more updated data values according to the formatting information stored in association with the data record in the database report file.
16. The system of claim 15, wherein storing the formatting information comprises:
storing a layout reference to the layout in association with the data reference.
17. The system of claim 16, wherein recreating the formatted view comprises:
retrieving the layout using the stored layout reference; and
arranging the data record using formatting information in the retrieved layout.
18. The system of claim 17, wherein retrieving the layout comprises:
determining whether the stored layout reference points to a valid layout; and
upon a finding that the stored layout reference does not point to a valid layout, retrieve a replacement layout, the replacement layout including a layout based on a table from which the data record is received.
19. The system of claim 15, the operations further comprising:
storing, in association with the data reference:
a state of a current view;
a state of a sort specification;
a state of a view mode; and
a visibility state of a status tool bar.
20. The system of claim 15, wherein the address includes a table identifier identifying a data table in the database, a row identifier identifying a data row in the data table, and a field identifier identifying a data field in the data row.
21. The system of claim 15, wherein retrieving the data record includes:
determining whether a connection to the database is open;
upon determining that the connection is open, retrieving the data record using the connection;
upon determining that the connection is not open,
opening a new connection to the database; and
retrieving the data record using the new connection.
US12/540,056 2009-08-12 2009-08-12 Reference file for formatted views Active 2030-10-03 US8700646B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/540,056 US8700646B2 (en) 2009-08-12 2009-08-12 Reference file for formatted views

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US12/540,056 US8700646B2 (en) 2009-08-12 2009-08-12 Reference file for formatted views

Publications (2)

Publication Number Publication Date
US20110040747A1 US20110040747A1 (en) 2011-02-17
US8700646B2 true US8700646B2 (en) 2014-04-15

Family

ID=43589191

Family Applications (1)

Application Number Title Priority Date Filing Date
US12/540,056 Active 2030-10-03 US8700646B2 (en) 2009-08-12 2009-08-12 Reference file for formatted views

Country Status (1)

Country Link
US (1) US8700646B2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20170286195A1 (en) * 2014-09-11 2017-10-05 Systemic Management Science Corporation Information object system

Families Citing this family (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9223762B2 (en) * 2012-08-27 2015-12-29 Google Inc. Encoding information into text for visual representation
US9026562B2 (en) * 2012-10-05 2015-05-05 Hazeltree Fund Services, Inc. Methods and systems for agnostic data storage
US10228826B1 (en) * 2013-05-21 2019-03-12 Progress Software Corporation Alternate presentation types for human workflow activities
US9674261B2 (en) * 2014-06-10 2017-06-06 Sap Portals Israel Ltd. ODBC access to external services
US10282254B1 (en) * 2015-03-30 2019-05-07 EMC IP Holding Company LLC Object layout discovery outside of backup windows
JP6418123B2 (en) * 2015-10-07 2018-11-07 セイコーエプソン株式会社 Information processing apparatus, tape printing apparatus, and display control method for information processing apparatus
US20190146742A1 (en) * 2017-11-15 2019-05-16 Futurewei Technologies, Inc. Providing enriched e-reading experience in multi-display environments
US20210248132A1 (en) * 2020-02-10 2021-08-12 Sigma Computing, Inc. Tracking errors in data set lineage

Citations (46)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4949287A (en) * 1988-06-16 1990-08-14 Kabushiki Kaisha Toshiba Document processing system
US6178419B1 (en) * 1996-07-31 2001-01-23 British Telecommunications Plc Data access system
WO2001008033A2 (en) * 1999-07-23 2001-02-01 Adobe Systems Incorporated Computer generation of documents using layout elements and content elements
EP1081611A2 (en) * 1999-09-03 2001-03-07 Cognos Incorporated Query engine and method for Querying data using metadata model
US6226659B1 (en) * 1996-09-16 2001-05-01 Oracle Corporation Method and apparatus for processing reports
WO2001095137A2 (en) * 2000-06-02 2001-12-13 Overx, Inc. Method and apparatus for managing data location information in a network
US20010056418A1 (en) * 2000-06-10 2001-12-27 Youn Seok Ho System and method for facilitating internet search by providing web document layout image
US20020073284A1 (en) * 1998-10-30 2002-06-13 Fu John Wai Cheong Processing ordered data requests to a memory
US20020184208A1 (en) * 2001-04-24 2002-12-05 Saul Kato System and method for dynamically generating content on a portable computing device
US20020181415A1 (en) * 2001-04-24 2002-12-05 Gerry West System and method for communicating information from a computerized distributor to portable computing devices
US6502134B1 (en) * 1999-05-05 2002-12-31 Nextpage, Inc. Tuple-based information space for data exchange between applications
US20030200194A1 (en) * 2002-04-18 2003-10-23 International Business Machines Corporation Computer apparatus and method for caching results of a database query
US20030220908A1 (en) * 2002-05-21 2003-11-27 Bridgewell Inc. Automatic knowledge management system
US20040001104A1 (en) * 2002-06-28 2004-01-01 Microsoft Corporation Resource browser sessions search
US20040221233A1 (en) * 2003-04-29 2004-11-04 David Thielen Systems and methods for report design and generation
US6826557B1 (en) * 1999-03-16 2004-11-30 Novell, Inc. Method and apparatus for characterizing and retrieving query results
US20040249683A1 (en) * 2003-06-06 2004-12-09 Demarcken Carl G. Query widening for query caches for travel planning systems
US20050097123A1 (en) * 2003-10-31 2005-05-05 International Business Machines Corporation Research data repository system and method
US20050094205A1 (en) * 2003-10-15 2005-05-05 Canon Kabushiki Kaisha Selective preview and proofing of documents or layouts containing variable data
US20050160083A1 (en) * 2004-01-16 2005-07-21 Yahoo! Inc. User-specific vertical search
US20050262059A1 (en) * 2004-05-21 2005-11-24 Bea Systems, Inc. Systems and methods for query caching
CA2472833A1 (en) * 2004-07-02 2006-01-02 Cognos Incorporated System and method of report layout
US20060053091A1 (en) * 2004-08-20 2006-03-09 Microsoft Corporation Extensions for query persistence across requests with dynamic update for writeback
WO2006096939A1 (en) * 2005-03-18 2006-09-21 Kwok Kay Wong Remote access of heterogeneous data
US20060271508A1 (en) * 2005-05-24 2006-11-30 Ju Wu Apparatus and method for augmenting a report with metadata for export to a non-report document
US7225179B2 (en) * 1996-08-28 2007-05-29 Hitachi, Ltd. Querying database system to execute stored procedures using abstract data type attributes, retrieving location information of data, sub-data between first and second servers
US20070174332A1 (en) * 2002-09-27 2007-07-26 Stephens Robert T System and Method for Viewing Search Results
US20070185836A1 (en) * 2006-02-09 2007-08-09 Handy-Bosma John H Method for caching faceted search results
US20070203889A1 (en) * 2006-02-24 2007-08-30 Morgan Brian S System and method for configuring search results using a layout editor
US20070214112A1 (en) * 2006-03-13 2007-09-13 Adobe Systems Incorporated Augmenting the contents of an electronic document with data retrieved from a search
US20070233958A1 (en) * 2004-06-29 2007-10-04 Deyuan Wang Cashe Device and Method for the Same
US7281008B1 (en) * 2003-12-31 2007-10-09 Google Inc. Systems and methods for constructing a query result set
US20070276811A1 (en) * 2006-05-23 2007-11-29 Joshua Rosen Graphical User Interface for Displaying and Organizing Search Results
US20070282809A1 (en) * 2006-06-06 2007-12-06 Orland Hoeber Method and apparatus for concept-based visual
US20070299805A1 (en) * 2006-06-23 2007-12-27 Gregory Belinson System and method of report layout reference processing
US20080005668A1 (en) * 2006-06-30 2008-01-03 Sanjay Mavinkurve User interface for mobile devices
US20080010171A1 (en) * 2006-06-17 2008-01-10 Ghanma Tony T Method for distributing inventory information in a communication system
US20080235608A1 (en) * 2007-03-20 2008-09-25 Microsoft Corporation Customizable layout of search results
US20080256096A1 (en) * 2007-04-13 2008-10-16 Microsoft Corporation Localizing reports using metadata and multilanguage translations
WO2008148576A1 (en) * 2007-06-04 2008-12-11 Tom Tom International B.V. Location data processing apparatus and method of importing location information
US7467131B1 (en) * 2003-09-30 2008-12-16 Google Inc. Method and system for query data caching and optimization in a search engine system
US20090019227A1 (en) * 2007-07-12 2009-01-15 David Koski Method and Apparatus for Refetching Data
US20090157620A1 (en) * 2007-12-12 2009-06-18 Eun Young Kim System and method for searching for documents based on policy
US20090187558A1 (en) * 2008-01-03 2009-07-23 Mcdonald John Bradley Method and system for displaying search results
US20090307257A1 (en) * 2008-06-10 2009-12-10 Oracle International Corporation Techniques for creating reports using cached data
US7668860B2 (en) * 2007-04-02 2010-02-23 Business Objects Software Ltd. Apparatus and method for constructing and using a semantic abstraction for querying hierarchical data

Patent Citations (47)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4949287A (en) * 1988-06-16 1990-08-14 Kabushiki Kaisha Toshiba Document processing system
US6178419B1 (en) * 1996-07-31 2001-01-23 British Telecommunications Plc Data access system
US7225179B2 (en) * 1996-08-28 2007-05-29 Hitachi, Ltd. Querying database system to execute stored procedures using abstract data type attributes, retrieving location information of data, sub-data between first and second servers
US6226659B1 (en) * 1996-09-16 2001-05-01 Oracle Corporation Method and apparatus for processing reports
US20020073284A1 (en) * 1998-10-30 2002-06-13 Fu John Wai Cheong Processing ordered data requests to a memory
US6826557B1 (en) * 1999-03-16 2004-11-30 Novell, Inc. Method and apparatus for characterizing and retrieving query results
US6502134B1 (en) * 1999-05-05 2002-12-31 Nextpage, Inc. Tuple-based information space for data exchange between applications
WO2001008033A2 (en) * 1999-07-23 2001-02-01 Adobe Systems Incorporated Computer generation of documents using layout elements and content elements
EP1081611A2 (en) * 1999-09-03 2001-03-07 Cognos Incorporated Query engine and method for Querying data using metadata model
WO2001095137A2 (en) * 2000-06-02 2001-12-13 Overx, Inc. Method and apparatus for managing data location information in a network
US20010056418A1 (en) * 2000-06-10 2001-12-27 Youn Seok Ho System and method for facilitating internet search by providing web document layout image
US20020181415A1 (en) * 2001-04-24 2002-12-05 Gerry West System and method for communicating information from a computerized distributor to portable computing devices
US20020184208A1 (en) * 2001-04-24 2002-12-05 Saul Kato System and method for dynamically generating content on a portable computing device
US20050182761A1 (en) * 2001-04-24 2005-08-18 Saul Kato System and method for dynamically generating content on a portable computing device
US20030200194A1 (en) * 2002-04-18 2003-10-23 International Business Machines Corporation Computer apparatus and method for caching results of a database query
US20030220908A1 (en) * 2002-05-21 2003-11-27 Bridgewell Inc. Automatic knowledge management system
US20040001104A1 (en) * 2002-06-28 2004-01-01 Microsoft Corporation Resource browser sessions search
US20070174332A1 (en) * 2002-09-27 2007-07-26 Stephens Robert T System and Method for Viewing Search Results
US20040221233A1 (en) * 2003-04-29 2004-11-04 David Thielen Systems and methods for report design and generation
US20040249683A1 (en) * 2003-06-06 2004-12-09 Demarcken Carl G. Query widening for query caches for travel planning systems
US7467131B1 (en) * 2003-09-30 2008-12-16 Google Inc. Method and system for query data caching and optimization in a search engine system
US20050094205A1 (en) * 2003-10-15 2005-05-05 Canon Kabushiki Kaisha Selective preview and proofing of documents or layouts containing variable data
US20050097123A1 (en) * 2003-10-31 2005-05-05 International Business Machines Corporation Research data repository system and method
US7281008B1 (en) * 2003-12-31 2007-10-09 Google Inc. Systems and methods for constructing a query result set
US20050160083A1 (en) * 2004-01-16 2005-07-21 Yahoo! Inc. User-specific vertical search
US20050262059A1 (en) * 2004-05-21 2005-11-24 Bea Systems, Inc. Systems and methods for query caching
US20070233958A1 (en) * 2004-06-29 2007-10-04 Deyuan Wang Cashe Device and Method for the Same
CA2472833A1 (en) * 2004-07-02 2006-01-02 Cognos Incorporated System and method of report layout
US20060053091A1 (en) * 2004-08-20 2006-03-09 Microsoft Corporation Extensions for query persistence across requests with dynamic update for writeback
WO2006096939A1 (en) * 2005-03-18 2006-09-21 Kwok Kay Wong Remote access of heterogeneous data
US20060271508A1 (en) * 2005-05-24 2006-11-30 Ju Wu Apparatus and method for augmenting a report with metadata for export to a non-report document
US20070185836A1 (en) * 2006-02-09 2007-08-09 Handy-Bosma John H Method for caching faceted search results
US20070203889A1 (en) * 2006-02-24 2007-08-30 Morgan Brian S System and method for configuring search results using a layout editor
US20070214112A1 (en) * 2006-03-13 2007-09-13 Adobe Systems Incorporated Augmenting the contents of an electronic document with data retrieved from a search
US20070276811A1 (en) * 2006-05-23 2007-11-29 Joshua Rosen Graphical User Interface for Displaying and Organizing Search Results
US20070282809A1 (en) * 2006-06-06 2007-12-06 Orland Hoeber Method and apparatus for concept-based visual
US20080010171A1 (en) * 2006-06-17 2008-01-10 Ghanma Tony T Method for distributing inventory information in a communication system
US20070299805A1 (en) * 2006-06-23 2007-12-27 Gregory Belinson System and method of report layout reference processing
US20080005668A1 (en) * 2006-06-30 2008-01-03 Sanjay Mavinkurve User interface for mobile devices
US20080235608A1 (en) * 2007-03-20 2008-09-25 Microsoft Corporation Customizable layout of search results
US7668860B2 (en) * 2007-04-02 2010-02-23 Business Objects Software Ltd. Apparatus and method for constructing and using a semantic abstraction for querying hierarchical data
US20080256096A1 (en) * 2007-04-13 2008-10-16 Microsoft Corporation Localizing reports using metadata and multilanguage translations
WO2008148576A1 (en) * 2007-06-04 2008-12-11 Tom Tom International B.V. Location data processing apparatus and method of importing location information
US20090019227A1 (en) * 2007-07-12 2009-01-15 David Koski Method and Apparatus for Refetching Data
US20090157620A1 (en) * 2007-12-12 2009-06-18 Eun Young Kim System and method for searching for documents based on policy
US20090187558A1 (en) * 2008-01-03 2009-07-23 Mcdonald John Bradley Method and system for displaying search results
US20090307257A1 (en) * 2008-06-10 2009-12-10 Oracle International Corporation Techniques for creating reports using cached data

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
Integrating layout into multi-media data retrieval, Cruz et al, AAAI Technical Report FS-99-04, 1999. *
Retrieval of document images using layout knowledge, Herrmann et al, IEEE 1993. *
Using views for retrieving data for extremely heterogeneous databanks, Etzold et al, Pacific Symposium on Biocomputing, 1997. *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20170286195A1 (en) * 2014-09-11 2017-10-05 Systemic Management Science Corporation Information object system

Also Published As

Publication number Publication date
US20110040747A1 (en) 2011-02-17

Similar Documents

Publication Publication Date Title
US8700646B2 (en) Reference file for formatted views
US8914414B2 (en) Integrated repository of structured and unstructured data
US9009201B2 (en) Extended database search
US11907247B2 (en) Metadata hub for metadata models of database objects
US7305613B2 (en) Indexing structured documents
US9390179B2 (en) Federated search
US7770180B2 (en) Exposing embedded data in a computer-generated document
US7895226B2 (en) System and method for translating and executing update requests
US7472140B2 (en) Label-aware index for efficient queries in a versioning system
US20030105745A1 (en) Text-file based relational database
US20090327277A1 (en) Methods and apparatus for reusing data access and presentation elements
US20040187111A1 (en) Content management portal and method for communicating media content
US10042889B2 (en) Pseudo columns for data retrieval
US20150127599A1 (en) Stateless database cache
US20130304769A1 (en) Document Merge Based on Knowledge of Document Schema
US8423512B2 (en) Leveraging XML capabilities of a database to enhance handling of document data
US7890540B2 (en) Browsing meta data for an enterprise service framework
US8065605B2 (en) Indexing structured documents
US20110087709A1 (en) Methods and system for dynamic database content persistence and information management
US20090012948A1 (en) System and method for translating and executing queries
US7899834B2 (en) Method and apparatus for storing and maintaining structured documents
US20130018898A1 (en) Tracking queries and retrieved results
KR20040077535A (en) System and method for generating a request for information about selected objects
US20240119071A1 (en) Relationship-based display of computer-implemented documents
Pokorný XML in Enterprise Systems: Its Roles and Benefits

Legal Events

Date Code Title Description
AS Assignment

Owner name: APPLE INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:BRAD, VLADIMIR;CRIM, CHRISTOPHER;MCKEE, DAVID;AND OTHERS;SIGNING DATES FROM 20090911 TO 20090915;REEL/FRAME:023424/0095

FEPP Fee payment procedure

Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

STCF Information on status: patent grant

Free format text: PATENTED CASE

CC Certificate of correction
MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551)

Year of fee payment: 4

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 8