[PHP-DB] SQLite problem INSERTing string

2004-09-19 Thread Stefan Reimers
Hello, I am currently experiencing a problem with an INSERT statement in SQLite. First of all an excerpt from the code: $val = 127.0.0.1; $query = INSERT INTO node (uri,name) VALUES (.$val.,'bla'); $db_name = mysqlite; if($db_hdl = sqlite_open($db_name)){ $db_result =

[PHP-DB] Re: SQLite problem INSERTing string

2004-09-19 Thread Stefan Reimers
Hi again, first of all thanks for quick suggestions. After some more testing, I can get more specific: This might be a more general problem than the . in the error message. Even when I use $val = hello I get an equivalent error message sqlite_query(): near hello As said, I have done all the

[PHP-DB] Re: Abstraction Layer....

2004-09-19 Thread Stefan Reimers
PHP knows at least three more: dba - for databases built on Berkeley DB which can be used some DB-configurations of MySQL dbm - also very specific for dbm-format, which seems not to be a relational one. Some apps seem to use that kind of DB internally. dbx - supports about a dozen types of

[PHP-DB] Re: PHP - FOXPRO

2004-09-21 Thread Stefan Reimers
is connecting to an OLEDB Provider for VFP: http://fox.wikis.com/wc.dll?Wiki~VFP_OleDB_Provider That should get you going. Good luck, Stefan Reimers -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: PostgreSQL

2004-09-29 Thread Stefan Reimers
, I reported it to my successors on the project. Stefan Reimers -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Re: [EMAIL PROTECTED] November 2, 2004

2004-11-02 Thread Stefan Reimers
To end up with this discussion: It is a piece of truth that the whole world is curious on what will happen during ( ;-) )and after the voting in the US but as the main part of the world has no effect on the election by using php this posting was obviously misplaced. Worst of all, this posting

[PHP-DB] Re: Newbie Setup Trouble

2005-02-07 Thread Stefan Reimers
Hi! first of all, the fatal error indicates that the mysql extension is missing or just disabled. To find out what's wrong check for the file php_mysql.(so|dll) [using *nix|Windows] in the php-extension directory. If present, then open the php.ini file and search for the string

[PHP-DB] Re: Problem with an update after an insert: MySQL

2005-02-08 Thread Stefan Reimers
It would make things easier if you could determine the error, so try to use mysql_error after all your mysql_queries, not just after the first one. Stefan [EMAIL PROTECTED] wrote: I'm having trouble with having trouble with doing an update after doing an insert on and a select on a table. The

[PHP-DB] Re: Is there anything non commercial pdf lib to create PDF file from PHP ?

2005-02-10 Thread Stefan Reimers
Try FPDF on http://www.fpdf.org/ Stefan Santoso Berkah wrote: Dear Friends, Is there anything non commercial pdf library (stable release) to create PDF file from PHP except PHPlib.com ? I've browsed this site and it costed Euro 450. Can you help me please ? Best regards, [EMAIL PROTECTED]

[PHP-DB] History of MySQL support in PHP

2005-03-19 Thread Stefan Reimers
Hi list, can anyone tell me, when PHP originally started the MySQL support? I downloaded the php 3.0.17 version from php.net and it already supports MySQL. Thx in advance Stefan -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] History of MySQL support in PHP

2005-03-19 Thread Stefan Reimers
The changelog reaches back to the first beta of PHP4 Forest Liu wrote: I think you can check the changelog on www.php.net On Sat, 19 Mar 2005 14:13:44 +0100, Stefan Reimers [EMAIL PROTECTED] wrote: Hi list, can anyone tell me, when PHP originally started the MySQL support? I downloaded the php

Re: [PHP-DB] History of MySQL support in PHP

2005-03-19 Thread Stefan Reimers
Indeed, the book writing is no bad guess, but with slightly different focus than PHP ancestry. But wondering how long mysql is supported is more or less personal interest. Thx to both of you for answering and greetings from Germany to China and California, USA Stefan Reimers ___ Forest Liu

[PHP-DB] class of objects created by mysqli_result-fetch_object

2006-02-04 Thread Stefan Reimers
Hi, I fetched some data from my MySQL database into objects. These are of class stdClass. Now I wonder about the sense of having objects without methods defined. In fact, I cannot benefit from any of the OO advantages (namely property protection, controlled method calls on class properties)