一个内存数据库的源代码这是服务器端还有客户端

源代码在线查看: const.mal

软件大小: 3963 K
上传用户: dasdasdc
关键词: 内存数据库 源代码 服务器
下载地址: 免注册下载 普通下载 VIP

相关代码

								#line 38 "/export/scratch0/monet/monet.GNU.64.64.d.14791/MonetDB5/src/modules/mal/const.mx"				module const;								pattern open():void				address CSTopen				comment "Locate and open the constant box";				pattern close():void				address CSTclose				comment "Close the constant box ";				pattern destroy():void				address CSTdestroy				comment "Destroy the box";				pattern take(name:str):any_1 				address CSTtake				comment "Take a variable out of the box";				pattern deposit(name:str,val:any_1) :void 						address CSTdeposit				comment "Enter a new variable into the box";								pattern releaseAll():void 				address CSTreleaseAll				comment "Release all variables in the box";				pattern release(name:str) :void 						address CSTrelease				comment "Release a new constant value";				pattern release(name:any_1):void 				address CSTrelease				comment "Release a new constant value";				pattern toString(name:any_1):str 				address CSTtoString				comment "Get the string representation of an element in the box";				pattern discard(name:any_1) :void 						address CSTdiscard				comment "Release the const from the box";				pattern newIterator()(:lng,:str)				address CSTnewIterator				comment "Locate next element in the box";				pattern hasMoreElements()(:lng,:str)				address CSThasMoreElements				comment "Locate next element in the box";																#line 79 "/export/scratch0/monet/monet.GNU.64.64.d.14791/MonetDB5/src/modules/mal/const.mx"				pattern prelude():void 				address CSTprelude				comment "Initialize the const box";								command epiloque():void 				address CSTepilogue				comment "Cleanup the const box";								const.prelude();											

相关资源