Dear Christian
I am adding xml to the database using two ways in java
1)
LocalSession ls = new LocalSession(context);
ls.execute("ADD ","FILEPATH");
2)
ls.add("PATH", new FileInputStream("FILEPATH"));
In first case taking time to adding the xml to database,when my xml is big and in databasesize also big.But this case memory consumption is very less.
In second case it is adding to database very fast in both the cases.But it is consuming the memory.Is their any way to add xml to db with less memory and as well with performence.
Is their any way to add xml with chunk by chunk to the database.
MY XML MAX SIZE: 6GB
Please do the needful.
Regards
Sekhar