Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: ADOdb


In the News (Wed 23 Dec 09)

  
  ADODB Manual
ADOdb is a big class library, yet it consistently beats all other PHP class libraries in performance.
In ADOdb 1.80 onwards, the secs2cache parameter is optional in CacheSelectLimit() and CacheExecute().
Since ADOdb 3.80, we support bulk binding in Execute(), in which you pass in a 2-dimensional array to be bound to an INSERT/UPDATE or DELETE statement.
phplens.com /lens/adodb/docs-adodb.htm   (9916 words)

  
  ADOdb - Wikipedia, the free encyclopedia
ADOdb is a database abstraction library for PHP and Python.
It is important to note that ADOdb uses SQL.
Since each database implements SQL slightly differently, the developer will need to be aware of the database-specific features and functions to avoid if they want to maintain portability.
en.wikipedia.org /wiki/ADOdb   (153 words)

  
 ADOdb Database Abstraction Library for PHP (and Python) for MySQL, PostgreSQL, Microsoft SQL Server, Oracle, Firebird, ...
ADOdb Lite is a separate PHP project done by a 3rd party to cut down the ADOdb library to use a smaller footprint.
This extension is compatible with ADOdb 3.32 or later, and PHP 4.3.*, 4.4.*, 5.0.* and 5.1.*.
ADOdb Active Record, an OOP encapsulation of a database record.
adodb.sourceforge.net   (579 words)

  
 : Comparing ADODB with PEAR DB, MDB, dbx, Metabase and Native MySQL
The reason why ADOdb benefits so much from an accelerator is that ADOdb is a bigger library than PEAR DB.
PEAR DB from PHP 4.0.6, ADODB 1.40, PhpLib 7.2d and Metabase 1.57, dbx from PHP 4.3.0, and MDB 1.1.1 were used.
ADODB is the database library used by phpLens.
www.phplens.com /lens/adodb   (353 words)

  
 SourceForge.net: ADOdb
ADOdb is a PHP and Python database class library to provide more powerful abstractions for performing queries and managing databases.
ADOdb also hides the differences between the different databases so you can easily switch dbs without changing code.
SourceForge.net is introducing a new feature that will let you buy or sell services for Open Source projects right from the site.
sourceforge.net /projects/adodb   (110 words)

  
 Accessing Databases with ADODB
A complete ADODB example is examined, illustrating some fundamentals of connecting to a database, sending a query, and retrieving results.
ADODB is a database wrapper library that simplifies many database-related tasks in PHP.
Although ADODB provides query helper functions such as PEAR DB, it also has functions that automate more complicated database tasks, such as turning a set of database rows into an HTML
www.aspfree.com /c/a/Database/Accessing-Databases-with-ADODB   (1116 words)

  
 Manual de ADODB
ADOdb es un conjunto de librerias de bases de datos que nos permite conectarnos a varias bases de datos de una manera portable.
La documentacion de ADOdb ya esta aqui docs-adodb-es.htm Para consultar, actualizar e insertar registros por medio de una API portable.
La documentacion del diccionario de datos de ADOdb estan en docs-datadict-es.htm.
www.lacorona.com.mx /fortiz/adodb   (348 words)

  
 ADODB Services in .NET Applications Using C#   (Site not responding. Last check: 2007-10-15)
This article walks you through the usage of ADODB services in.NET application using C# language.
The example details the data access using ADODB, fetching recordset, filling ADO.NET dataset from the recordset and binding the same to datagrid for user display.
Once you do this, ADO objects are available to.NET code as native classes, thus you should be able to see ADODB namespace.
www.c-sharpcorner.com /Code/2002/Dec/ADODBService.asp   (292 words)

  
 An introduction to the ADOdb class library for PHP, Part 2
ADOdb has numerous features that are more advanced too, and we look at some of them this month.
The first parameter is optional (it probably would have made more sense for the developers of ADOdb to make it the second parameter), and if you do not specify a time, the default will be 3600 seconds, or 1 hour.
ADOdb also recommends that the boolean PHP parameter register_globals be set to off, for security reasons (which it is by default in recent versions of PHP).
www.databasejournal.com /features/php/article.php/2234861   (1308 words)

  
 ADODB Manual   (Site not responding. Last check: 2007-10-15)
ADODB now supports caching of recordsets using the new CacheExecute() function.
ADODB only supports recordsets created by a connection object.
All dates should be converted to that format when passing to an ADODB date function.
artappreciation.co.uk /adodb/readme.htm   (5273 words)

  
 PHP Help: ADOdb: Making MySQL Efficient
Active Data Objects Data Base (ADOdb) is a set of libraries/classes that standardizes the PHP database functions.
To download ADOdb, jump over to the PHP Everywhere website and download the adodb372.zip or the adodb372.tgz to your computer or webserver.
This is where ADOdb will store query results it has found for reuse without querying the database again.
www.phpfreaks.com /tutorials/110/0.php   (1543 words)

  
 ADOdb MySQL Tutorial
ADODB soporta avance de filas en todas las bases de datos.
ADODB permite cachear los resultados de las consultas SQL en función de un tiempo definido.
ADODB es lo suficientemente robusto y completo para casi cualquier aplicación.
www.codigophp.com /arts/adodb.html   (1107 words)

  
 ADODB Manual   (Site not responding. Last check: 2007-10-15)
Oracle named variables begin with a colon, and ADOdb requires the named variables be called :0, :1, :2, :3, etc. The first invocation of Bind() will match :0, the second invocation will match :1, etc. Binding can provide 100% speedups for insert, select and update statements.
The function parameters match the Execute and CacheExecute functions respectively, except that $this (the connection object) is passed as the first parameter.
Since ADOdb 3.91, the behaviour of fnExecute varies depending on whether the defined function returns a value.
www.certicamara.com /consulta/lib/adodb/docs-adodb.htm   (11249 words)

  
 PHP: dbx Functions - Manual
However, once loaded, adodb has much more features and probably performs better in some situations then dbx.
One of the nice features that adodb has, is the way you can quickly make a dropdown menu from a query.
ADODB's powerful features are obviously not worth that kind of overhead.
www.php.net /manual/en/ref.dbx.php   (726 words)

  
 An introduction to the ADOdb class library for PHP
ADOdb currently supports MySQL, PostgreSQL, Interbase, Firebird, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, Sybase, FrontBase, DB2 and generic ODBC.
If your database isn't in there, you can probably still use ADOdb generically, but spread the word, and I'm sure you won't have to wait long for it to be added.
Although the include files in ADOdb have been given the extension.inc.php, which means that poorly configured web servers that allow the serving of.inc files will not display the contents as plain text, it's still not a good idea to place libraries in the web tree.
www.databasejournal.com /features/php/article.php/2222651   (760 words)

  
 PHPBuilder.com, the best resource for PHP tutorials, templates, PHP manuals, content management systems, scripts, ...
For connecting to the database, I decided to use ADODB, a database wrapper library, for true cross-platform database independence.
ADODB is available from http://php.weblogs.com/adodb and the latest version of the following session code is available at http://php.weblogs.com/adodb-sessions
Requires the ADODB class library, which is available at http://php.weblogs.com/adodb ====================================================================== This file provides PHP4 session management using the ADODB database wrapper library.
www.phpbuilder.com /tips/item.php?id=177   (515 words)

  
 Weather Plotter
The included versions of JpGraph and ADODB were upgraded to the latest versions (JpGraph v1.7, ADODB v2.3.0).
The major change since the last release is the move to using ADODB for PHP.
ADODB is a database-neutral data connectivity layer for PHP.
www.buberel.org /weather/howto.php   (3243 words)

  
 ADODB Manual
Aslo new to ADODB 1.50 or later is the global variable $ADODB_FETCH_MODE.
ADODB provides two custom handlers which you can modify for your needs.
Also see the ADODB proxy article for bridging Windows and Unix databases.
www.passionconnection.com /adodb/readme.htm   (8674 words)

  
 Rolando Ramirez Weblog @ DotNetJunkies : Problem using ADO (ADODB) objects from .net in WindowsXP SP2: QueryInterface ...   (Site not responding. Last check: 2007-10-15)
Problem using ADO (ADODB) objects from.net in WindowsXP SP2: QueryInterface for interface ADODB._Recordset failed
I'm creating a.net library (based on the code of an article written by Bill Vaugh) to convert ADO.net Datatables y Datasets to ADODB.Recordsets.
Problem using ADO (ADODB) objects from.net in WindowsXP SP2: QueryInterface for interface ADODB._Recordset failedooeess
www.dotnetjunkies.com /WebLog/dotnetrolando/archive/2004/11/30/34348.aspx   (397 words)

  
 ADODB MOLTO LENTO RISPETTO A COM in   (Site not responding. Last check: 2007-10-15)
Ho scelto Access perche' lo conosco molto bene e in caso di guai so come intervenire, ma in futuro vorrei migrare a MySQL o (se avra' successo in azienda) ad Oracle.
Per gestire questo futuro cambio di DB ho provato ADOdb ma forse ho sbagliato qualcosa perche' le prestazioni sono di gran lunga inferiori rispetto ad aprire l' mdb Access come oggetto COM.
Un layer di astrazione come ADOdb aiuta, ma resteranno le differenze nell'sql (sia nella sintassi che nelle caratteristiche supportate) quindi per lavorare meno possibile cerca di non sfruttare molto le caratteristiche più specifiche dei vari database -------------------------------- Inviato via http://arianna.libero.it/usenet/
www.gastronomiastorica.it /message_1049.asp   (298 words)

  
 Connect to SQL Server Using ADODB Retrieving Records
Connect to SQL Server Using ADODB Retrieving Records
This tip will show you how to connect to SQL Server using ADODB Retrieving Records using Record Set and connecting it to Crystal Reports.
In Com, select Microsoft ActiveX Data Objects 2.7 Library.
www.devx.com /tips/Tip/27428?trk=DXRSS_DOTNET   (296 words)

  
 ADODB Manual
If CacheExecute() is called again with the same parameters, same database, same userid, same password, and the cached recordset has not expired, the cached recordset is returned.
Also see the ADOdb proxy article for bridging Windows and Unix databases using http remote procedure calls.
Major speedup of ADOdb for low-end web sites by reducing the php code loading and compiling cycle.
fly-soft.republika.pl /fly_soft/adodb/readme.htm   (11801 words)

  
 ADOdb-news Info Page   (Site not responding. Last check: 2007-10-15)
Low volume moderated mailing list for news and updates on ADOdb.
ADOdb is a PHP database abstraction library that supports many databases.
To see the collection of prior postings to the list, visit the ADOdb-news Archives.
lists.sourceforge.net /lists/listinfo/adodb-news   (218 words)

  
 ADodb-general Info Page   (Site not responding. Last check: 2007-10-15)
General unmoderated mailing list for news and updates on ADOdb.
BUGS should be reported at ADOdb forums, as this mailing list is not monitored.
To see the collection of prior postings to the list, visit the ADodb-general Archives.
lists.sourceforge.net /lists/listinfo/adodb-general   (221 words)

  
 wer-weiss-was | "PHP5 - LDAP schreiben mit ADODB?" | aus Forum PHP
Nun hab ich mir mal die "ADOdb Library for PHP Manual - Supported Databases" angesehen und mir ist auf gefallen, dass LDAP ein "user contributed or experimental driver" ist ("Might not fully support all of the latest features of ADOdb").
Hat schonmal einer einen schreibenden zugriff auf LDAP mit ADODB erfolgreich hinbekommen, oder muss ich mich nach anderen Lösungen umsehen (bzw.
Also mit ADODB scheint es nicht zu gehen.
www.wer-weiss-was.de /theme163/article2578829.html   (242 words)

  
 Access to Excel Automation ADODB Problem
I am using ADODB recordsets and Late Binding Object Automation to export data from Access to Excel.
One of the fields in this recordset is a memo field which will often have more than 255 characters.
One of the > fields in this recordset is a memo field which will often > have more than 255 characters.
www.mcse.ms /message1108240.html   (538 words)

  
 DotnetCoders - ADODB Services in .NET applications using C#
With the advent of ADO.NET, the framework lets you work with your data in a paradigm shift.
We should approach the common problem of re-using or revitalizing existing ADO code.
He possesses 5 years of IT experience in analysis, design & development of client/server and web applications using MS technologies: C#,.NET, Visual Basic, COM+, ASP, and MS SQL Server.
www.dotnetcoders.com /web/Articles/ShowArticle.aspx?article=54   (447 words)

  
 ADODB Manual   (Site not responding. Last check: 2007-10-15)
The function will process the data and return # a fully formatted insert sql statement.
Since ADOdb 4.22, this is an associative array, with the keys in uppercase.
Set $numericIndex=true if you want the old behaviour of numeric indexes (since 4.23).
www.crabrising.info /adodb/docs/docs-adodb.htm   (11339 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.