Re: [PHP-DB] Unveilled Metabase OOP direct to driver object API

2001-12-24 Thread Sommai Fongnamthip
How to compare Metabase to ODBC or ADODB? SF At 06:20 24/12/2001 -0200, Manuel Lemos wrote: Hello, If you are reading this and do not know what is Metabase, be aware that it is PHP database abstraction package for developing truely portable database independent functions. Metabase development

[PHP-DB] pass variable

2001-12-24 Thread Sommai Fongnamthip
Hi, I was successful for use only 1 variable like www.hostname.com/path?variable=xx. How could pass more variable to other program? SF -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[PHP-DB] variable check in 1 file

2001-12-24 Thread Sommai Fongnamthip
Hi, I'd like to create query form and display in 1 file. Do anyone guide me for this? SF -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

RE: [PHP-DB] variable check in 1 file

2001-12-24 Thread rhelms
On 24-Dec-2001 Sommai Fongnamthip wrote: Hi, I'd like to create query form and display in 1 file. Do anyone guide me for this? for html use http://www.teamone.de/selfaktuell/ (here you need selfhtml - forms) If you want to search the file over a database use SELECT FROM table WHERE

RE: [PHP-DB] pass variable

2001-12-24 Thread rhelms
On 24-Dec-2001 Sommai Fongnamthip wrote: Hi, I was successful for use only 1 variable like www.hostname.com/path?variable=xx. How could pass more variable to other program? use right so path?variable...var1=...... Regards, Ruprecht --

RE: [PHP-DB] ODBC MS SQL Server 7

2001-12-24 Thread Andrew Hill
Javalina, What is the exact error message your are getting? Also, try the odbctest sample program with the select * from frases query - does it return results? Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access Data

Re: [PHP-DB] Unveilled Metabase OOP direct to driver object API

2001-12-24 Thread Manuel Lemos
Hello Sommai Fongnamthip wrote: How to compare Metabase to ODBC or ADODB? Several aspects: - Metabase provides true portability to database applications so you do not have to adapt your program scripts to make it work with different databases. This is particularly true regarding data type

[PHP-DB] RE: [PHP-WIN] MSSQL connect

2001-12-24 Thread Svensson, B.A.T. (HKG)
From: Jerry [mailto:[EMAIL PROTECTED]] I tried something like: ?pup $h = server adr; $u = user; $p = passw; $b = db; $connexion = mssql_connect($h, $u, $p); Why do you uses quotes here? mssql_select_db($b); $sql = select * from test; . $result = mssql_query($sql_temp); .