My Environment: ubuntu 14.04 in Oracle Virtual Box.
Mono v4.4.2 MonoDevelop v5.10
Siaqodb v5.5.0.6
I have run the below code in monodevelop it not thrown any exception but _instance is null always. But the same time it will works with windows .net.
And i am not found any forums and documentation to run Siaqodb with mono in Linux env.
Kindly look and provide a possible solution.
Siaqodb _instance;
SiaqodbConfigurator.SetLicense(My trail License);
string path=Path.GetDirectoryName (Assembly.GetEntryAssembly ().Location);
path = path + "/Siaqo";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
_instance = new Siaqodb(path);
Real path is "/home/osboxes/Build/WebApi/Siaqo"