Hello all, I have a little question
I have a class designed this way :
public class A
{
private String _name;
private String _password;
public String getName()
{
return _name;
}
public void setName(String name)
{
_name = name;
}
// ... ....
}
Does this field declaration is compatible with the default ojb field
mapping
<class-descriptor class="A" table="aTable>
<field-descriptor
id="1"
name="_name"
column="name"
jdbc-type="varchar"
/>
</class-descriptor>
--
Kevin Viet <[EMAIL PROTECTED]>
ActiVia Networks
--
To unsubscribe, e-mail: <mailto:ojb-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:ojb-user-help@;jakarta.apache.org>