一个数据访问层Torque3.1的生成器的源代码

源代码在线查看: table.vm

软件大小: 241 K
上传用户: xiaochonghan
关键词: Torque 3.1 数据访问 生成器
下载地址: 免注册下载 普通下载 VIP

相关代码

								$table.Name				$!table.Description												  				    Name				    Type				    Size				    Default				    JavaName				    PK				    FK				    not null				    Description				  				#foreach ($col in $table.Columns)				  				    $col.Name				    $col.Type				    #if ($col.printSize() && $col.printSize().length() > 0) $col.printSize() #else  #end				    #if ($col.DefaultValue) $col.DefaultValue#else  #end				    $col.JavaName				     #if ($col.isPrimaryKey()==true)X#else  #end 				     #if ($col.isForeignKey()==true)X#else  #end 				     #if ($col.isNotNull()==true)X#else  #end 				    #if ($col.Description) $col.Description#else  #end				  				#end												#foreach ( $fk in $table.ForeignKeys )				if( document.getElementById  )				{				var col = document.getElementById("$table.Name$fk.LocalColumnNames");				col.style.backgroundColor = "$docHtmlFkColor";				col.title="Foreignkey from $fk.ForeignTableName.$fk.ForeignColumnNames";				}				#end											

相关资源