Hello, ... The user needs to specify is debug function on setup. However, if later he calls CaptureDebugOutput, MetabaseDefaultDebugOutput will be used to ...
Hello, ... I don't see any restriction. If you want to specify your own debugging function, you can do it on setup. If you just want to capture the debug ...
Hello, ... The GetFieldTypeDeclaration function takes a field definition, not the type name. Notice that the switch picks the "type" from the field definition...
Hi, just wanted to inform you all that MDB 2.x is now mostly done. Atleast what I have planned. The API has changed a lot though :-/ - A lot of methods were...
hi all, please answer me these quesions...... 1) how many maximum triggers we can make on a oracle table? 2) how many maximum procedures & functions we can ...
Hello, ... Ok. I will release a fixed version soon. Thank you for reporting. -- Regards, Manuel Lemos Free ready to use OOP components written in PHP ...
Hello, ... These are Oracle specific issues. Please try the forums at OTN: http://otn.oracle.com/ . -- Regards, Manuel Lemos Free ready to use OOP components...
Hello everyone, I'm trying SetErrorHandler. $previous_error_handler = $mb->SetErrorHandler("myhandlerfunction"); The idea of a handler function is great, and...
Hello, ... You should never interpret error messages. Messages are meant for human beings, not programs. That are only useful for logging and posterior ...
... I know it's "evil", that's why I was asking ;-) ... Yes, thanks for the tip, I didn't know about it. I will find and fix them with the callback function....
Hello, ... What I suggested is more flexible because it would allow to log not only the query but also other context information that may be added in the ...
Hello, ... There is a driver class developed by Sergio Zia based on the MSSQL driver class. I just did not integrate it because I did not yet have add the time...
... a ... add ... me ... I may have to write an MDB sybase driver for a project. Since I will base the driver off of this work I can see that I get any issues...
Hi, the sqlite driver seems to be using sqlite_exec which only exist in C. It should rather use sqlite_query. Also I am not sure why it does some internal...
Hello, ... Metabase SQLite driver was developed by Jeroen Derks to work with the original SQLite PHP library written by Chris Burton. It is not based on the...
Hello, ... That is odd. Are you using Windows? Which version of MySQL are you using? -- Regards, Manuel Lemos Free ready to use OOP components written in PHP ...
Hello, ... Can you please mail me privately a dump of the table that is causing the problem, so I can see exactly what is failing? -- Regards, Manuel Lemos ...
Hi, I am just wondering what the purpose of the in_transaction property is. It seems like it is just the opposite of the auto_commit property. Is that...
Hello, ... As you may imagine, there is no dummy code in Metabase, even though you may be not aware of what it is for. auto_commit and in_transaction represent...
I checked the documentation for the function: $previous_error_handler = MetabaseSetErrorHandler($database, $error_handler); I'm a bit confused regarding this....
... This means that you have not defined the function errhandler(). You probably defined it in a script that you forgot to include. ... This example should...
... You got that right! I wasn't paying close enough attention and had put the errHandler() function in the wrong place! Now it's working well. ... that ... ...
... One of the first things I messed with when I started using Metabase was the debugging options. My error handling function (which is now working, thanks...