Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

metabase-dev · Metabase Development discussions list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1064 - 1093 of 1151   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1064 Manuel Lemos
mallemos Send Email
Aug 14, 2003
6:59 am
Hello, ... What error? Did you try this? -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/...
1065 Manuel Lemos
mallemos Send Email
Aug 14, 2003
7:05 am
Hello, ... The user needs to specify is debug function on setup. However, if later he calls CaptureDebugOutput, MetabaseDefaultDebugOutput will be used to ...
1066 Lukas Smith
dybvandal Send Email
Aug 14, 2003
10:14 am
... later ... to ... Isn't this needlessly restrictive? Not a big issue though. Regards, Lukas...
1067 Lukas Smith
dybvandal Send Email
Aug 14, 2003
10:25 am
Lukas Smith smith@... _______________________________ BackendMedia www.backendmedia.com berlin@... Linn Zwoch Smith GbR Pariser Str....
1068 Manuel Lemos
mallemos Send Email
Aug 15, 2003
6:40 pm
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 ...
1069 Manuel Lemos
mallemos Send Email
Aug 15, 2003
7:19 pm
Hello, ... The GetFieldTypeDeclaration function takes a field definition, not the type name. Notice that the switch picks the "type" from the field definition...
1070 Lukas Smith
dybvandal Send Email
Aug 19, 2003
7:11 pm
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...
1071 Lukas Smith
dybvandal Send Email
Aug 21, 2003
2:15 pm
Hi, diff -r1.70 metabase_mysql.php 382c382 < return($this->SetError("Get BLOB field value",MetabaseLOBError($clob))); ... value",MetabaseLOBError($blob)));...
1072 ilovlinux Send Email Aug 24, 2003
7:21 pm
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 ...
1073 Manuel Lemos
mallemos Send Email
Aug 25, 2003
6:13 am
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 ...
1074 Manuel Lemos
mallemos Send Email
Aug 25, 2003
6:15 am
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...
1075 Stefano
slocati Send Email
Aug 29, 2003
5:53 pm
Hello everyone, I'm trying SetErrorHandler. $previous_error_handler = $mb->SetErrorHandler("myhandlerfunction"); The idea of a handler function is great, and...
1076 Manuel Lemos
mallemos Send Email
Aug 30, 2003
4:00 am
Hello, ... You should never interpret error messages. Messages are meant for human beings, not programs. That are only useful for logging and posterior ...
1077 Stefano
slocati Send Email
Aug 30, 2003
12:03 pm
... 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....
1078 Manuel Lemos
mallemos Send Email
Aug 31, 2003
1:37 pm
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 ...
1079 Lukas Smith
dybvandal Send Email
Sep 21, 2003
5:52 pm
Hi, are there any plans to add a Sybase driver or at least some code for a Sybase driver? Regards, Lukas Smith smith@... ...
1080 Manuel Lemos
mallemos Send Email
Sep 27, 2003
4:58 am
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...
1081 Lukas Smith
dybvandal Send Email
Sep 27, 2003
7:43 am
... 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...
1082 Lukas Smith
dybvandal Send Email
Oct 4, 2003
11:14 pm
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...
1083 Manuel Lemos
mallemos Send Email
Oct 6, 2003
4:57 am
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...
1084 Manuel Lemos
mallemos Send Email
Oct 24, 2003
3:05 am
Hello, As a side note, I forgot to mention that the Metastorage tutorial is available here: ...
1085 Thomas M. Duffey
c0rnfusion Send Email
Oct 30, 2003
6:35 pm
... Hash: SHA1 Hi Manuel, I was not able to reverse engineer a MySQL schema until I turned the strcmp() call into strcasecmp() on line 432 of...
1086 Manuel Lemos
mallemos Send Email
Oct 30, 2003
7:04 pm
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 ...
1087 Manuel Lemos
mallemos Send Email
Oct 30, 2003
7:13 pm
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 ...
1088 Lukas Smith
dybvandal Send Email
Oct 31, 2003
10:21 am
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...
1089 Manuel Lemos
mallemos Send Email
Nov 1, 2003
12:51 pm
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...
1090 deathbycarrots Send Email Nov 25, 2003
6:23 pm
I checked the documentation for the function: $previous_error_handler = MetabaseSetErrorHandler($database, $error_handler); I'm a bit confused regarding this....
1091 Manuel Lemos
mallemos Send Email
Nov 26, 2003
1:11 am
... 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...
1092 deathbycarrots Send Email Nov 26, 2003
12:43 pm
... 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 ... ...
1093 deathbycarrots Send Email Nov 26, 2003
12:49 pm
... 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...
Messages 1064 - 1093 of 1151   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help