一个简单的EJB实例.用DB2连接.JSP页面.很好用.供大家学习

源代码在线查看: purchaselocal.java

软件大小: 2249 K
上传用户: face137
关键词: EJB DB2 JSP 连接
下载地址: 免注册下载 普通下载 VIP

相关代码

				package salesdb;
				/**
				 * Local interface for Enterprise Bean: Purchase
				 */
				public interface PurchaseLocal extends javax.ejb.EJBLocalObject {
					/**
					 * Get accessor for persistent attribute: timestmp
					 */
					public java.lang.String getTimestmp();
					/**
					 * Set accessor for persistent attribute: timestmp
					 */
					public void setTimestmp(java.lang.String newTimestmp);
					/**
					 * This method was generated for supporting the relationship role named itemfk.
					 * It will be deleted/edited when the relationship is deleted/edited.
					 */
					public salesdb.ItemLocal getItemfk();
					/**
					 * This method was generated for supporting the relationship role named itemfk.
					 * It will be deleted/edited when the relationship is deleted/edited.
					 */
					public void setItemfk(salesdb.ItemLocal anItemfk);
					/**
					 * This method was generated for supporting the relationship role named locationfk.
					 * It will be deleted/edited when the relationship is deleted/edited.
					 */
					public salesdb.LocationLocal getLocationfk();
					/**
					 * This method was generated for supporting the relationship role named locationfk.
					 * It will be deleted/edited when the relationship is deleted/edited.
					 */
					public void setLocationfk(salesdb.LocationLocal aLocationfk);
				}
							

相关资源