Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mysql+PHP to PostGres+PHP ?

Status
Not open for further replies.

dannymm

Programmer
Oct 4, 2001
5
IN
Hi Guys,

I have some issues with postgres.

We are planning to port a Billing Application from MySQL+PHP to
PostGres 7.1+PHP.

The issues are maily with capitalized column names.

My Table Name: NetworkName
Column Name1 : NetCode
Column Name2 : NetworkName

All over the application we have used statements like (After fetching *
from above table).

echo $Row["NetCode"]; and
echo $Row["NetworkName"];

these statements return nothing where as statements like

echo $Row["netcode"]; and
echo $Row["networkname"] display correct
values.

Why is this difference when my column names are capitalized. Even the "psql"
tool displays all column names in lower cases.

Does any body have solution/clue to handle this issue ...

I need to port my application urgently ..

Thanks in Advance,
Danny Appaiah
 
Danny

Try downloading mysqlphp2postgres-0.92.tar from i have downloaded it for the same reasons as yourself but as of yet not had time to look at it.

Darren
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top