What is true about Primary Key class in Entity Beans ?(a) Used to identify the entity bean based on EJB type, Home Interface and Container Context. (b) Used to identify the entity bean based on EJB type, Remote Interface and Container Context. (c) The definition of Primary Key class can be deferred till deployment
The Home Interface in Entity beans(a) Provides at least one create() method (b) May not provide any create() method (c) Provides at least one findByPrimaryKey() method (d) May not provide any findByPrimaryKey() method
Latest Answer : b ...
Answered by Hari on 2005-05-09 07:50:11: This will be called by the container to synchonize all the values of the entity at any point of time
Latest Answer : This will be called by the container to synchonize all the values of the entity at any point of time ...
CMP bean provides(a) Empty implementation of ejbLoad() and ejbStore() (b) Concrete implementation of ejbLoad() and ejbStore()
Answered by Hari on 2005-05-09 07:53:40: a
Linux Thin Client Networks Design and Deployment Review | |
Linux Thin Client Networks Design and Deployment Review Introduction This book is written by David Richards a veteran Linux thin client network designer Designed for System Administrators Linux Thin Client Networks Design and Deployment goes over the concepts which are related to thin client network |
|
Performing DML Operations on XML Schema Based XMLType Views | |
Performing DML Operations on XML Schema Based XMLType Views Analyzing the underlying query of the empSch v view discussed in the preceding section you may note that each attribute of the EMP T object used in the select list maps to a certain column of a single table namely emps What this means in pr |
|
High-Speed Serial Interface (HSSI) | |
High Speed Serial Interface HSSI HSSI is High Speed Serial Interface was first developed by Cisco systems and the main purpose was to solve high speed requirement issues The main application of HSSI is on the Wide Area Networks and it helps to enhance the data flow speed on these networks It can wor |
|
Fiber Distributed Data Interface (FDDI) | |
Fiber Distributed Data Interface FDDI The Fiber Distributed data interface or the FDDI is a 100 mbps line using the LAN network and is connected through a fiber optic cable The FDDI technology is used where the networks need a high speed bandwidth and need to cover huge distances than the copper wir |
|
Microsoft AJAX Library - JavaScript Execution Context | |
JavaScript Execution Context In this section we ll take a peek under the hood of the JavaScript closures and the mechanisms that allow us to create classes objects and object members in JavaScript For most cases understanding these mechanisms isn t absolutely necessary for writing JavaScript code&am |
|
C++ Pure Virtual Function and Base Class | |
C Pure Virtual Function and Virtual Base Class In this C tutorial you will learn about pure virtual function declaration of pure virtual function and virtual base class virtual base class and how to implement a virtual base class explained with examples mosgoogle center What is Pure Virtual Function |
|
How to Access C++ Class Members | |
How to Access C Class Members In this C tutorial you will learn how to access Class members dot operator or class member access operator difference between struct and class and scope resolution operator mosgoogle center It is possible to access the class members after a class is defined an |
|
What is Data Entity | |
Data Entity represents a data subject from the common data model that is used in the logical data model.
A Data Model has three theoretical components. The first is the structural component which is a collection of data structures which will used to represent entities or objects in the database. The |
|
What is Comprehensive Data Definition | |
A Comprehensive Data Definition refers to a formal data definition that provides a complete, meaningful, easily read, readily understood definition explaining the content and meaning of data.
In a business enterprise environment where people are heavily depending on intelligent business systems (bus |
|
What happens when a variable is not declared in function definition? | |
Generally in C program the function definition and calling takes the form as given below:
main()
{
int x,y,z;
z=sample(x,y);
printf(“%d”,z);
}
sample(x1,y1)
int x1,y1;
{
int z1;
z1= x1 - y1;
return(z1);
}
Here what happens is the values x, y gets passed to x1,y1 |
|
|