Search the web
Sign In
New User? Sign Up
metabase-dev · Metabase Development discussions list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 590 - 619 of 1151   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
590
(cc dev@...) The metabase odbc driver is producing incorrect sql when creating a table with a clob type. Here's the query metabase is trying...
Charlie Killian
charles_killian
Offline Send Email
Apr 6, 2002
7:22 am
591
Hello, Hello, ... That means that Metabase was not able to find how that ODBC driver support LOBs. You should have checked MetabaseSupport($database,"LOBs"). ...
Manuel Lemos
mallemos
Offline Send Email
Apr 6, 2002
1:47 pm
592
... MetabaseSupport($database,"LOBs") returns 1. ... I'm using sapdb. It is supported in PHP through the odbc functions. It's clob column type is "long". Has...
Charles Killian
charles_killian
Offline Send Email
Apr 6, 2002
8:44 pm
593
Hello, ... humm..., I am afraid that is an inconsistency in the ODBC API implementation. Anyway, can you just put a var_dump($this); statatement in the end of...
Manuel Lemos
mallemos
Offline Send Email
Apr 6, 2002
9:46 pm
594
... Here you go: object(metabase_odbc_class)(55) { ["database"]=> int(0) ["host"]=> string(0) "" ["user"]=> string(0) "" ["password"]=> string(0) "" ...
Charles Killian
charles_killian
Offline Send Email
Apr 6, 2002
10:08 pm
595
Manuel, will Metabase work with sapdb and long/clob column types? Charlie __________________________________________________ Do You Yahoo!? Yahoo! Tax Center -...
Charles Killian
charles_killian
Offline Send Email
Apr 7, 2002
1:09 am
596
Hello, ... Yes, like I suspected, odbc_gettypeinfo returns a valid result set but since PHP 4.2.0 odbc_fetch_into had its arguments swapped! It seems yet...
Manuel Lemos
mallemos
Offline Send Email
Apr 7, 2002
1:52 pm
597
... How do I get it to work? The error has been occuring on PHP 4.1.2. Did you modify any files? Charlie __________________________________________________ Do...
Charles Killian
charles_killian
Offline Send Email
Apr 7, 2002
3:51 pm
598
Hello, ... No, I did not try anything. I just looked at the dump. The documentation says it was changed in 4.2 but it may have been sooner. Try for instance...
Manuel Lemos
mallemos
Offline Send Email
Apr 7, 2002
4:13 pm
599
Hi, well I have been banging my head against the wall because of problems in my framework. Anyways it turns out that php 4.1.2 does not seem very happy with ...
Lukas Smith
dybvandal
Offline Send Email
Apr 8, 2002
4:04 pm
600
... This is necessarily a bug in MySQL API. Your success commenting the mysql_select_db function was a coincidence. You suppressed a sympthom, not the real...
Manuel Lemos
mallemos
Offline Send Email
Apr 8, 2002
5:24 pm
601
... I need to use 4.1.2 because it has sabdb support. What can I fix to get Metabase to work? Charlie __________________________________________________ Do You...
Charles Killian
charles_killian
Offline Send Email
Apr 8, 2002
7:34 pm
602
Hello, ... The problem is not in Metabase. It is in ODBC API. I am not sure if it is just a matter of switching the arguments of odbc_fetch_into . Look at the...
Manuel Lemos
mallemos
Offline Send Email
Apr 8, 2002
7:43 pm
603
... Manuel, Thanks for your advice and guidance. One more question: If I do get Metabase and PHP 4.1.2 working together, are CLOBs supported using SAPDB and...
Charles Killian
charles_killian
Offline Send Email
Apr 8, 2002
8:07 pm
604
Hello, ... Yes, if that ODBC API implementation returns correct type metadata information with odbc_gettypeinfo information. You may need to use the driver...
Manuel Lemos
mallemos
Offline Send Email
Apr 8, 2002
8:31 pm
605
So I'm trying to get Metabase, PHP 4.1.2 and sapdb on speaking terms. I ran the driver_test.php. It installs the "users" table but gives throws this error: php...
Charles Killian
charles_killian
Offline Send Email
Apr 9, 2002
1:24 am
606
Hello, ... There seems to be no automatic way to determine how to create an index on a table using ODBC. This can only be solved by a Metabase ODBC driver sub...
Manuel Lemos
mallemos
Offline Send Email
Apr 9, 2002
2:08 am
607
... The default *Index() functions do in sapdb. But the BOOLEAN type of sap wants TRUE or FALSE passed. Not the 0 or 1 Metabase supplies. Can I change this...
Charles Killian
charles_killian
Offline Send Email
Apr 9, 2002
3:17 am
608
Hello, ... So, supporting indexes with SAP DB just requires what I mentioned. ... I was talking of the return value of PHP function named SetupODBC to be added...
Manuel Lemos
mallemos
Offline Send Email
Apr 9, 2002
3:30 am
609
... Yes. It works just like you mentioned. ... True. The SQL in driver_test.php needs to be changed. I'll give it a shot. Charlie ...
Charles Killian
charles_killian
Offline Send Email
Apr 9, 2002
3:50 am
610
Hello, ... Huh? There is nothing to be changed in the driver_test.php script! Regards, Manuel Lemos...
Manuel Lemos
mallemos
Offline Send Email
Apr 9, 2002
7:12 am
611
Aha, well mysql_db_query is not improving the situation :-/ Well the main reason for this upgrade are the security issues that forced the 4.1.2 release. So I...
Lukas Smith
dybvandal
Offline Send Email
Apr 9, 2002
11:33 am
612
Hello, ... This seems to be a bug in MySQL itself because PHP just calls MySQL client API. I think you would better contact MySQL AB people because there are...
Manuel Lemos
mallemos
Offline Send Email
Apr 9, 2002
11:45 am
613
Yeah we will try patching 4.0.6 (we have 4.0.6 on our development server). ... Where have you seen this? This is one of the most confusing things about this...
Lukas Smith
dybvandal
Offline Send Email
Apr 9, 2002
12:22 pm
614
Hello, ... Look in PHP bug database. Actually some people are confusing this problem with the problem of reusing the same persistent connection in the same...
Manuel Lemos
mallemos
Offline Send Email
Apr 9, 2002
12:34 pm
615
I'm stopping my work with sapdb and metabase because the deadline of the project is approaching rapidly. I'm moving back to mysql and metabase so hopefully in...
Charles Killian
charles_killian
Offline Send Email
Apr 10, 2002
7:01 pm
616
Are Metabase enabled MySQL transactions stable for MySQL version 3.23.41? In the manual it says: "At the time of writing of this document the currently...
Charles Killian
charles_killian
Offline Send Email
Apr 12, 2002
6:25 pm
617
I've turned Transations on and recreated the tables using metabase to make sure they are using bdb. But now I get this error from this query: "Column count...
Charles Killian
charles_killian
Offline Send Email
Apr 12, 2002
9:26 pm
618
Hello, ... The dummy field is auto-incremented. That is not your problem. The problems is that since you do not specify the fields to be inserted, MySQL...
Manuel Lemos
mallemos
Offline Send Email
Apr 12, 2002
10:12 pm
619
Hello, ... Yes, all driver conformance tests for transaction support with MySQL with BDB succeed. These tests verify, insertion and deletions doing commits and...
Manuel Lemos
mallemos
Offline Send Email
Apr 12, 2002
11:02 pm
Messages 590 - 619 of 1151   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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