GB2405964A - Database access - Google Patents

Database access Download PDF

Info

Publication number
GB2405964A
GB2405964A GB0321561A GB0321561A GB2405964A GB 2405964 A GB2405964 A GB 2405964A GB 0321561 A GB0321561 A GB 0321561A GB 0321561 A GB0321561 A GB 0321561A GB 2405964 A GB2405964 A GB 2405964A
Authority
GB
United Kingdom
Prior art keywords
server
client
database
user
interface
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.)
Withdrawn
Application number
GB0321561A
Other versions
GB0321561D0 (en
Inventor
Olivier Roger
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.)
Siemens AG
Original Assignee
Siemens AG
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 Siemens AG filed Critical Siemens AG
Priority to GB0321561A priority Critical patent/GB2405964A/en
Publication of GB0321561D0 publication Critical patent/GB0321561D0/en
Publication of GB2405964A publication Critical patent/GB2405964A/en
Withdrawn legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q10/00Administration; Management
    • G06Q10/10Office automation; Time management
    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16HHEALTHCARE INFORMATICS, i.e. INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR THE HANDLING OR PROCESSING OF MEDICAL OR HEALTHCARE DATA
    • G16H10/00ICT specially adapted for the handling or processing of patient-related medical or healthcare data
    • G16H10/60ICT specially adapted for the handling or processing of patient-related medical or healthcare data for patient-specific data, e.g. for electronic patient records
    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16HHEALTHCARE INFORMATICS, i.e. INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR THE HANDLING OR PROCESSING OF MEDICAL OR HEALTHCARE DATA
    • G16H70/00ICT specially adapted for the handling or processing of medical references
    • G16H70/60ICT specially adapted for the handling or processing of medical references relating to pathologies

Abstract

A user inputs a reference via an interface to a server; the server accesses the database, the database returning information relating to that reference only, to the server, and the server sends information pertaining to the reference to the user via the interface.

Description

DATABASE ACCESS METHOD
The invention relates to a system wherein a server is used to access a database. The invention is particularly applicable to a Object Request Broker (ORB) environment. An ORB is a software architecture that allows some objects (client objects) to access remote object (server objects) as if they were located on the same machine. In general lo architecture has servers and clients. In order to be accessible, the remote objects must be made available on the network in a published manner i.e. bound. The process of publishing an object is giving it a unique name; this is called binding an object. This is done by a publisher, alternatively known as a "broker".
In a basic structure of systems to which the invention is applied, the server object has a broker, which makes the decision of creating a server object. In prior art systems a bound object is always created from the decision of its own server object. Figure l shows how the current art operates.
Figure l shows the flow of information in a typical system. The system comprises a client and a server with data flow between them. The client has the reference item i.e. the remote object which is already known (e.g. Is VOLKSWAGEN) this is then sent to the server to look up. This is done by the server, which generally creates and binds the object (VOLKSWAGEN) with a further string. In this case the server provides a reference which is sent back to the client. The client can then request an :.. ace:e.* 45: . object property e.g. colour to the server where after the server will return the property value, e.g. blue. A further option is that the client can change the colour by sending an execute method i.e. a function applied to the object e.g. change the colour of the car (respray car in red). Once this change has been implemented the value (i.e. red) is returned.
The system relies on an ORB call flow in which the decision in binding an object is server based. In other words it is always the server that decides to create an object and makes it available on the object.
The problem with this however is that it is highly desirable that the client rather than the server makes the decision to create an object on the server side.
Is In the invention e.g. the client notifies the server of the creation and binding of an object, and this notification mechanism uses a dedicated remote object (bound on the server which hosts the created objects). It is a bit like an object factory.
The creation of the object may use for example uses the following steps: a) the client informs the server of the creation of an object b) a dedicated remote object bound on the server creates the object and binds it with a specific unique ID, e.g. the cocatenation of the class 2s name and a computed hash code c) the dedicated remote object sends back the unique ID to the client, so that the client knows the name of the bound object.
:. . .e ë.. If': d) with the name the client can create a local reference to the new remote object e) the client then dialogues with the remote object as usual.
s Example 1
Figure 2 shows an example of the information system where customers are registered in a server and the client hosts a Graphic User Interface.
This is the visible part of the client software, from the user point of view.
lo The client retrieves the list of customers names from the server. Through the GUI of the client the user selects a name in order to retrieve all the information from the server. The client asks the server to create a remote customer object, and the relevant information is shown on the interface.
is The decision of the creation of a server object is now made on the client.
It is possible thanks to the use of a dedicated bound server object.
The advantages are the client does not have to know in advance the name of the object instances on the server. Also the server does not have to ho bind a lot of objects so that the client can find the desired one. Only the asked objects are created and bound. This reduces memory consumption on the server and optimises the network traffic between the client and the server
Is Example 2
Figure 3 illustrates a further example of the invention. Figure 3a and 3b shows an example of the prior art and the invention respectively. : . . 4 '.
Both figures show the data flow from and to the user (left-hand side) to a database (right-hand side) via a graphic user interface and a server.
In the example the user requests a patient details using a reference. The s server is to return to the user via the interface name of the patient. In the prior art the server must create a reference for all the patients. As a consequence the memory used is large and includes a list of all patients.
In contrast, in the invention only a single reference to the patient is lo created. From this reference the name (or another attribute of the reference) can be selected and returned.
In other words, the server bids searching objects dedicated to finding a given information e.g. patient in a database and a match (or matching list of names) is returned. In this list, the user selects an entry (on the client side). The client asks the server for the creation of the corresponding object and then can retrieve all the properties of the newly bound server object to display on its interface.
Example 3
An operator on the client application has the list of telephone numbers of the subscribers he wants to know the detailed bill of this customer. The client application asks the server for the creation of the remote object corresponding to the subscriber and can then retrieve the information it Is wants from this remote object. The advantage here is that the server does not have to transmit all the information about the subscriber and does not have to bind the remote objects corresponding to the whole list of subscribers

Claims (2)

::: :: -' :. : :: is . --e CLAIMS
1. A method of accessing a database comprising the following steps: a) a user inputting a reference, via an interface to a server; b) the server accessing the database, the database returning information relating to that reference only, to the server, and c) the server sending information pertaining to the reference to the user via the interface. lo
2. A method as claimed in claim l wherein after step c) the user and server communicate further via the interface such that only specific user requested information from within said database returned information is sent from the server to the user.
GB0321561A 2003-09-15 2003-09-15 Database access Withdrawn GB2405964A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
GB0321561A GB2405964A (en) 2003-09-15 2003-09-15 Database access

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
GB0321561A GB2405964A (en) 2003-09-15 2003-09-15 Database access

Publications (2)

Publication Number Publication Date
GB0321561D0 GB0321561D0 (en) 2003-10-15
GB2405964A true GB2405964A (en) 2005-03-16

Family

ID=29227097

Family Applications (1)

Application Number Title Priority Date Filing Date
GB0321561A Withdrawn GB2405964A (en) 2003-09-15 2003-09-15 Database access

Country Status (1)

Country Link
GB (1) GB2405964A (en)

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5940289A (en) * 1996-08-28 1999-08-17 Hitachi, Ltd. Parallel database system retrieval method of a relational database management system using initial data retrieval query and subsequent sub-data utilization query processing for minimizing query time
EP1156428A2 (en) * 2000-05-18 2001-11-21 Microsoft Corporation Databinding using server-side control objects

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5940289A (en) * 1996-08-28 1999-08-17 Hitachi, Ltd. Parallel database system retrieval method of a relational database management system using initial data retrieval query and subsequent sub-data utilization query processing for minimizing query time
EP1156428A2 (en) * 2000-05-18 2001-11-21 Microsoft Corporation Databinding using server-side control objects

Also Published As

Publication number Publication date
GB0321561D0 (en) 2003-10-15

Similar Documents

Publication Publication Date Title
US6272492B1 (en) Front-end proxy for transparently increasing web server functionality
US7003546B1 (en) Method and system for controlled distribution of contact information over a network
US6615353B1 (en) User authentication method and user authentication system
USRE45295E1 (en) System and method for integrating public and private data
US7996468B2 (en) Method and system for controlled distribution of information profiles over a network in response to user requests
US8015317B2 (en) Method, system and computer-readable medium for conducting domain name service
JP4372236B2 (en) Universal Directory Service
US7296065B2 (en) System for on-line financial services using distributed objects
EP1482707B1 (en) An internet interface system
US5790665A (en) Anonymous information retrieval system (ARS)
US6441834B1 (en) Hyper-relational correlation server
US20070078997A1 (en) Efficient endpoint matching using a header-to-bit conversion table
US8745088B2 (en) System and method of performing risk analysis using a portal
US20090177778A1 (en) Session Affinity Cache and Manager
US20040181683A1 (en) Privacy protection system and method
EP1057310A1 (en) System and method for controlling access to stored documents
EP0636969A2 (en) Method and apparatus for providing an extensible set of auxiliary services for objects in an object-oriented system
JP2003532195A (en) Method and system for retrieving search results from multiple distinct databases
JP2002507308A (en) Method and apparatus for redirecting a hyperlink query to an external server
US8521875B2 (en) Identity for data sources
US20040133799A1 (en) Systems and methods for providing zip code linked web sites
US20100153172A1 (en) Interactive Analysis and Reporting System for Telecom and Network Industry Data
GB2405964A (en) Database access
JPH08221364A (en) Decentralized management method for user registration book
US20030105757A1 (en) Application service provider apparatus and method

Legal Events

Date Code Title Description
WAP Application withdrawn, taken to be withdrawn or refused ** after publication under section 16(1)