db4o is an open source embeddable object database for Java and .NET.
0
votes
0answers
9 views
db4o getting specific objects android java
I'm making an android project and don't have much experience in Java.So I'm now able to store objects in db4o database, I can also retreive all of them. But if i would like to get a list of specific ...
0
votes
1answer
15 views
Format to store in db4o in an android app
I'm working on an android project for a local community 'festival' and the android app should sync with an online database everytime it starts up, and then store the data on android in db4o.
Right now ...
0
votes
0answers
21 views
db4o DatabaseFileLockedException in AsyncTaksLoader on orientation change
I have an AsyncTaskLoader that does a long-running database operation with db4o. It crashes on orientation change. Here's my Loader:
public class StartupLoader extends AsyncTaskLoader<Boolean> ...
1
vote
0answers
40 views
db4o Transparent Activation - Null Exception on retrieving children values of a node
I create a tree of nodes, and I store it in Database for Object Oriented (db4o). Because I want an efficient loading of the nodes from the database, I use Transparent Activation, and I implement the ...
0
votes
0answers
40 views
Storing a tree in db4o by just storing the root object
In my java code, I created a tree, where a node in the tree is of type Node. The node has a name, attribute and children of type Node. I am using db4o in order to store the tree. I am doing that by ...
0
votes
0answers
20 views
How to customize object loading in db4o?
I am trying to store and load objects on Android with db4o. But when I try to save an object, that contains a Bitmap, it fails with an ObjectNotStoreableException. Now I try to save only the resource ...
2
votes
1answer
33 views
is there any way to implement TransparentActivation without referencing db4o libs into model?
to get directly to my point: I want to have independent object model where I won't reference any libraries of database engine so that I will be able to use that model in multiple object or document ...
1
vote
1answer
40 views
Loading data from db4o under .net 4.0 in 3.5
I have a server running .net 4.0 which is creating a db4o database and sending it to a client. The client is running .net 3.5, and cannot open the database (This used to work when the server was also ...
-1
votes
4answers
101 views
Java Dates Format
I am having trouble formatting date in java.
I have a shopping class that has item name in string, quantity in int and a date in Date.
In the run class I am trying to run this query.
Date date = ...
0
votes
1answer
37 views
how to combine db4o and android intents
I'm making (my first) android application and I'm a little bit puzzled with the use of db4o.
I have one activity in which I have a listView, and let the user select an object. Then I pass this object ...
0
votes
0answers
17 views
How to keep a global db4o throughout the lifecycle of an android application
We are developing an Android application that uses db4o for storing various objects throughout multiple activities and services. We are looking for the best approach on working with db4o and ...
0
votes
2answers
74 views
Db4objects.Db4o.Ext.DatabaseClosedException being thrown
I'm pretty new c# and MVC, and today i've been playing around with DB4o. I've put together a practice site which scrapes films via a url provided by a user. The films are then stored in a db4o ...
0
votes
0answers
81 views
db4o - retrieve all objects, and store them into a List<t>
I'm currently playing around with db4o, but I seem to have hit a brick wall in regards to retrieving all of the objects stored in my db4o IObjectContainer. I'm currently using MVC, so I wish to ...
0
votes
1answer
37 views
Java: is it possible to create two objects during different runtimes with the same identity?
I don't have a computer science background. I am using DB4o and want to make sure I get one unique object back when I use code like this:
public List<Object> getListOfObjects(final Object o){
...
1
vote
0answers
60 views
db4o loses track of objects on Android
I'm making my first android application and I'm (trying to) use a db4o database.
In general it is structured like this: You have a 'Person' class (with some inheritance to differentiate between ...
1
vote
1answer
51 views
db4o delete isn't working after unit test execution sequence
I have a small set of unit tests that are working fine until I add a test that is verifying whether my unique constraint is working properly. These aren't really unit tests, they're integration tests.
...
0
votes
1answer
31 views
Query objects by commit timestamps
Is it possible in db4o to query objects that have changed since some certain time using internal commit timestamps(since version 8.0 db4o allows to generate commit timestamps)?
I know its possible ...
0
votes
1answer
53 views
Store a limited number of items in database(agnostic) C# for code
I am working on an asset management application for a data center where I am employed. I am still in planning but one issue that has been weighing heavily is: A server rack is 42U(1U per ...
0
votes
2answers
71 views
db4o: how can we get the data for only one object?
How can DB4o users get back the data for only one object?
(This is akin to getting the data for only one row of a traditional relational database table.)
With DB4o, I only know how to get the data ...
0
votes
1answer
44 views
Query conversion from db4o to hibernate
I'm currently working on a project to implement an OODB (object oriented database) cache where the requirements are to use a db4o database as the cache and store objects in it. My backend database is ...
1
vote
2answers
44 views
how to store object which contains object
I have a small problem
How to store object which contains another object?
for example
Object Person
Person
{
Name,
Mother
}
where Mother is another Object of the same class Person
thx for help
...
0
votes
1answer
42 views
How to setup custom id-field in DB4O
I've read the documentation and samples multiple times and can't find out how to do this.,
I'm trying to wire up DB4O to use my own custom Id field. based on the documentation you can define your own ...
0
votes
1answer
165 views
How to create database using Db4o in android?
I am developing an App in which now i have to create database for more better user experience. Then i came to know about DB4o which is many times faster tool for creating database than other like ...
0
votes
1answer
66 views
can't locate db4o database file
Hello I'm coding a simple CRUDE application that runs perfectly using JSF and DB4O.
I can add and list all the entities normally without errors.
I've used this code to persist the entities
bd = ...
1
vote
1answer
185 views
Caused by: java.lang.ClassNotFoundException: com.db4o.ObjectContainer [duplicate]
Possible Duplicate:
can’t locate db4o database file
I'm trying to create a simple CRUD application with DB4O and JSF.
In my web project I have two packages:
com.crud.bean containing the ...
1
vote
1answer
38 views
com.db4o.internal.query.ObjectSetFacade' was not included
GWT + Springs + DB4o: Any idea how to make this work without adding a new RPC class
[WARN] Exception while dispatching incoming RPC call
com.google.gwt.user.client.rpc.SerializationException: Type ...
0
votes
1answer
64 views
db4o query optimisation for a scheduling application
I'm just getting started with db4o in a scheduling application and I'm looking for an efficient way to retrieve rooms which are not booked between certain dates.
So, I have a collection of Room ...
0
votes
0answers
41 views
db4o - Performance issue where a list of children each of which refrences his parent
I have a Parent / Child relation as follows and I use C# and db4o for persistence.
class Parent{
List<Child> children = new List<Child>();
}
class Child{
Parent parent;
}
It ...
1
vote
1answer
79 views
db4o enumset exception
I'm using db4o 8.0 with transparent activation/persistence ...
I have a class which contains an EnumSet (and other things). I instantiate, add an enum value into set and store. When I search in DB, ...
1
vote
1answer
112 views
Field initializer on transient field
I am wondering: if I load an object from a db4o database, will field initializers always be called?
An example could be a transient field syncRoot, used for object locking, because of thread-safety:
...
-2
votes
1answer
133 views
using db4o to save the contact but i am getting NullPointerException when i try to save contact
I am trying to save Contact(name and number) in android using db4o, when I try to save FATAL Exception(NullPointerExeption) occurs. code of DbHelper and MianActivity here
DbHelper.java
public class ...
0
votes
2answers
437 views
db4o does not seem to store items added to a List<T>
Let's say I have a model that looks like this (fake, but as an example)
public class PackageItem
{
public string Name { get; set;}
public bool Available { get; set;}
}
public class Package
{
...
0
votes
1answer
31 views
Db4o DataConnection error
I would like to use db4o and I`m learning this using in youtube.com tutorial. Unfortunately I'm not able to find mistake in my code. I would like to know why I have got there error? I added all ...
0
votes
1answer
56 views
db4o :how to query objects by store time desc
ObjectContainer oc;
oc.store(new Info(1));
oc.store(new Info(2));
oc.store(new Info(3));
List<Info> list=oc.query(Info.class);
The list is:
Info(1)
Info(2)
Info(3)
How to get the list ...
0
votes
1answer
182 views
ViewFlipper not loading bitmap images
Hello all having some trouble when I attempt to add an image to a viewflipper page, I am pulling the bitmaps from the db4o database (not sure if it is the encoding or something it uses that is messing ...
0
votes
1answer
81 views
Using a pre-built db4o database in android app
Im REALLY struggling to get a pre baked db4o database to work inside my android app.
If i include it in the /res/raw folder then read it, it doesn't work.
If i copy it to the app_data or sdcard then ...
1
vote
1answer
63 views
DB4o 8.0 java 1.6 juno - import database to project
I would like to add to my project db4o 8.0. I installed db4o and I'm using JUNO eclipse but I don't know where I have to find direction of installed file to add items to file for example:
import ...
0
votes
1answer
79 views
db4o in disconnected context: how to handle save/update
The application I am working on is client/server with REST communication between them. I want to use db4o on server side. The client can update or create entries. Thus, the object comes back to server ...
0
votes
1answer
122 views
trouble setting up a db4o database
I am trying to use a singleton class to create this database because I need it to be open for each of the activities in the application. I keep getting a null pointer error from either the ...
1
vote
1answer
96 views
global db4o database for multiple activities
I am working on a design project and I am needing some guidance with db4o since it is the first time I have worked with it. In the project we have an Android app that has multiple activities and all ...
0
votes
1answer
61 views
Make class names independent via db4o renaming api
I'm new in Db4o
As far as I checked, when I do a refactoring of a class name or path (packages),
db4o doesnt recognizes the class anymore and creates a new 'category'.
I want to make an API, so that ...
0
votes
1answer
51 views
Db4o database for automatic tests
we are using Db4o in our project.
I have some automatic tests where is tested persistence of objects.
The problem is, I can't open/create the database twice.
I have two helper methods for geting the ...
1
vote
2answers
371 views
Exception in Timer - java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() - Android
I'm using a Service for update a db4o file each 3 hours:
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
@Override
public void ...
1
vote
1answer
173 views
how to store TimeStamp into db4o database
I am trying to store timestamps into a db4o database, but the stored timestamps which store a few mninutes ago are much different from the current date.
Here are example outputs:
1969-12-31 ...
1
vote
1answer
136 views
db4o DotNet version with Xamarin MonoDroid and MonoTouch
Does anyone already used db4o OO database manager in a mobile project using Xamarin Monodroid and/or MonoTouch?
Is it even possible? (It seems that db4o uses Reflection.Emit(), which could be a ...
1
vote
2answers
87 views
db4o leaves free objects after removing references from their container object. How to resolve it?
Does anybody know how to make db4o work in the following scenario? I tried cascadeOnUpdate() but failed.
class Class1 {
int field;
}
class Class2 {
Class1[] clsArray;
}
//I usually change ...
1
vote
1answer
31 views
db4o unique field on inherited fields
i am trying to make a subclass unique by applying a unique constraint on a db4o object's inherited field? Is it possible?
ex: class B inherits field f from class A and i need to make f unique only ...
2
votes
1answer
159 views
Db4o - how to rename a field in one step?
As I've read in db4o documentation (.net version), I supposed that to rename a field in a class I would have to add the following to my code (and renaming the actual field in the class, of course):
...
0
votes
1answer
40 views
Please explain the db4o PolePosition report
Can someone explain me how to read the PolePosition's benchmarking results in the link below?
http://polepos.sourceforge.net/results/PolePositionClientServer.pdf
So, let's take an example of ...
2
votes
3answers
155 views
db4o Defragment deletes all objects in the database
I am using db4o 8.0.
The db4odatabase file size is 21MB.
The database has following Objects in it.
User : There is 1 user in db.
PostedMessage : There are 10000 postedMessages in db.
I delete all ...




