Re: Enabling sqlite in php 5.3.5

2011-01-29 Thread Dietz, Andrew
Good info, thanks! - Original Message - From: "Remi Collet" To: "Community support for Fedora users" Sent: Saturday, January 29, 2011 2:48:42 AM Subject: Re: Enabling sqlite in php 5.3.5 Le 28/01/2011 21:22, Andrew Dietz a écrit : > but still, phpinfo(() tells me

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Remi Collet
Le 28/01/2011 21:22, Andrew Dietz a écrit : > but still, phpinfo(() tells me the sqlite modules are not configured to > load: > > Configure Command './configure' (...) '--without-sqlite' > '--disable-pdo' '--without-sqlite3' (...) > Read : http://blog.famillecollet.com/post/2010/09/29/phpi

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Andrew Dietz
Ahh, I see. The functions I was trying to use are from PECL sqlite. The PDO class works perfectly. Once again, thanks a million. As you can see, just getting started with sqlite... :) Cheers, Andrew On 01/28/2011 04:44 PM, Rahul Sundaram wrote: > On 01/29/2011 03:08 AM, Andrew Dietz wrote: >>

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Rahul Sundaram
On 01/29/2011 03:08 AM, Andrew Dietz wrote: > Thanks guys, I do have php-pdo installed, but there must be something > else still missing. > > I have a snippet of test code that calls sqlite_open and sqlite_query > functions, and they throw errors: > > PHP Fatal error: Call to undefined function

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Andrew Dietz
Thanks guys, I do have php-pdo installed, but there must be something else still missing. I have a snippet of test code that calls sqlite_open and sqlite_query functions, and they throw errors: PHP Fatal error: Call to undefined function sqlite_open() in /var/www/html/test/sqlite.php on line

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Michael Cronenworth
Andrew Dietz wrote: > but still, phpinfo(() tells me the sqlite modules are not configured to > load: > > Configure Command './configure' (...) '--without-sqlite' > '--disable-pdo' '--without-sqlite3' (...) I saw Rahul replied just as soon as I did, but you already had it installed. The confi

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Michael Cronenworth
Andrew Dietz wrote: > How does on enable sqlite in php without compiling php from scratch? # yum install php-pdo -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproj

Re: Enabling sqlite in php 5.3.5

2011-01-28 Thread Rahul Sundaram
On 01/29/2011 01:52 AM, Andrew Dietz wrote: > How does on enable sqlite in php without compiling php from scratch? > > I thought I had the packages needed for sqlite to work, namely: > > [root@h... ~]# rpm -qa | grep php > php-pdo-5.3.5-1.fc14.x86_64 > php-cli-5.3.5-1.fc14.x86_64 > php-common-5.3.

Enabling sqlite in php 5.3.5

2011-01-28 Thread Andrew Dietz
How does on enable sqlite in php without compiling php from scratch? I thought I had the packages needed for sqlite to work, namely: [root@h... ~]# rpm -qa | grep php php-pdo-5.3.5-1.fc14.x86_64 php-cli-5.3.5-1.fc14.x86_64 php-common-5.3.5-1.fc14.x86_64 php-5.3.5-1.fc14.x86_64 but still, phpinf