[PHP-DB] Access a database on another domain

2009-08-02 Thread Neil Jackson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I host a number of running clubs websites. They are all hosted on different domains on a hosting service. They all share a common database table of fixtures. At present I have copied the database table to each domain but this time consuming. I

Re: [PHP-DB] Access a database on another domain

2009-08-02 Thread Chris
Neil Jackson wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I host a number of running clubs websites. They are all hosted on different domains on a hosting service. They all share a common database table of fixtures. At present I have copied the database table to each domain but

Re: [PHP-DB] Access a database on another domain

2009-08-02 Thread Bastien Koert
On Sun, Aug 2, 2009 at 10:15 PM, Chrisdmag...@gmail.com wrote: Neil Jackson wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I host a number of running clubs websites. They are all hosted on different domains on a hosting service. They all share a common database table of

[PHP-DB] Access another server aspx page

2007-04-24 Thread Lasitha Alawatta
Hi All, I need to access .aspx page using .php page. It's like this. 01) I have a login.aspx home.aspx pages in different server (IIS6, already hosted at different location: www.abc.com/login.aspx ). 02) I have the username password for login to the above application

[PHP-DB] Access denied for user...sometimes???

2007-02-21 Thread James Garfield
I've got 5.0.27-standard installed on an Intel Mac, using the preinstalled version of Apache and my own installation of PHP 4.4.4. I use this machine for development work and don't make it available to anyone else. I've got an instance of a PHP application running, and it works...but not all

Re: [PHP-DB] Access denied for user...sometimes???

2007-02-21 Thread Peter Beckman
On Wed, 21 Feb 2007, James Garfield wrote: I've got 5.0.27-standard installed on an Intel Mac, using the preinstalled version of Apache and my own installation of PHP 4.4.4. I use this machine for development work and don't make it available to anyone else. I've got an instance of a PHP

Re: [PHP-DB] Access denied for user...sometimes???

2007-02-21 Thread David Robley
Peter Beckman wrote: On Wed, 21 Feb 2007, James Garfield wrote: I've got 5.0.27-standard installed on an Intel Mac, using the preinstalled version of Apache and my own installation of PHP 4.4.4. I use this machine for development work and don't make it available to anyone else. I've got an

[PHP-DB] access db

2006-05-07 Thread tuna3000
im new to php, i would like to see a simple php script for manipulating an access database (or mysql) for me to learn on. thanks. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] access db

2006-05-07 Thread Stut
tuna3000 wrote: im new to php, i would like to see a simple php script for manipulating an access database (or mysql) for me to learn on. thanks. Have you tried the manual? Lots of useful and interesting stuff in there. Especially for people new to PHP. Try http://php.net/odbc and

[PHP-DB] Access

2005-02-02 Thread Darryl
Hay, I was just wondering if any of you had any links to websites that explained php programming with Access databases. Thanks in advance, Darryl

RE: [PHP-DB] Access

2005-02-02 Thread Bastien Koert
use the ODBC functions in php bastien From: Darryl [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Access Date: Wed, 2 Feb 2005 19:49:47 +0200 Hay, I was just wondering if any of you had any links to websites that explained php programming with Access databases. Thanks in advance

Re: [PHP-DB] Access

2005-02-02 Thread Robert Twitty
You have 3 options. Option 1: Use PHP's native odbc extension. This option is limited, and only works on @in32 platforms. Option 3: Use PHP's COM support. This option only works on @In32 platforms, and does not follow the function paradigm of PHP's database extensions. Example code:

[PHP-DB] access denied

2004-06-26 Thread water_foul
i get this error: Warning: Access denied for user: '[EMAIL PROTECTED]' (Using password: YES) in C:\Inetpub\localroot\aichlmayr.net\sites\aaron\module\runescape\runerunner\s ervices.php on line 3 and the code up to line 3 is: ?php //Database Querys $connection=Mysql_connect($dbHost , $dbName ,

Re: [PHP-DB] access denied

2004-06-26 Thread Mikhail U. Petrov
Hi! I think you not set this variables. Try to read your full errorlog but not only one part. Saturday, June 26, 2004, 7:37:36 PM, water_foul wrote: w i get this error: w Warning: Access denied for user: '[EMAIL PROTECTED]' (Using w password: YES) in w

Re: [PHP-DB] access denied

2004-06-26 Thread water_foul
I did set the veriables just in another script that includes this swcript Mikhail U. Petrov [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi! I think you not set this variables. Try to read your full errorlog but not only one part. Saturday, June 26, 2004, 7:37:36 PM, water_foul

[PHP-DB] Access and PHP problem

2004-01-14 Thread Jason Hawkins
Hi, I am trying to INSERT into a MSAccess database using PHP 4.3 - I have a problem when I enter a name like O'Donnell. In mysql I would normally just backslash the single quote but this doesn't work with MSAccess. is there a fix for this?? Thanks in adv. Jason -- PHP Database Mailing List

Re: [PHP-DB] Access db

2003-11-21 Thread Luke van Blerk
Thanks Michael. I'll check it out ;) - Luke Michael Mauch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Luke Van Blerk wrote: I'll probably just extract the data with an access to mysql script and run it on mysql. This is probably the best approach if you have access to

Re: [PHP-DB] Access db

2003-11-20 Thread Michael Mauch
Luke Van Blerk wrote: I'll probably just extract the data with an access to mysql script and run it on mysql. This is probably the best approach if you have access to Windows machine. If not, http://freshmeat.net/projects/mdbtools/ might help. Regards... Michael -- PHP

[PHP-DB] Access db

2003-11-19 Thread Luke van Blerk
Hi everyone Can PHP access an access database residing on a unix / linux box? I know theres and ODBC extension but is that only for windows? Regards Luke -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Access db

2003-11-19 Thread Robert Twitty
To the best of my knowledge you cannot access an Access database directly from UNIX or Linux. The reason is because the Jet Engine has not been ported to those platforms. Your only options may be something like EasySoft's ODBC-ODBC bridge or ODBTP. -- bob On Wed, 19 Nov 2003, Luke van Blerk

RE: [PHP-DB] Access db

2003-11-19 Thread Luke van Blerk
Thanks Robert I'll probably just extract the data with an access to mysql script and run it on mysql. - Luke Robert Twitty wrote: To the best of my knowledge you cannot access an Access database directly from UNIX or Linux. The reason is because the Jet Engine has not been ported to those

[PHP-DB] Access 95 ODBC Annoyance

2003-07-17 Thread J. Michael Roberts
I'll be the first to admit this is a rather backwards system and prone to be illogical, but it's what was handed to me and I can't do much about that. I've got an ancient Access 95 database that I've linked to via another A95 database which is queried via ODBC. It was done this way because I'm

Re: [PHP-DB] Access 95 ODBC Annoyance

2003-07-17 Thread Robert Twitty
If the other application opens the database exclusively, then you will not be able to open it, even for read only. The only solution to modify the sharing option used by the other application. Another problem you may encounter is that the ODBC driver for Access is not thread safe. -- bob On

RE: [PHP-DB] Access 95 ODBC Annoyance

2003-07-17 Thread Will Howard
in the dialog box where they selected the database to open. If you go to the Open dialog box, you may see what I am talking about. Will Howard -Original Message- From: J. Michael Roberts [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 12:32 PM To: [EMAIL PROTECTED] Subject: [PHP-DB

Re: [PHP-DB] Access 95 ODBC Annoyance

2003-07-17 Thread J. Michael Roberts
I discovered the problem at had was in the network permissions set on the file (?) that was denying Apache to access it properly and the error code returned was the best thing the system could come up with. I changed my Apached service to 'run as' and authorized user (me) and it happily viewed

Re: [PHP-DB] Access 95 ODBC Annoyance

2003-07-17 Thread otherguy
PROTECTED] Subject: [PHP-DB] Access 95 ODBC Annoyance I'll be the first to admit this is a rather backwards system and prone to be illogical, but it's what was handed to me and I can't do much about that. I've got an ancient Access 95 database that I've linked to via another A95 database which is queried

[PHP-DB] Access denied for user: '@localhost'

2003-06-03 Thread Sean Burlington
Hi, this problem seems to have appeared after a system upgrade ... command line works fine mysql -uschool -pbonfire school BUT ?php /* Connecting, selecting database */ $link = mysql_connect(localhost, school, bonfire) or die(Could not connect : . mysql_error()); print

[PHP-DB] Access querys to a csv

2003-02-16 Thread Donald S. Booth
Hi all, I am trying to dump an Access db query and form it into a comma delimited file. I get the query ok. I can get it into a table with odbc_result_all. If I print the variable, it shows the first value from the first row... Any hints on the path I should take? Thanks, D -- PHP Database

[PHP-DB] access mysql db with DW

2003-02-08 Thread Terry L. Ensley
I created a database in mysql - running php via apache on a XP os. I get a good connection in dreamweaver with the database panel - no problems connecting and viewing tables in dw. I created a form that I want to load the user info to the table. My run line is:

RE: [PHP-DB] access mysql db with DW

2003-02-08 Thread Dennis Cole Jr
PROTECTED] Subject: [PHP-DB] access mysql db with DW I created a database in mysql - running php via apache on a XP os. I get a good connection in dreamweaver with the database panel - no problems connecting and viewing tables in dw. I created a form that I want to load the user info to the table

RE: [PHP-DB] access mysql db with DW

2003-02-08 Thread Dennis Cole Jr
PROTECTED] Subject: [PHP-DB] access mysql db with DW I created a database in mysql - running php via apache on a XP os. I get a good connection in dreamweaver with the database panel - no problems connecting and viewing tables in dw. I created a form that I want to load the user info to the table

Re: [PHP-DB] access mysql db with DW

2003-02-08 Thread Terry L. Ensley
You found it - It works like a charm - Thanks Dennis Dennis Cole Jr [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Part of the problem is $insertGoTo = booking_details.php?email=.HTTP_POST_VARS[email].; should be $insertGoTo =

Re: [PHP-DB] access mysql db with DW

2003-02-08 Thread Jason Wong
On Sunday 09 February 2003 10:29, Terry L. Ensley wrote: You found it - It works like a charm - Thanks Dennis Dennis Cole Jr [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Part of the problem is $insertGoTo =

[PHP-DB] Access Violation in ISAPI version

2002-11-20 Thread Ryan Jameson (USA)
Has anyone else had problems with the error PHP has encountered an Access Violation at 098029AE ... It's talked about at: http://bugs.php.net/bug.php?id=15333 The most frustrating thing is our ISP went above the call of duty to install PHP for me, and now his response is... well read for

Re: [PHP-DB] Access a Flat File DB - How?

2002-11-12 Thread Maxim Maletsky
Risks are to share properly the data. You can never rely on the accuracy of data in the flat files as those could be changing at the same instance as your application is reading it. RDMS (not mySQL) can handle it under relational logic mechanisms, meaning they would not read the data that is

Re: [PHP-DB] Access a Flat File DB - How?

2002-11-12 Thread Crony
On another topic...Does MySQL handle record locking and prevent multiple open edits by different users? Maxim Maletsky [EMAIL PROTECTED] wrote in message news:20021112130532.1DE5.MAXIM;php.net... Risks are to share properly the data. You can never rely on the accuracy of data in the flat files

RE: [PHP-DB] Access a Flat File DB - How?

2002-11-12 Thread John W. Holmes
On another topic...Does MySQL handle record locking and prevent multiple open edits by different users? Yes. ---John Holmes... -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Access a Flat File DB - How?

2002-11-11 Thread Crony
I have written a few small apps in PHP and MySQL. These were mostly copy, paste and change and fairly easy. I now wnat ot connect to a flat file dbase that is used by another enterprise app. Then I want to start normal PHP programming. Is there any risk in doing this? Where do I start? -- PHP

Re: [PHP-DB] access DB via PHP classes

2002-10-08 Thread Wilmar Perez
Well, what about building a basic class without any database conection in the constructor and then have a inherited class with the needed database conection? and then use whichever you need to generate the pages. You can even just have the basic class and execute some code in the constructor

Re: [PHP-DB] access DB via PHP classes

2002-10-08 Thread Ruth Zhai
- Original Message - From: Wilmar Perez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 12:10 AM Subject: Re: [PHP-DB] access DB via PHP classes Well, what about building a basic class without any database conection in the constructor and then have a inherited class

[PHP-DB] access DB via PHP classes

2002-10-07 Thread Ruth Zhai
Hi All, Although I am not so new to PHP (not expert either), this is the first time for me to use PHP class. I am starting a project, and plan to use partially OOP and partially traditional programming. I use PHP/MySQL. I have one class, DB_Do, which does every thing to do with database, and

Re: [PHP-DB] access DB via PHP classes

2002-10-07 Thread Wilmar Perez
Well, I'll tell you what I do. I'm not a OOP expert so if someone feel like I'm doing it wrong I'll welcome any comment about . I've got a main class which I use to generate every page in my website (some are actually generated by inherited classes but that's the main idea). As I need a

Re: [PHP-DB] access DB via PHP classes

2002-10-07 Thread Ruth Zhai
if it is efficient. Thanks again. Ruth - Original Message - From: Wilmar Perez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 11:53 AM Subject: Re: [PHP-DB] access DB via PHP classes Well, I'll tell you what I do. I'm not a OOP expert so if someone feel like

[PHP-DB] Access to Mysql

2002-02-13 Thread Alex Francis
I am a complete newbie at this so please excuse me if I seem stupid. I have a guestbook on one site which was created using ASP and an Access database. I have created a new site using the much more friendly PHP and wish to get the data into my mysql database. Can I do this easily, and if so can

RE: [PHP-DB] Access to Mysql

2002-02-13 Thread Richard Black
PROTECTED] Subject:[PHP-DB] Access to Mysql I am a complete newbie at this so please excuse me if I seem stupid. I have a guestbook on one site which was created using ASP and an Access database. I have created a new site using the much more friendly PHP and wish to get the data into my mysql

[PHP-DB] access stored proc

2001-12-30 Thread Mohd Nizar Abdul Najib
how do i access oracle stored procedure that return value 0 or 1 in PHP. Does anyone know? Thank you Regards, Mohd Nizar -- 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

RE: [PHP-DB] Access with PHP on Linux?

2001-11-14 Thread Andrew Hill
http://www.openlinksw.com Universal Data Access Data Integration Technology Providers -Original Message- From: Steve Farmer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 13, 2001 10:32 PM To: Andreas D. Landmark; [EMAIL PROTECTED] Subject: Re: [PHP-DB] Access with PHP on Linux

[PHP-DB] Access with PHP on Linux?

2001-11-13 Thread Chris Payne
Hi there everyone, I have had abit of an emergency, I have a website for a client based on ASP and ACCESS 2000, but the current server is giving us problems so I want to move over to my own server. The problem is my server is a Linux server - is ACCESS 2000 possible? My server has support

Re: [PHP-DB] Access with PHP on Linux?

2001-11-13 Thread Andreas D. Landmark
At 13.11.2001 23:23, Chris Payne wrote: Hi there everyone, I have had abit of an emergency, I have a website for a client based on ASP and ACCESS 2000, but the current server is giving us problems so I want to move over to my own server. The problem is my server is a Linux server - is ACCESS

Re: [PHP-DB] Access with PHP on Linux?

2001-11-13 Thread Steve Farmer
Hi Andreas, At 11:54 PM + 13/11/01, Andreas D. Landmark wrote: At 13.11.2001 23:23, Chris Payne wrote: Hi there everyone, [snip] I want to keep it an access DB if possible as i've had problems changing the DB to MySQL. Install ODBC, that would let you interface with degenerate database

[PHP-DB] Access to MySQL denied

2001-10-26 Thread Kirill Safarov
I cannot connect to MySQL database located at the webhost. The command: $link = mysql_connect('hostname:3306','username','password') or die (Could not connect); (with the proper hostname of course) returns this error message: MySQL Connection Failed: Access denied for user: '[EMAIL PROTECTED]'

Re: [PHP-DB] Access to MySQL denied

2001-10-26 Thread Russ Michell
Of course, it works perfectly fine on my home computer, so I guess it musthave something to do with the configuration of PHP (or, possibly, MySQL?) How do you connect to MySQl from home? It sounds as if the user trying to connect to MySQL doesn't have the right privileges to connect top the

Re: [PHP-DB] Access to MySQL denied

2001-10-26 Thread Kirill Safarov
I am new to MySQL (I am more used to Microsoft SQL), but it seems to me that if I provide username string as the username parameter, that's what MySQL should use to login into the database. Why is @lsh101.siteprotect.com being appended to it? The username was provided by the webhost, and

Re: [PHP-DB] Access to MySQL denied

2001-10-26 Thread Dommers
If your php-script runs on the same server as mysql, you should try 'localhost' as the hostname. That worked for me in most cases. Russ Michell [EMAIL PROTECTED] schreef in bericht news:SIMEON.10110260917.B@k1c. anglia.ac.uk... Of course, it works perfectly fine on my home computer, so I guess

RE: [PHP-DB] Access to MySQL Conversion question

2001-10-19 Thread Tony McCrory
select max(idfield) from table -Original Message- From: Brad Harriger [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 18, 2001 7:32 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Access to MySQL Conversion question I have several MS Access databases that I need to convert

[PHP-DB] access denied

2001-09-19 Thread its me
Warning: MySQL Connection Failed: Access denied for user: 'rehab@localhost' (Using password: YES) in /home/sites/site92/web/mall/confirmregistration.php on line 14 Error connecting to host localhost, by user rehab should i use this: GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON

[PHP-DB] access my cgi-bin

2001-09-11 Thread its me
here is my folders tree: (i'm on windows) c:/apache/cgi-bin/test.php c:/apache/htdocs/click.html i want to call test.php from click.html. what is the syntax? is it something like: ../cgi-bin/test.php?

RE: [PHP-DB] access my cgi-bin

2001-09-11 Thread Rick Emery
yeah, that should have worked. FORM method=post action =../cgi-bin/test.php -Original Message- From: its me [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 11, 2001 3:19 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] access my cgi-bin here is my folders tree: (i'm on windows) c

Re: [PHP-DB] access my cgi-bin

2001-09-11 Thread Andrey Hristov
/test.php Andrey Hristov IcyGEN Corporation http://www.icygen.com BALANCED SOLUTIONS - Original Message - From: Rick Emery [EMAIL PROTECTED] To: 'its me' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, September 11, 2001 4:25 PM Subject: RE: [PHP-DB] access my cgi-bin yeah, that should

Re: [PHP-DB] Access tables to PostgreSQL

2001-08-24 Thread Alexandre Santos
Grant wrote: On Wed, 22 Aug 2001, Tim O'Brien wrote: What is the best method to move data from access tables to postgreSQL? Are there are php functions that are available? Unfortunately, only Access reads Access very well, but you can use ODBC and linked tables in Access to copy it

[PHP-DB] Access tables to PostgreSQL

2001-08-22 Thread Tim O'Brien
What is the best method to move data from access tables to postgreSQL? Are there are php functions that are available? -- 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

Re: [PHP-DB] Access tables to PostgreSQL

2001-08-22 Thread grant
On Wed, 22 Aug 2001, Tim O'Brien wrote: What is the best method to move data from access tables to postgreSQL? Are there are php functions that are available? Unfortunately, only Access reads Access very well, but you can use ODBC and linked tables in Access to copy it to PostgreSQL. --

RE: [PHP-DB] Access counter

2001-07-24 Thread Walter, Marcel
Message- From: leo g. divinagracia iii [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 06:25 Cc: PHP-DB Subject: Re: [PHP-DB] Access counter in a simple way, yes. if you really want unique users, you can setup a table and insert the IP addresses in their and query

[PHP-DB] Access counter

2001-07-23 Thread Shahmat Dahlan
I'd like to do a counter with PHP, how do you do this? I thought maybe I could either use cookie or session or session? Which should I use ? regards and thanks is adnved -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [PHP-DB] Access counter

2001-07-23 Thread leo g. divinagracia iii
in pseudo-code: make a text file - associate it a URL when a user comes along, have a PHP script on top of the web page to 1. open the text file 2. counter = counter +1 3. write update 3.5 print number of hits somewhere on webpage 4. close file... Shahmat Dahlan wrote: I'd like to do a

Re: [PHP-DB] Access counter

2001-07-23 Thread Shahmat Dahlan
If I do the below, like you stated, that means the counter will update everytime a visitor refreshes the content. Would it be possible for the counter script not to increase the value by 1 when a visitor merely refreshes. Is it possible to let the script increase the value by only by one, only

[PHP-DB] Access Violation PLEASE HELP.

2001-07-10 Thread PHPFAN
I have the following setup. PHP 4.04 running on windows 2000 using SQL Server 7.0 The script runs fine for sometime, then I get the following errors PHP has encountered Access Violation at 013A2466. So I have to reboot everytime. This happens almost every 2 to 3 hours or so. I have to use PHP

[PHP-DB] access to a access db via php

2001-06-25 Thread Matthias Machnik
Hello NG, it's the first time I use this NG and I'm not sure whether I'm I right here or not. The problem: I'm a beginner in php (just started to read the first introductions). I created a guestbook with FP2000. The entrys where safed in and shown from a db. FP 2000 nearly created it by itself

[PHP-DB] access insert problem

2001-02-01 Thread Fredrik Stark
Hi, Im using php4.0.3pl1 on a NT5 with an Access 2000 database. I use the database to store text and numbers. I just realised that the text-field can only store 255 characters so I changed the type from "text" to "memo". And now i get "Syntax Error" when i try to insert a value to the "memo"

Re: [PHP-DB] access insert problem

2001-02-01 Thread Andreas Karajannis
Fredrik Stark wrote: Hi, Im using php4.0.3pl1 on a NT5 with an Access 2000 database. I use the database to store text and numbers. I just realised that the text-field can only store 255 characters so I changed the type from "text" to "memo". And now i get "Syntax Error" when i try to

[PHP-DB] Access MS SQL idnetical thru ODBC ??

2001-01-21 Thread Sigurd Magnusson
I have written a small program which uses ODBC to connect to a Access Database. I am simply wanting to know if this would also work with MS SQL without any modifications what so ever, or does ODBC not really accomplish what it was designed for ? The SQL statments used are very simple; the

Re: [PHP-DB] Access MS SQL idnetical thru ODBC ??

2001-01-21 Thread Andrew Hill
Siggy, It should work fine, as long as you use SQL92 syntax (or SQL89, depending on the ODBC driver). The only problem comes when you use SQL syntax that Access accepts that is not really valid in the SQL specification. I believe 'limit' is one example, but I'm sure someone will correct me if

Re: [PHP-DB] Access 2000 to PostgreSQL

2001-01-11 Thread Larry Rivera
I belive that Acceess can export to a comma delimited file, so you can do that then dump it into you new database ;) - Original Message - From: "Julio Cuz, Jr." [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, January 11, 2001 3:33 PM Subject: [PHP-