program using mdb file - "object or provider is not cap

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
szymekgajos
Newbie
Newbie
Posts: 2
Joined: Fri Jun 08, 2012 4:51 am

program using mdb file - "object or provider is not cap

Post by szymekgajos »

I would like to use a program with wine that operates with microsoft mdb
database file.
The program reads from and writes to the database.
msg in program: "object or provider is not capable of performing request"

terminal:
libxml2 support was not present at compile time.
fixme:ole:CoCreateInstance no instance created for interface {2933bf81-7b36-11d2-b20e-00c04f983e60} of class {2933bf90-7b36-11d2-b20e-00c04f983e60}, hres is 0x80004001
wine 1.5.5
jet40 mdac28
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: program using mdb file - "object or provider is not

Post by dimesio »

szymekgajos wrote: terminal:
libxml2 support was not present at compile time.
You need to install the libxml2 development files and recompile Wine. Lots of things are not going to work without xml support.
szymekgajos
Newbie
Newbie
Posts: 2
Joined: Fri Jun 08, 2012 4:51 am

Post by szymekgajos »

Now,
start program -> terminal
err:ole:CoGetClassObject class {6c736db1-bd94-11d0-8a23-00aa00b58e10} not registered
err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10} could be created for context 0x1
err:ole:CoGetClassObject class {ecabb0c0-7f19-11d2-978e-0000f8757e2a} not registered
err:ole:CoGetClassObject no class object {ecabb0c0-7f19-11d2-978e-0000f8757e2a} could be created for context 0x1
Using program, add some new data to db -> "object or provider is not capable of performing request"
jjmckenzie
Moderator
Moderator
Posts: 1153
Joined: Wed Apr 27, 2011 11:01 pm

program using mdb file - "object or provider is not cap

Post by jjmckenzie »

On Fri, Jun 8, 2012 at 3:02 AM, szymekgajos <[email protected]> wrote:
I would like to use a program with wine that operates with microsoft mdb
database file.
The program reads from and writes to the database.
msg  in program: "object or provider is not capable of performing request"

terminal:
libxml2 support was not present at compile time.
Find a copy of Wine with libxml2 support compiled in.
fixme:ole:CoCreateInstance no instance created for interface {2933bf81-7b36-11d2-b20e-00c04f983e60} of class {2933bf90-7b36-11d2-b20e-00c04f983e60}, hres is 0x80004001
Looks like you might have to install native msxml3 or msxml6 through
winetricks. http://msdn.microsoft.com/en-us/library ... 85%29.aspx
is where I found the call for the class IXMLDOMDocument2
{2933bf90-7b36-11d2-b20e-00c04f983e60}

James
Locked