[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-10-18 Thread [EMAIL PROTECTED]
JDK 1.6 causes this in eclipse. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4183015#4183015 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4183015 ___ jboss-user mailing list

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-02-26 Thread nsakiya
Well, is this a common problem everybody knows how to fix it or am I the only one here? Is there any other forums or web sites I might get more response on this issue? Any words on this would be really appreciated. Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-02-27 Thread baz
Hello, do i understand it correctly, 'Seam Generate Entities' does work for your databases, except for oracle? We have used it for generating entities out of our Oracle Express database. And we have it successfully used against Oracle 9. It was not an easy task for us to setup the database conne

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-03-04 Thread [EMAIL PROTECTED]
Hi guys, The trick with oracle is to remember to set hibernate.default_schema and maybe hibernate.default_catalog to limit which schemas we will read to the one you are interested in. We should have a better ui for selecting tables...right now we only have that if you use the Hibenrate tools c

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-04-11 Thread IcarusDB
I have the same problem with oracle9i , this is my persistence.xml generated file | | | http://java.sun.com/xml/ns/persistence"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://jav

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-04-12 Thread [EMAIL PROTECTED]
2 problems there: 1) oracle does not have catalogs so don't set it. 2) oracle is casesensitive when it comes to querying for metadata hence default_schema should probably be RA and not ra View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143620#4143620 Reply t

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-04-14 Thread IcarusDB
thanks max for replay I commented out the catalog ( I was deploying with this config with no problem before) and I put the ra to uppercase same problem, eclipse is freezing again (right now) maybe I'm missing some config in somewhere regarding to hibernate or maybe JPA I saw a JPA definition

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-04-14 Thread [EMAIL PROTECTED]
mkayreally weird then. I don't see any freezes herehow big is the schema ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143872#4143872 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143872 ___

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-04-14 Thread IcarusDB
max, forget my last comment I just needed a little patience, IT WORKS !!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143877#4143877 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143877

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-04-14 Thread [EMAIL PROTECTED]
:) the world is a better place again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143883#4143883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143883 ___ jboss-user mailin

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-05-15 Thread RogerWBMD
I am newbie to jboss and I was struggle on the same issue yesterday. Somehow I found in the forum that to add hibernate.default_schema= line in the hibernate-console.properties will fix the problem. I tried and it worked. Now, I have another question. I try to use "New -> Seam Entity." The java

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-05-15 Thread IcarusDB
check this line in the persistence.xml by default is "create-drop" you should use update, validate or none View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4151199#4151199 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-05-15 Thread RogerWBMD
Do you mean this line: ? Do you know when the DB update happens? Right after I save my change in the entity class, e.g. Person.java? Thanks Roger View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4151210#4151210 Reply to the post : http://www.jboss.com/index.h

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-05-15 Thread IcarusDB
sorry, this line the update is done we you re-deploy the ear file View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4151230#4151230 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4151230 __

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities

2008-05-16 Thread RogerWBMD
It works perfectly. Thanks!!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4151418#4151418 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4151418 ___ jboss-user mailing list j

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities crashes

2008-12-04 Thread safa
I had the same issue, and i found the solution: I, simply, changed the classpath to my workspace form c:/Document and Settings/workspace to c:/workspace. In fact, I noticed this exception : Illegal character in path at index 18: file:/C:/Documents and Settings/Pat/My Documents/eclipse workspaces

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities crashes

2008-04-16 Thread [EMAIL PROTECTED]
1) Yes, Hibernate JPA had an issue with spaces thus we recommend putting your workspace in a non-space path. Yes, I know it sucks and MyEclipse would have the same problem if they supported JPA queries - the bug is fixed in later versions of Hibernate JPA, we just need to get those fixes integr

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities crashes

2008-04-16 Thread redbird
Thanks Max. No, I have not tried the other one. I ran into too many problems trying to get it configured. Perhaps there aren't really that many bugs, but I seem to hit all of them. And I have run out of time now. I really don't have time to be trying this and that hoping it will work. I di

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities with PostgreSQL

2008-03-04 Thread [EMAIL PROTECTED]
setting default_schema must work. Where are you setting it ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4133867#4133867 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4133867 _

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities should be more flexible

2009-03-11 Thread asookazian
worst case scenario we delete the unrequired files i guess... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4217042#4217042 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4217042 _

[jboss-user] [JBoss Tools (users)] - Re: Seam Generate Entities should be more flexible

2009-03-11 Thread max.ander...@jboss.com
Put a request in jira. Note that Seam Generate Entities creates a Hibernate Code generation configuration which you can copy and adjust just as much as you want and there by have full control. But sure, having the option of saying I only want model makes sense (generate-ui is possibly by just