thanks for your attention.
We Persistence Object by JDO in our Project, All model  are like

@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class SysCode extends BaseModel {
    //code_id
    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    @Extension(vendorName="datanucleus", key="gae.encoded-pk",
value="true")
    private String sys_code_id;
    //code_type
    @Persistent
    private String code_type;
    //code_key
    @Persistent
    private String code_key;
    //code_value
    @Persistent
    private String code_value;
    //remark
    @Persistent
    private String remark;

    public void setSys_code_id(String sys_code_id) {
        this.sys_code_id = sys_code_id;
    }

    public String getSys_code_id() {
        return  sys_code_id;
    }
     ...........
}


On 2月5日, 下午4時31分, Guillaume Laforge <[email protected]> wrote:
> I'd be curious to know what's the format of that database bin file.
> That would perhaps be interesting to be able to create such local dbs
> easily, for creating data fixtures for our unit and/or integration
> tests.
> Is it some form of SQLLite, or some custom object serialization?
>
> Guillaume
>
>
>
> On Wed, Feb 3, 2010 at 14:23, dreamy <[email protected]> wrote:
> > we have 4 membership in  google app engine project. we code in local
> > Machine and manager source by subverion, in devolop ,when some one
> > create a record(eg.create a company object) but others membership
> > can't use this company object.
>
> >  is there any way  to share local_db.bin  to each other  or all
> > membership use same local_db.bin ?
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Google App Engine for Java" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to 
> > [email protected].
> > For more options, visit this group 
> > athttp://groups.google.com/group/google-appengine-java?hl=en.
>
> --
> Guillaume Laforge
> Groovy Project Manager
> Head of Groovy Development at SpringSourcehttp://www.springsource.com/g2one

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to