Search found 10 matches

by raul
Fri May 26, 2006 3:16 pm
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

Now THE PROJECT IS RELEASED UNDER MIT LICENSE and it is 99.99% bug-free!!!
So if any of you find a bug I will high appreciate your submission! :D
by raul
Tue May 23, 2006 1:32 pm
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

To compare my little project with other DALs it is a little unpossible because: ADOdb - I'll never be a fun of ADO especially that it is NOT implemented using OOP facilities of PHP 5. :twisted: PEAR:: DB (or DBX) - it seems to bloated for me ant it is like someone will try to kill a fly with an atom...
by raul
Fri Feb 24, 2006 8:18 am
Forum: PHP - Code
Topic: Pages of news?
Replies: 3
Views: 610

If u haven't found a solution yet, u could take a look
here
by raul
Thu Feb 23, 2006 1:28 am
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

Re: another alternative

cknudsen wrote:...So, I can understand why you started your own db abstraction tool. There's nothing that fits as well as something you've written yourself :-)
It seems that I’m not the only one who thinks that way!!! :)
by raul
Fri Feb 17, 2006 2:18 pm
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

Oh :o , well...anyway I suppose is a little different implementation of ADO than my previous example and I don't like ADO within any inplementation . :lol: I don't wanna be rude but ADODB is not the subject in this thread. :( I’m just searching for some feedback regarding my project…… :roll: That’s ...
by raul
Fri Feb 17, 2006 1:43 am
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

By your own logic, other people would not be interested in your code because it would be easier for them to debug something they’ve made than to learn to use yours. Well maybe you are right...but this doesn’t exclude the possibility that someone would give me some feedback regarding project. In fac...
by raul
Fri Feb 17, 2006 1:16 am
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

<?PHP $sql="select id, data from test order by id asc"; //----------------------------------------------------------------------- $cn = new COM("ADODB.Connection"); $cn->ConnectionTimeout=0; $cn->CommandTimeout=0; $cn->CursorLocation=3;//adUseClient $cn->Mode=1;//connection mode...
by raul
Thu Feb 16, 2006 4:05 am
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

I don’t know for sure, but to be honest, I’ve start this project based on my own needs because it would be easier for me to debug something I’ve made than to learn to use something else :D …even if this means to reinvent the wheel, probably. :lol: During the development I’ve wondered if this would b...
by raul
Thu Feb 16, 2006 2:59 am
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

Well, I suppose, the method behind pagination. In a few words, I saw tons of DB paginators who fetches the hole recordset in order to get total number of rows :lol: :lol: :lol: , wich is not the case in my solution 8) …I'm fetching only the required rows, not like ADO :lol: :lol: :lol: ........ and ...
by raul
Thu Feb 16, 2006 2:39 am
Forum: Databases
Topic: Database abstraction layer - OOP style w. pagination support
Replies: 14
Views: 1719

Database abstraction layer - OOP style w. pagination support

I’ve started a project for database abstraction layer with full pagination support for SQLite, MySQL, MSSQL and PostgreSQL. The project can be founded at: SourceForge With a little delay, the project will be founded also on following sites: PHP Classes PHP Builder (as a ZIP archive) Hot Scripts Code...