[Opensim-dev] Mysql help request

2009-04-08 Thread Giorgio Servillo
HI to all, I need to modify an object proprieties through direct changing of the database table, For example i would move an object only changing relatives coordinates of my object inside the opportune table of the database. I tried to do this, but OpenSim server dooesn't change immediatly the pos

Re: [Opensim-dev] Mysql help request

2009-04-08 Thread Kyle
You could store the data in a table and then use XMLRPC or llHTTP to query the DB and move prims inworld. It isn’t as fast as direct DB but come by www.reactiongrid.com to see on Project Manhattan sim how we have a local instrument feeding data via a VB app from our PC’s serial port to SQL 2008

Re: [Opensim-dev] Mysql help request

2009-04-08 Thread Frisby, Adam
No, The DB is used only for persistence between sessions, not for storing the live scenegraph. Storing a live copy of the scene in the DB would be incredibly so, so it’s not practical. Reloading the scene while it’s running would be effectively restarting, so any delays or issues you see there

Re: [Opensim-dev] [Opensim-commits] r9036 - in trunk/OpenSim

2009-04-08 Thread Alan M Webb
Dr Schofield is not going to be around for a few days, so I'll take the liberty of responding. It's my fault anyway. The files showed up flagged as a deleted in my repository, and I have inadvertently propagated that deletion with my change. My apologies. Perhaps someone with commit authority

Re: [Opensim-dev] [Opensim-commits] r9036 - in trunk/OpenSim

2009-04-08 Thread Stefan Andersson
Done. I restored the gridlaunch as well, as I took the deletion of it to be another mistake? Best regards, Stefan Andersson Tribal Media AB To: opensim-dev@lists.berlios.de CC: opensim-dev@lists.berlios.de; opensim-dev-boun...@lists.berlios.de From: alan_w...@us.ibm.com Date: Wed, 8 Apr 2

Re: [Opensim-dev] [Opensim-commits] r9036 - in trunk/OpenSim

2009-04-08 Thread Alan M Webb
Yes, both files. Thanks. Best regards Alan --- T.J. Watson Research Center, Hawthorne, NY 1-914-784-7286 alan_w...@us.ibm.com From: Stefan Andersson To: "opensim-dev@lists.berlios.de" Cc: Date: 04/08/2009 12:30 PM Subject: Re: [Opensim-dev] [Opensim-commits] r9036 - in trunk/

[Opensim-dev] Custom Nunit CategoryAttribute

2009-04-08 Thread Stefan Andersson
Esteemed colleagues, I just added a custom DatabaseTestAttribute to help separating unit tests from component tests. The general idea is to tag database tests (classes or individual methods) with [DatabaseTest] The test runner will then be able to separate out database tests from no