I would recommend you to upgrade your Velocity JAR. I had similar problems with some older version of Velocity (don't remember the exact version, 1.4-dev works for me). The problem is the combination of windows + unix style linefeeds in text file (templates or xml).
Hope this helps, Neeme Ben Walding wrote: > Has anyone seen the following error as velocity tries to build the > postgresql DDL for a schema? > > [error] Method chop threw exception for reference $strings in template > sql/base/postgresql/table.vm at [20,25] > [error] Method parse threw exception for reference $generator in > template sql/base/Control.vm at [17,7] > > (full stack traces + schema attached) > > I've tried both the maven torque-3.0b4 jar file and one built from CVS > at TORQUE_3_0_B4. Both have the same error generating for postgresql. > I've also tried switching my torque.dbtype from postgresql to mysql and > it also works (in 3.0b4). However this is not a solution for me, it > just indicates (to me) that my schema is ok (hasn't changed in a long > time - 2 months). > > > > ------------------------------------------------------------------------ > > <?xml version="1.0"?> > <!DOCTYPE database SYSTEM "http://jakarta.apache.org/turbine/dtd/database.dtd"> > <database defaultJavaNamingMethod="nochange"> > <table name="ID_TABLE" idMethod="idbroker"> > <column name="ID_TABLE_ID" required="true" primaryKey="true" type="INTEGER"/> > <column name="TABLE_NAME" required="true" size="255" type="VARCHAR"/> > <column name="NEXT_ID" type="INTEGER"/> > <column name="QUANTITY" type="INTEGER"/> > > <unique> > <unique-column name="TABLE_NAME"/> > </unique> > </table> > > > <table name="MComment" javaName="Comment" idMethod="idbroker" > description="Stores various comments made by users about images"> > <column > name="rfMComment" > javaName="ID" > primaryKey="true" required="true" type="INTEGER"/> > <column name="rfMFolderImage" javaName="FolderImageID" required="true" >type="INTEGER"/> > <column name="rfMUser" javaName="UserID" required="true" type="INTEGER"/> > <column name="txcomment" javaName="Comment" required="true" type="VARCHAR"/> > <column name="dtcomment" javaName="Date" required="true" type="TIMESTAMP"/> > <foreign-key foreignTable="MUser"> > <reference foreign="rfMUser" local="rfMUser"/> > </foreign-key> > <foreign-key foreignTable="MFolderImage"> > <reference foreign="rfMFolderImage" local="rfMFolderImage"/> > </foreign-key> > </table> > > <table name="MFolder" javaName="Folder" idMethod="idbroker"> > <column > name="rfMFolder" > javaName="ID" > required="true" primaryKey="true" type="INTEGER"/> > <column name="txtitle" javaName="Title" required="true" size="255" >type="VARCHAR"/> > <column name="txdescription" javaName="Description" required="true" >size="255" type="VARCHAR"/> > <column name="parent_rfMFolder" javaName="ParentFolderID" type="INTEGER"/> > <column name="txpath" javaName="Path" required="true" size="255" >type="VARCHAR"/> > <column name="insortorder" javaName="SortOrder" required="true" >type="INTEGER"/> > <column name="txlongdescription" javaName="LongDescription" type="VARCHAR"/> > <column name="blvisible" javaName="Visible" type="INTEGER"/> > <foreign-key foreignTable="MFolder"> > <reference foreign="rfMFolder" local="parent_rfMFolder"/> > </foreign-key> > </table> > > <table name="MFolderImage" javaName="FolderImage" idMethod="idbroker"> > <column > name="rfMFolderImage" javaName="ID" primaryKey="true" required="true" >type="INTEGER"/> > <column name="rfMFolder" javaName="FolderID" required="true" type="INTEGER"/> > <column name="rfMImage" javaName="ImageID" required="true" type="INTEGER"/> > <column default="1" name="blVisible" javaName="Visible" required="true" >type="INTEGER"/> > <column default="0" name="inSortOrder" javaName="SortOrder" required="true" >type="INTEGER"/> > <column name="flRating1" javaName="Rating1" required="false" type="FLOAT"/> > <column name="flRating2" javaName="Rating2" required="false" type="FLOAT"/> > <column name="flRating3" javaName="Rating3" required="false" type="FLOAT"/> > <column name="flRating4" javaName="Rating4" required="false" type="FLOAT"/> > <column name="flRating5" javaName="Rating5" required="false" type="FLOAT"/> > <column name="flRating6" javaName="Rating6" required="false" type="FLOAT"/> > <column name="flRating7" javaName="Rating7" required="false" type="FLOAT"/> > <column name="flRating8" javaName="Rating8" required="false" type="FLOAT"/> > <foreign-key foreignTable="MFolder"> > <reference foreign="rfMFolder" local="rfMFolder"/> > </foreign-key> > <foreign-key foreignTable="MImage"> > <reference foreign="rfMImage" local="rfMImage"/> > </foreign-key> > <unique> > <unique-column name="rfMFolder"/> > <unique-column name="rfMImage"/> > </unique> > </table> > <table name="MFolderRole" javaName="FolderRole" idMethod="idbroker"> > <column > name="rfMFolderRole" javaName="ID" primaryKey="true" required="true" >type="INTEGER"/> > <column name="rfMFolder" javaName="FolderID" required="true" type="INTEGER"/> > <column name="rfMRole" javaName="RoleID" required="true" type="INTEGER"/> > <column name="txpermissions" javaName="Permissions" required="true" >size="20" type="VARCHAR"/> > <foreign-key foreignTable="MFolder"> > <reference foreign="rfMFolder" local="rfMFolder"/> > </foreign-key> > <foreign-key foreignTable="MRole"> > <reference foreign="rfMRole" local="rfMRole"/> > </foreign-key> > <unique> > <unique-column name="rfMFolder"/> > <unique-column name="rfMRole"/> > </unique> > </table> > <table name="MImage" javaName="Image" idMethod="idbroker"> > <column > name="rfMImage" javaName="ID" primaryKey="true" required="true" >type="INTEGER"/> > <column name="txFile" javaName="File" required="true" size="255" >type="VARCHAR"/> > <column name="txPath" javaName="Path" required="false" size="255" >type="VARCHAR"/> > <column name="txImageAlt" javaName="ImageAlt" size="255" type="VARCHAR"/> > <column default="" javaName="Description" name="txdescription" >required="true" > size="255" type="VARCHAR"/> > <column name="txLongDescription" javaName="LongDescription" type="VARCHAR"/> > <column name="txKeywords" javaName="Keywords" type="VARCHAR" size="255" >required="true" default=""/> > <column default="0" name="inhitcount" javaName="HitCount" required="true" >type="INTEGER"/> > <column default="0" name="inwidth" javaName="Width" required="true" >type="INTEGER"/> > <column default="0" name="inheight" javaName="Height" required="true" >type="INTEGER"/> > <column name="flrotate" javaName="Rotate" type="NUMERIC"/> > <column name="dttaken" type="TIMESTAMP"/> > <column name="dtloaded" javaName="Loaded" required="true" type="TIMESTAMP"/> > <column name="dtlastmodified" javaName="LastModified" required="true" >type="TIMESTAMP"/> > <unique> > <unique-column name="txFile"/> > <unique-column name="txPath"/> > </unique> > </table> > <table name="MMail" javaName="Mail" idMethod="idbroker"> > <column > name="rfMMail" primaryKey="true" required="true" type="INTEGER"/> > <column name="txemail" javaName="EMail" size="255" type="VARCHAR"/> > <column name="txsubject" javaName="Subject" size="255" type="VARCHAR"/> > <column name="rfMUser" javaName="UserID" type="INTEGER"/> > <column name="txtext" javaName="Text" type="VARCHAR"/> > <column name="txid" size="255" type="VARCHAR"/> > <column name="rfMFolderImage" javaName="FolderImageID" type="INTEGER"/> > <column name="ihstate" javaName="State" size="1" type="CHAR"/> > <foreign-key foreignTable="MFolderImage"> > <reference foreign="rfMFolderImage" local="rfMFolderImage"/> > </foreign-key> > <foreign-key foreignTable="MUser"> > <reference foreign="rfMUser" local="rfMUser"/> > </foreign-key> > > </table> > <table name="MRole" javaName="Role" idMethod="idbroker"> > <column > name="rfMRole" javaName="ID" primaryKey="true" required="true" >type="INTEGER"/> > <column default="1" name="rfMRoleType" required="true" type="INTEGER"/> > <column name="rfMUser" type="INTEGER"/> > <column name="txBrief" javaName="Brief" required="true" size="8" >type="VARCHAR"/> > <column name="txDescription" javaName="Description" size="40" >type="VARCHAR"/> > <foreign-key foreignTable="MRoleType"> > <reference foreign="rfMRoleType" local="rfMRoleType"/> > </foreign-key> > <foreign-key foreignTable="MUser"> > <reference foreign="rfMUser" local="rfMUser"/> > </foreign-key> > <unique> > <unique-column name="rfMRoleType"/> > <unique-column name="txBrief"/> > </unique> > </table> > <table name="MRoleType" javaName="RoleType" idMethod="idbroker"> > <column > name="rfMRoleType" primaryKey="true" required="true" type="INTEGER"/> > <column name="txbrief" required="true" size="8" type="VARCHAR"/> > <column name="txdescription" required="true" size="40" type="VARCHAR"/> > <unique> > <unique-column name="txBrief"/> > </unique> > </table> > <table name="MTheme" javaName="Theme" idMethod="idbroker"> > <column > name="rfMTheme" javaName="ID" primaryKey="true" required="true" >type="INTEGER"/> > <column name="txbrief" javaName="Brief" required="true" size="8" >type="VARCHAR"/> > <column name="txdescription" javaName="Description" size="40" >type="VARCHAR"/> > <column name="txstylesheet" javaName="StyleSheet" required="true" size="255" >type="VARCHAR"/> > <unique> > <unique-column name="txBrief"/> > </unique> > </table> > <table name="MUser" javaName="User" idMethod="idbroker"> > <column > name="rfMUser" javaName="ID" primaryKey="true" required="true" >type="INTEGER"/> > <column name="txusername" javaName="UserName" required="true" size="255" >type="VARCHAR"/> > <column name="txpassword" required="true" size="20" type="VARCHAR"/> > <column default="200x200" name="txthumbnailsize" javaName="ThumbnailSize" > required="true" size="20" type="VARCHAR"/> > <column name="txfirstname" javaName="FirstName" required="true" size="40" >type="VARCHAR"/> > <column name="txlastname" javaName="LastName" required="true" size="40" >type="VARCHAR"/> > <column name="txcommonname" javaName="CommonName" required="true" size="40" >type="VARCHAR"/> > <column name="rfMTheme" javaName="ThemeID" required="true" type="INTEGER"/> > <column name="txemail" javaName="EMail" required="true" size="255" >type="VARCHAR"/> > <column name="blBackground" default="0" javaName="Background" >required="true" type="INTEGER"/> > <column default="1" name="start_rfMFolder" required="true" type="INTEGER"/> > <foreign-key foreignTable="MTheme"> > <reference foreign="rfMTheme" local="rfMTheme"/> > </foreign-key> > <foreign-key foreignTable="MFolder"> > <reference foreign="rfMFolder" local="start_rfMFolder"/> > </foreign-key> > <unique> > <unique-column name="txusername"/> > </unique> > </table> > <table name="MUserRole" javaName="UserRole" idMethod="idbroker"> > <column > name="rfMUserRole" primaryKey="true" required="true" type="INTEGER"/> > <column name="rfMUser" required="true" type="INTEGER"/> > <column name="rfMRole" required="true" type="INTEGER"/> > <foreign-key foreignTable="MUser"> > <reference foreign="rfMUser" local="rfMUser"/> > </foreign-key> > <foreign-key foreignTable="MRole"> > <reference foreign="rfMRole" local="rfMRole"/> > </foreign-key> > <unique> > <unique-column name="rfMUser"/> > <unique-column name="rfMRole"/> > </unique> > </table> > > <table name="MAdvert" javaName="Advert" idMethod="idbroker"> > <column > name="rfMAdvert" primaryKey="true" required="true" type="INTEGER"/> > <column name="txHTML" javaName="HTML" required="true" type="VARCHAR"/> > <column name="ihState" javaName="State" required="true" type="CHAR" >size="1"/> > <column name="inSequence" javaName="Sequence" required="false" >type="INTEGER"/> > </table> > > <table name="MRating" javaName="Rating" idMethod="idbroker"> > <column > name="rfMRating" primaryKey="true" required="true" type="INTEGER" >javaName="ID"/> > <column name="rfMUser" javaName="UserID" required="true" type="INTEGER"/> > <column name="rfMFolderImage" javaName="FolderImageID" required="true" >type="INTEGER"/> > <column name="inRating1" javaName="Rating1" required="false" type="TINYINT"/> > <column name="inRating2" javaName="Rating2" required="false" type="TINYINT"/> > <column name="inRating3" javaName="Rating3" required="false" type="TINYINT"/> > <column name="inRating4" javaName="Rating4" required="false" type="TINYINT"/> > <column name="inRating5" javaName="Rating5" required="false" type="TINYINT"/> > <column name="inRating6" javaName="Rating6" required="false" type="TINYINT"/> > <column name="inRating7" javaName="Rating7" required="false" type="TINYINT"/> > <column name="inRating8" javaName="Rating8" required="false" type="TINYINT"/> > <foreign-key foreignTable="MUser"> > <reference foreign="rfMUser" local="rfMUser"/> > </foreign-key> > <foreign-key foreignTable="MFolderImage"> > <reference foreign="rfMFolderImage" local="rfMFolderImage"/> > </foreign-key> > <unique> > <unique-column name="rfMUser"/> > <unique-column name="rfMFolderImage"/> > </unique> > </table> > > > </database> > > > ------------------------------------------------------------------------ > > BUILD FAILED > file:D:/Data/workspace/Montage/montage-server/build-torque.xml:199: Exception th > rown by 'generator.parse'. For more information consult the velocity log, or inv > oke ant with the -debug flag. > at org.apache.velocity.texen.ant.TexenTask.execute(TexenTask.java:564) > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371) > at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143) > > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371) > at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143) > > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371) > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.Project.executeTargets(Project.java:1250) > at org.apache.tools.ant.Main.runBuild(Main.java:610) > at org.apache.tools.ant.Main.start(Main.java:196) > at org.apache.tools.ant.Main.main(Main.java:235) > --- Nested Exception --- > org.apache.velocity.exception.MethodInvocationException: Invocation of method 'c > hop' in class org.apache.velocity.util.StringUtils threw exception class java.l > ang.ArrayIndexOutOfBoundsException : -1 > at org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.j > ava:308) > at org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTRefer > ence.java:207) > at org.apache.velocity.runtime.parser.node.ASTReference.render(ASTRefere > nce.java:250) > at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java > :94) > at org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfSt > atement.java:109) > at org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode. > java:271) > at org.apache.velocity.Template.merge(Template.java:296) > at org.apache.velocity.texen.Generator.parse(Generator.java:425) > at org.apache.velocity.texen.Generator.parse(Generator.java:361) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.j > ava:259) > at org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTRefer > ence.java:207) > at org.apache.velocity.runtime.parser.node.ASTReference.render(ASTRefere > nce.java:250) > at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java > :94) > at org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfSt > atement.java:109) > at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java > :94) > at org.apache.velocity.runtime.directive.Foreach.render(Foreach.java:344 > ) > at org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirect > ive.java:153) > at org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java > :94) > at org.apache.velocity.runtime.directive.Foreach.render(Foreach.java:344 > ) > at org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirect > ive.java:153) > at org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode. > java:271) > at org.apache.velocity.Template.merge(Template.java:296) > at org.apache.velocity.texen.Generator.parse(Generator.java:451) > at org.apache.velocity.texen.ant.TexenTask.execute(TexenTask.java:552) > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371) > at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143) > > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371) > at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143) > > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371) > at org.apache.tools.ant.Task.perform(Task.java:317) > at org.apache.tools.ant.Target.execute(Target.java:309) > at org.apache.tools.ant.Target.performTasks(Target.java:334) > at org.apache.tools.ant.Project.executeTarget(Project.java:1306) > at org.apache.tools.ant.Project.executeTargets(Project.java:1250) > at org.apache.tools.ant.Main.runBuild(Main.java:610) > at org.apache.tools.ant.Main.start(Main.java:196) > at org.apache.tools.ant.Main.main(Main.java:235) > > > ------------------------------------------------------------------------ > > Sat Oct 05 08:42:03 GMT+10:00 2002 [debug] AvalonLogSystem initialized using >logfile 'velocity.log' > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] >************************************************************** > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Starting Jakarta Velocity v1.3-dev > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] RuntimeInstance initializing. > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Default Properties File: >org\apache\velocity\runtime\defaults\velocity.properties > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Trying to use logger class >org.apache.velocity.runtime.log.AvalonLogSystem > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Using logger class >org.apache.velocity.runtime.log.AvalonLogSystem > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Default ResourceManager initializing. >(class org.apache.velocity.runtime.resource.ResourceManagerImpl) > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Resource Loader Instantiated: >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] ClasspathResourceLoader : initialization >starting. > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] ClasspathResourceLoader : initialization >complete. > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] ResourceCache : initialized. (class >org.apache.velocity.runtime.resource.ResourceCacheImpl) > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Default ResourceManager initialization >complete. > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Loaded System Directive: >org.apache.velocity.runtime.directive.Literal > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Loaded System Directive: >org.apache.velocity.runtime.directive.Macro > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Loaded System Directive: >org.apache.velocity.runtime.directive.Parse > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Loaded System Directive: >org.apache.velocity.runtime.directive.Include > Sat Oct 05 08:42:03 GMT+10:00 2002 [info] Loaded System Directive: >org.apache.velocity.runtime.directive.Foreach > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Created: 20 parsers. > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : initialization starting. > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : adding VMs from VM library >template : VM_global_library.vm > Sat Oct 05 08:42:04 GMT+10:00 2002 [error] ResourceManager : unable to find >resource 'VM_global_library.vm' in any resource loader. > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : error using VM library >template VM_global_library.vm : >org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource >'VM_global_library.vm' > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : VM library template macro >registration complete. > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : allowInline = true : VMs >can be defined inline in templates > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : allowInlineToOverride = >false : VMs defined inline may NOT replace previous VM definitions > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : allowInlineLocal = false : >VMs defined inline will be global in scope if allowed. > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : messages on : VM system >will output logging messages > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : autoload off : VM system >will not automatically reload global library macros > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocimacro : initialization complete. > Sat Oct 05 08:42:04 GMT+10:00 2002 [info] Velocity successfully started. > Sat Oct 05 08:42:05 GMT+10:00 2002 [info] ResourceManager : found >sql/base/Control.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:05 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/table.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:05 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/drop.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:05 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/sequence.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:06 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/columns.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:06 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/primarykey.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:06 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/unique.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:06 GMT+10:00 2002 [info] ResourceManager : found >sql/base/postgresql/index.vm with loader >org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader > Sat Oct 05 08:42:06 GMT+10:00 2002 [error] Method chop threw exception for >reference $strings in template sql/base/postgresql/table.vm at [20,25] > Sat Oct 05 08:42:06 GMT+10:00 2002 [error] Method parse threw exception for >reference $generator in template sql/base/Control.vm at [17,7] > > > > ------------------------------------------------------------------------ > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
