[PHP-DB] Display records on form

2005-01-03 Thread David Ziggy Lubowa
Hey guys , I was wondering , i have 16 records within a table in my Database , i have managed to have a form which can add and modify the records. My only problem is how i can display on a form when i search. Can someone give me heads up on how i can code this in php, to display the records

RE: [PHP-DB] MySQL database converter ?

2005-01-03 Thread Manoj Kumar
Hi Everybody , Daffodil DB Migration tool provide import/export from a database to another. It is available at http://www.daffodildb.com/download/index.jsp and comes with One$DB and DaffodilDB . Use DaffodilDB Browser to import and export purpose. Regards, Manoj Kr. Sheoran www

[PHP-DB] MySQL database converter ?

2005-01-03 Thread Nayyar Ahmed
Hello All: Is there any tool available for conversion of M$ Access, Oracle etc Databases to MySQL database ? TIA: -- Nayyar Ahmad Lecturer Faculty Of Computer Science, Institute Of Management Sciences, Hayat Abad Peshawar , Pakistan. Office : 92-091-9217404 , 9217452 Cell : 92-0333-913946

RE: [PHP-DB] Removing first word from a string?

2005-01-03 Thread Bastien Koert
one simple trick is to use a clause that always evaluates correctly. For example, in my site I don't delete data, but flag it with a field (record_deleted) which defaults to 'No' (actually 0) and can be set to 'Yes' (again 1) so that all queries are built with the requirement to use AND ie $sql

Re: [PHP-DB] Parse errors ,,, can you. impart me about it.

2005-01-03 Thread James Ferrara
Quite so, you're my new hero. -James Ferrara Jochem Maas wrote: Norland, Martin wrote: ... 4) you thought this was [EMAIL PROTECTED] that's simply hilarious! :-) thanks Martin for making me laugh! -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

Re: [PHP-DB] Removing first word from a string?

2005-01-03 Thread Jason Wong
On Tuesday 04 January 2005 10:46, Chris Payne wrote: > I am building a dynamic MySQL query for a project I am working on, but > there are instances where it products WHERE AND instead of WHERE city etc > â.. due to the nature of the system I am developing. My question is, how > can I remove the F

[PHP-DB] Removing first word from a string?

2005-01-03 Thread Chris Payne
Hi there everyone, I am building a dynamic MySQL query for a project I am working on, but there are instances where it products WHERE AND instead of WHERE city etc ….. due to the nature of the system I am developing. My question is, how can I remove the FIRST “ AND” from a string if it is pres

Re: [PHP-DB] NULL VALUE

2005-01-03 Thread Jochem Maas
Hi Matthew, there are some more comments below but just for the record could you confirm that you are retrieving one or more rows when you issue the following SQL: SELECT * FROM `employee` WHERE `status` IS NULL; if you are getting no rows back then the obviously updating based on the status fi

RE: [PHP-DB] NULL VALUE

2005-01-03 Thread Perry, Matthew (Fire Marshal's Office)
I apologize for my lack of information concerning this problem and I appreciate the "advice for beginners". I also did not mean to post it on this list (If you notice my original message also contained a thank you for a question never asked in this list). I am terribly sorry about this error. HOWE

Re: [PHP-DB] NULL VALUE

2005-01-03 Thread Jochem Maas
Norland, Martin wrote: -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Monday, January 03, 2005 12:16 PM Subject: Re: [PHP-DB] NULL VALUE LightBulbMoment (tm): 5 seconds of searching on the MYSQL site tells me STATUS is a keyword. try either renaming your field or u

RE: [PHP-DB] NULL VALUE

2005-01-03 Thread Norland, Martin
> -Original Message- > From: Jochem Maas [mailto:[EMAIL PROTECTED] > Sent: Monday, January 03, 2005 12:16 PM > Subject: Re: [PHP-DB] NULL VALUE > > LightBulbMoment (tm): 5 seconds of searching on the MYSQL site tells me > STATUS is a keyword. try either renaming your field or using backt

RE: [PHP-DB] NULL VALUE

2005-01-03 Thread Bastien Koert
I have a feeling that 'Status' field may be the problem. The word Status is used by MySQL for other sql commands. Either place the fieldname in backticks (the key under the ESC key) like so: UPDATE `EMPLOYEE` SET `STATUS`='Inactive' where `STATUS` != 'Active'; or change the fieldname to emp_stat

Re: [PHP-DB] NULL VALUE

2005-01-03 Thread Jochem Maas
first off it would help if you specified what DB you are using and if you are using a DB abstraction lib like PEAR::DB or something similar. also have you tried running these lines directly in a cmdline sql client? is the status column variable width? if not then the value may be 'Active ' (num

[PHP-DB] NULL VALUE

2005-01-03 Thread Perry, Matthew (Fire Marshal's Office)
My "status" column in my Employee table should have two values "Active" and "Inactive". Right now all the active employees have the value "Active" and the rest have a NULL value. Why is it that the following commands do nothing? UPDATE EMPLOYEE SET STATUS='Inactive' where STATUS != 'Active';

Re: [PHP-DB] last insert ID

2005-01-03 Thread list
hi you can use the mysql function LAST_INSERT_ID() heres the info from the manual: http://dev.mysql.com/doc/mysql/en/ODBC_and_last_insert_id.html hope that helps eoghan Nathan Mealey wrote: Is there a PEAR::DB equivalent to the mysql_insert_id()? I can't figure out how to get the primary key ID fr