Re: [PHP-DB] export queries to plain/text

2004-03-15 Thread Norma Ramirez - TECNOSOFT
What I need exactly is to send the outputs from queries made in the command line of postgresql to an plain text file, cvs or something like that, so the function suggested frwrite don't work for that case because it's from the command line. Than'ks Norma R -- PHP Database Mailing List (http://w

Re: [PHP-DB] export queries to plain/text

2004-03-14 Thread Filip de Waard
On Mar 13, 2004, at 5:31 PM, Norma Ramirez - TECNOSOFT wrote: Hi all, does any one know how to export queries to plain/text files in postgresql? What do you want to do exactly? Export the results returned by PostgreSQL and in what format? You can write to a file with frwrite (http://nl2.php.net

[PHP-DB] export queries to plain/text

2004-03-13 Thread Norma Ramirez - TECNOSOFT
Hi all, does any one know how to export queries to plain/text files in postgresql? Thank's Norma R

Re: [PHP-DB] export mysql table to .dbf

2003-07-21 Thread Norma Ramirez - TECNOSOFT
Thank´s Stephen, I gonna try it looks very useful... Norma Ramirez -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] export mysql table to .dbf

2003-07-21 Thread Stephen March
Norma, I have found the best strategy is to setup an ODBC link to an alternative to the database. As an example, I had a mysql database "intranet", and I created an ODBC link to, with the MySQL ODBC drivers (from the mysql.com site), and then opened up Microsoft Access.Went file => ge

[PHP-DB] export mysql table to .dbf

2003-07-21 Thread Norma Ramirez - TECNOSOFT
Hi all, does any one how export data from mysql to fox 2.0? I have to capture data from a php form and store in mysql database, and then export those data or generate a .dbf table. Thank´s a lot. Norma Ramirez

[PHP-DB] export 2 values for function

2003-01-19 Thread Ruprecht Helms
Hi, how have I to define the calling and a function to work with two values exported to a function that return one result. Concret I want to include a grouped-price-function in a shopping-application. The function to find the right price needs the product_id and the quantity. It returns the produ

RE: [PHP-DB] export query

2003-01-15 Thread John W. Holmes
> I need to essentially take a query and make it into a table. I'll first > settle for the ability to export the query into a text file, somehow > delimited. > > Can anyone help me with this? What have you done so far? Do you know how to make a table? While($row = mysql_fetch_row($result)) {

[PHP-DB] export query

2003-01-15 Thread Doug Parker
I need to essentially take a query and make it into a table. I'll first settle for the ability to export the query into a text file, somehow delimited. Can anyone help me with this? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] export to csv file

2002-09-29 Thread Michael GARGIULLO
AIL PROTECTED]> Date: Saturday, September 28, 2002 10:02 am Subject: [PHP-DB] export to csv file > Hi, I want to export some fields on a regular basis from a table > to a text > file, preferable to the users local computer. I tried writing to a > file with > fopen but I get "

RE: [PHP-DB] export to csv file

2002-09-28 Thread Peter Lovatt
ia.net tel. 0121-242-1473 --- -Original Message- From: Patrick Latour [mailto:[EMAIL PROTECTED]] Sent: 28 September 2002 20:42 To: Diana Castillo; [EMAIL PROTECTED] Subject: Re: [PHP-DB] export to csv file - Original Message - Fr

Re: [PHP-DB] export to csv file

2002-09-28 Thread Thomas Lamy
Diana Castillo [mailto:[EMAIL PROTECTED]] wrote: > > Hi, I want to export some fields on a regular basis from a > table to a text > file, preferable to the users local computer. I tried writing > to a file with > fopen but I get "permission denied" when I try to open it for writing. > What is t

Re: [PHP-DB] export to csv file

2002-09-28 Thread Patrick Latour
- Original Message - From: "Diana Castillo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 28, 2002 10:02 AM Subject: [PHP-DB] export to csv file > Hi, I want to export some fields on a regular basis from a table to a text > file, p

Re: [PHP-DB] export to csv file

2002-09-28 Thread John Coder
On Sat, 2002-09-28 at 10:02, Diana Castillo wrote: > Hi, I want to export some fields on a regular basis from a table to a text > file, preferable to the users local computer. I tried writing to a file with > fopen but I get "permission denied" when I try to open it for writing. > What is the best

[PHP-DB] export to csv file

2002-09-28 Thread Diana Castillo
Hi, I want to export some fields on a regular basis from a table to a text file, preferable to the users local computer. I tried writing to a file with fopen but I get "permission denied" when I try to open it for writing. What is the best solution? Thanks, Diana -- See my web page: http://www.ne

RE: [PHP-DB] export

2001-10-24 Thread Rick Emery
Do you mean via PHP or directly at the MySQL command line? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 10:12 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] export how can i select records from mysql and store them in a text or

[PHP-DB] export

2001-10-24 Thread gerald . clerc
how can i select records from mysql and store them in a text or spreadsheet file format? thanks for reply php 4 on win32 gerald clerc

RE: [PHP-DB] export

2001-05-17 Thread Steve Brett
unique filenames including the date. i generate csv files in this manner and then the user downloads them and renames them to whatever they want. Steve > -Original Message- > From: Larry Rivera [mailto:[EMAIL PROTECTED]] > Sent: 16 May 2001 19:35 > To: bryan; db > Subject: RE

RE: [PHP-DB] export

2001-05-16 Thread Larry Rivera
PM To: db Subject: [PHP-DB] export I have a MySQL database, and a table full of guestbook information. The client wants to be able to grab files the info from that table (as a comma seperated file) and port it into a spreadsheet. does anyone know how to export from MySQL to a Comma seperated file

[PHP-DB] export

2001-05-16 Thread bryan
I have a MySQL database, and a table full of guestbook information. The client wants to be able to grab files the info from that table (as a comma seperated file) and port it into a spreadsheet. does anyone know how to export from MySQL to a Comma seperated file? I guess I could do fopen, fwrit