I have tried to post this to the PHP-Install list, I think it has gone through, but I am now recieving a large number of rejection and anti-spam emails...
After upgrade to FirebirdSS-1.0.3.972-0.64IO from FirebirdSS-1.0.0.796-0. I encountered network error which cause query not executed and return no record. I...
it's the clinet lib not php - make sure the gds32.dll or fbclient.dll on the server matches Alan ... From: Almond [mailto:almond@...] Sent: Tuesday,...
239
Hidayat Henokh
hidayat@...
Nov 13, 2003 7:59 am
dear all i have problem to show the exception message from an SP with php code. i have try to use ibase_errmsg, still no result thx Hidayat...
Hello all. I insert a record through a "execute procedure" query in PHP, and I found that the new inserted record cannot be retrieved until I execute a...
241
Thomas
thomas@...
Nov 13, 2003 1:53 pm
Hi. This is because of the PHP default transaction, which is automatically committed or rolled back on script termination. Just use single transactions for...
Thank you for you reply. Is the code work on PEAR ? Best regards, Almond Wong ... [Non-text portions of this message have been removed]...
243
Thomas
thomas@...
Nov 13, 2003 2:38 pm
Hi, I don't know since I never used PEAR. The code was only intended as an example to demonstrate how to use separate transactions per request. If PEAR allows...
... PEAR is the 'extra' library of code that you can get by lumping through the hoops of running the PEAR loader. (Read the PHP install notes :) ) There is a...
... Not really because of that. Read more carefully ;) ... The stored produre DID write the record. Reading this, my guess is that you are using isql to...
... The select query is following the insert inside php. Except that the insert is through a stored procedure and not a query. The process is like that. 1....
Hello, Is anyone else running Suse Linux 9.0 with Firebird(CS rc7) and php4? I downloaded php4 4.3.4 then after untaring FROM php-4.3.4/ added #define ISC_FAR...
... Is that where the php.ini file is looking for extensions on your machine? ( I would have expected a 'can't find error' but we have to start somewhere ) I...
Hi, i install Firebird and IB Manager, its works fine for a moment, but later i canīt run ib manager, because not can access to database, but the fb server is...
... What exactly does "failed" mean? Did you get some error message? Or you didn't get a new record? ... Both queries, I guess? ... If I understood you...
... This is a little OT for this group, you can get more help at firebird-support@yahoogroups.com However, it would be aslo good to write what version of...
... That is the extension directory it gives in the php.ini, I think it is standard for suse because it is similar to the suse 8.2. Another thing when I...
... No - I downloaded the source for PHP from www.php.net and built from that. (4.3.3) I used the notes, and don't remember having any problems, but I do need...
255
Hidayat Henokh
hidayat@...
Nov 19, 2003 9:34 am
hi there i have problem here, i don't know how to get the value of the output variable from a sp that executed with "execute procedure", i use this method...
... I'm not 100% sure what is your question, but you probably need to escape ' with another ', ie. use '', like this: SELECT * FROM nba_player WHERE name =...
258
Thomas
thomas@...
Nov 20, 2003 10:15 am
Hi, Yep, thats it. If you have set magic_quotes_sybase to On in your php.ini, addslashes() will also do that for you. /thomas...
In a form, in a TEXTAREA I wrote SELECT CLIENT FROM PERSOANE WHERE NUME STARTING WITH 'O''TOOL' The line in my script is: $result=ibase_query($conn,...
In a form, in a TEXTAREA I wrote SELECT CLIENT FROM PERSOANE WHERE NUME STARTING WITH 'O''TOOL' The line in my script is: $result=ibase_query($conn,...
Sorry ! Just a typo. Correct: $result=ibase_query($conn, addslashes($_POST["Textarea_content"])); ... From: firebird-php@yahoogroups.com Date: Thursday,...
262
Daniela Mariaschi
nyx@...
Nov 20, 2003 12:06 pm
... Hey Dorin, the best thing todo in such a case is to print out your query. It seems your "addslashes" is ignoring magic_quotes_sysbase directive at all...
... I hate magic_quotes, and that is good example why. Your SELECT is turned into: SELECT CLIENT FROM PERSOANE WHERE NUME STARTING WITH ''O''''TOOL'' and sent...
Tried both solutions (Daniela and Milan). Same result. Even if the string
looks right when sending to the browser, the "Token unknown" raised. In php.ini also...