Openbiz 2.0 [Development Tools]

Questions? Need Help? Want to share? » PHP Forum
Script Name:
Openbiz 2.0

Download:
openbiz-2.0.zip

Category:
Development Tools

Archive Content:

Openbiz > Bin

Openbiz > Bin > Service

Openbiz > Bin

Openbiz

Openbiz > Document

Openbiz > Document > Apidoc20 > BizController

Openbiz > Document > Apidoc20 > BizDataObj

Openbiz > Document > Apidoc20 > BizSystem

Openbiz > Document > Apidoc20 > BizView

Openbiz > Document > Apidoc20

Openbiz > Document > Apidoc20 > Media

Openbiz > Document > Apidoc20 > Media > Images

Openbiz > Document > Apidoc20 > Media > Lib

Openbiz > Document > Apidoc20 > Media

Openbiz > Document > Apidoc20

Openbiz > Document > Apidoc20 > PluginService

Openbiz > Document

Openbiz

Openbiz > Metadata

Openbiz > Metadata > Service

Openbiz > Others > Adodb

Openbiz > Others > Adodb > Contrib

Openbiz > Others > Adodb > Cute Icons For Site

Openbiz > Others > Adodb > Datadict

Openbiz > Others > Adodb > Docs

Openbiz > Others > Adodb > Drivers

Openbiz > Others > Adodb > Lang

Openbiz > Others > Adodb

Openbiz > Others > Adodb > Pear > Auth > Container

Openbiz > Others > Adodb > Pear

Openbiz > Others > Adodb > Perf

Openbiz > Others > Adodb

Openbiz > Others > Adodb > Session

Openbiz > Others > Adodb > Session > Old

Openbiz > Others > Adodb > Session

Openbiz > Others > Adodb > Tests

Openbiz > Others > Adodb

Openbiz > Others > Adodb > Xsl

Openbiz > Others > Dompdf

Openbiz > Others > Dompdf > Include

Openbiz > Others > Dompdf

Openbiz > Others > Dompdf > Lib

Openbiz > Others > Dompdf > Lib > Fonts

Openbiz > Others > Dompdf > Lib > Res

Openbiz > Others > Dompdf > Lib

Openbiz > Others > Dompdf

Openbiz > Others > Dompdf > Www

Openbiz > Others > Dompdf > Www > Images

Openbiz > Others > Dompdf > Www

Openbiz > Others > Dompdf > Www > Test

Openbiz > Others > Dompdf > Www

Openbiz > Others > Smarty

Openbiz > Others > Smarty > Demo > Configs

Openbiz > Others > Smarty > Demo

Openbiz > Others > Smarty > Demo > Templates

Openbiz > Others > Smarty

Openbiz > Others > Smarty > Libs

Openbiz > Others > Smarty > Libs > Internals

Openbiz > Others > Smarty > Libs > Plugins

Openbiz > Others > Smarty > Libs

Openbiz > Others > Smarty > Misc

Openbiz > Others > Smarty

Openbiz > Others > Smarty > Unit Test

Openbiz > Others > Smarty > Unit Test > Configs

Openbiz > Others > Smarty > Unit Test

Openbiz > Others > Smarty > Unit Test > Templates

Openbiz > Others > Smarty > Unit Test

Demoapp > Bin

Demoapp > Bin > Service

Demoapp > Bin > Shared

Demoapp

Demoapp > Css

Demoapp

Demoapp > Images

Demoapp > Metadata

Demoapp > Metadata > Demo

Demoapp > Metadata > Service

Demoapp > Metadata > Shared

Demoapp

Demoapp > Templates

Readme.htm:




ADODB Manual


    


ADOdb Library for PHP
ADOdb is a suite of database libraries that allow you to connect to multiple 
    databases in a portable manner. Download from http://adodb.sourceforge.net/.
The ADOdb documentation has moved to docs-adodb.htm 
    This allows you to query,  update and insert records using a portable API.
The ADOdb data dictionary docs are at docs-datadict.htm. 
    This allows you to create database tables and indexes in a portable manner.
The ADOdb database performance monitoring docs are at docs-perf.htm. 
    This allows you to perform health checks,  tune and monitor your database.
The ADOdb database-backed session docs are at docs-session.htm. 


Installation
Make sure you are running PHP4.0.4 or later. Unpack all the files into a directory accessible by your webserver.

To test,  try modifying some of the tutorial examples. Make sure you customize the connection settings correctly. You can debug using:

<?php
include('adodb/adodb.inc.php');

$db = ADONewConnection($driver); # eg. 'mysql' or 'oci8' 
$db->debug = true;
$db->Connect($server,  $user,  $password,  $database);
$rs = $db->Execute('select * from some_small_table');
print "<pre>";
print_r($rs->GetRows());
print "</pre>";
?>

How are people using ADOdb
Here are some examples of how people are using ADOdb: 

     PhpLens is a commercial data grid component that allows 
        both cool Web designers and serious unshaved programmers to develop and 
        maintain databases on the Web easily. Developed by the author of ADOdb. 
    
     PHAkt: PHP Extension for DreamWeaver Ultradev allows 
        you to script PHP in the popular Web page editor. Database handling provided 
        by ADOdb. 
     Analysis Console for Intrusion Databases (ACID): PHP-based 
        analysis engine to search and process a database of security incidents 
        generated by security-related software such as IDSes and firewalls (e.g. 
        Snort,  ipchains). By Roman Danyliw. 
     PostNuke is a very popular free content management system 
        and weblog system. It offers full CSS support,  HTML 4.01 transitional 
        compliance throughout,  an advanced blocks system,  and is fully multi-lingual 
        enabled. 
     EasyPublish CMS is another free content management system 
        for managing information and integrated modules on your internet,  intranet- 
        and extranet-sites. From Norway. 
     NOLA is a full featured accounting,  inventory,  and job 
        tracking application. It is licensed under the GPL,  and developed by Noguska. 
    





Other Development Tools Scripts:

WebMaster Resources Home

©RingsWorld.com