Hi guardian
This is caused by the default settings of standalone in your StandaloneCommon.ini under section [GridService]:
by default you have:
StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
but for jOpenSim you need:
StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
... also I can see that you miss the table "Presence" which is also required for jOpenSim to work. To let OpenSim create this table, you need to add following lines in your StandaloneCommon.ini:
[PresenceService]
LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
StorageProvider = "OpenSim.Data.MySQL.dll"
ConnectionString = "Data Source=localhost;Database=dbname;User ID=dbuser;Password=dbpassword;"
Of course replace dbname etc with your own values
Greetz
FoTo50