stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


PDO: Python Database Objects







PDO: Python Database Objects

PDO: Python Database Objects 11/03/2003 11:13 AM

Python Database Objects (PDO) 1.1.0 Released




This is a GrokNews Entry: (what is grok?)





Similar Items

PDO: Python Database Objects

Grok Headline matches for PDO: Python Database Objects

Python Web Objects 0.72


Python Web Objects 0.72 03/16/2003 05:54 AM
A dynamic page generation system for embedding Python code in HTML.

Python Web Objects 0.71


Python Web Objects 0.71 03/16/2003 03:05 AM
A dynamic page generation system for embedding Python code in HTML.

Pyro - Python Remote Objects


Pyro - Python Remote Objects 03/13/2003 08:38 PM
Pyro 3.2 beta released

SQL Server Database Objects


SQL Server Database Objects 06/23/2004 04:24 AM

MDO - Mercury Database Objects


MDO - Mercury Database Objects 12/09/2003 10:59 PM
Mercury beta release 0.8.4

Python and XML: XML Namespaces Support
in Python Tools, Part Three


Python and XML: XML Namespaces Support
in Python Tools, Part Three
06/30/2004 07:31 PM
In this month's Python and XML column Uche Ogbuji examines the namespace support in ElementTree, PyRXPU, and libxml.

Python and XML: XML Namespaces Support
in Python Tools, Part Two


Python and XML: XML Namespaces Support
in Python Tools, Part Two
05/13/2004 07:55 PM
In his latest Python and XML column, Uche Ogbuji continues his tour of XML namespaces support in Python tools, focusing this time on 4Suite.

Backporting from Python 2.3 to Python
2.2


Backporting from Python 2.3 to Python
2.2
06/08/2004 11:18 PM

We have a home-grown templating system at work, which I intend to dedicate an entry to some time in the future. We originally wrote it in Python 2.2, but upgraded to Python 2.3 a while ago and have since been evolving our code in that environment. Today I found a need to load the most recent version of our templating system on to a small, long neglected application that had been running the original version ever since it had enough features to be usable.

Unfortunately, this application was running on a server that only had Python 2.2. Installing Python 2.3 would have been somewhat more painful here than on other servers we run for reasons I won't go in to, so I decided to have a go at getting our current code to run under the older Python version.

In the end, I only had to make three minor changes, all at the top of the file in question.

  1. I added from __future__ import generators as the very first line of the file. We use generators (with the yield statement) in a few places - this feature was only properly added in Python 2.3, but was made available in Python 2.2 as a "future enhancement" through the aforementioned obscure import.

  2. I added True, False = 1, 0 on the next line down. Surprisingly, Python 2.2 had no support for a boolean type and instead used a test for non-zero instead. The above line defines constants that behave enough like Python 2.3's True and False to avoid any problems.

  3. I defined an enumerate function, which was introduced for real in Python 2.3. Here's the code I used:

    
    def enumerate(obj):
        for i, item in zip(range(len(obj)), obj):
            yield i, item 
    

All in all it only took around ten minutes to put the above together, after which the script worked just fine. It was interesting to see how our code had grown to rely on Python 2.3 features without us realising it.


Firebird Database Remote Database Name
Overflow


Firebird Database Remote Database Name
Overflow
06/01/2004 03:27 PM
Aviram Jenik (Jun 01 2004)

More and more on objects


More and more on objects 03/06/2004 02:09 AM
With the first release to support objects out, the question is now "What the heck can you do with the things?" (And no, I don't know why people ask me these sorts of things, since I don't really like objects. Go figure) That's a good question. Mostly a better question than "What will I ultimately be able to do with the things" since who knows, maybe I'll give up half-way through and say good enough. It's been known to happen before. (With objects in general, not with me and objects specifically, but that's a separate issue for another day. Tomorrow,...

Much ado about objects


Much ado about objects 08/17/2002 10:18 PM
CNET Aug 17 2002 10:08PM ET

Objects, objects, objects


Objects, objects, objects 03/13/2003 10:14 AM
I'm in the middle of trying to nail down the semantics of the object systems I want to support in...

Bootleg Objects


Bootleg Objects 08/10/2004 12:23 PM
Bootleg Objects, the site of two artists in Germany, have done some really amazing work retrofitting popular technology to serve a new and/or unintended purpose -- just because they can. It's quite beautiful design -- who knows of other examples?

Where are the objects in Drupal?


Where are the objects in Drupal? 04/04/2005 10:32 AM

So we've hired a bunch of programmers who have asked me "where are the 'classes' in Drupal?" "Why doesn't Drupal have 'object-oriented' programming?"

These and a host of other related questions were put to Moshe Weitzman - one of the NON Bryght Drupal dudes we've hired recently (yes things are taking off here at Broadband Mechanics.) So Moesh sat down with some of his homeboys and wrote up this little tome - which I thought some of you might be interested in.

Jonas Luster or Leonard Lin might wanna also weigh in - as well as Phil Pearson or Lucas Gonze. Is this whacky Drupal hook system any good?

WHAT! Nodes aren't objects! And what's the story with these GoF dudes? Design Patterns - hmmmmm.

We can make this a real blogosphere conversation!

Have at it dudes. Can 1,000 Drupal programmers be wrong? Are they correct in all their assumptions?

Only the end-users will know for sure - cause last I looked - they don't care. But I care.


Keynote Objects 2.0


Keynote Objects 2.0 01/27/2004 03:59 PM
Package of animations for Apple’s Keynote.

Management by objects


Management by objects 12/24/2004 12:58 PM
Last month I wrote about MSH ("Monad"), Microsoft's new command shell, and demonst rated the software on my blog. The column-plus-demo drew favorable reactions not only from the Windows crowd, but also from Unix/Linux folk who saw the MSH object pipeline as a genuine innovation. They're right.

...

As Windows steadily evolves into a family of products that integrates by means of managed objects, all sorts of benefits accrue. Interfaces are easier to discover. Composite applications come together more quickly and, thanks to modern exception handling, behave more reliably. The chasm that separates command-line oriented applications from graphical applications becomes easier to cross.

All this adds up to an imminent challenge to Unix/Linux. In that ecosystem, Java is the logical counterpart to .Net in the Windows world. Despite its huge head start, though, Java has done surprisingly little to rationalize basic system management and integration in the Unix/Linux realm. It's understandable, if regrettable, that Linux and Java have never intertwined as intimately as they might have done. For all its potential value, the union would have had to overcome deep divisions. On the technical front, Java's object-oriented purity can seem to float above the gritty realities of the C and C++ trenches. And on the cultural front, Sun's ownership of Java conflicts with Linux's open source purity.

Why, though, hasn't Sun done more to bring these worlds together? With its strategic stake in Java on the one hand and both Solaris and Linux on the other, you'd think it would make sense to combine these technologies in more than just a rhetorical way.

The wild card here, by the way, is Novell. With Suse and Ximian under one roof, it's at least conceivable that Microsoft's Windows strategy could play out on Linux in terms of Mono, the open source implementation of .Net. That's an incredible long shot, of course, but the synergies are worth pondering. [Full story at InfoWorld.com]
...

FFMpeg Objects


FFMpeg Objects 05/11/2004 05:57 PM
New FOBS release (0.1)

Objects vs services


Objects vs services 02/01/2005 09:23 PM
The classic view of the difference between objects, components and services is laid out with admirable clarity in an ...

That's what Laszlo objects are all
about!


That's what Laszlo objects are all
about!
07/01/2004 07:02 PM

Alf asked:

Apparently, Apple's new Dashboard thingummies are HTML/CSS/Javascript pages (ie WebKit) in little floaty windows, perfect for tiny Flash/SVG apps and web-updated displays.

But how do you control iTunes from one of those -- open up internal application controls to the internet?

And Mar c Canter replied:

Without being able to "API Into" a system, these little HTML pages are nothing more than just - well HTML pages.

But just imagine if we had open APIs to inter-connect modules together!

We spend most of our web time in the browser, and yet the browser is not an object on the web. Is it possible to change that, or will there always be a line that the web can't cross? How is an application that handles web objects different from a web object? Why can't my web app generate M3U files to control your client app to render M3U files?

This is the tragedy of Flash: Flash objects are on the web, but not the Flash player, so Flash has never become a building block.

Marc enthusiastically agress!

Exactly - and that's where the Laszlo objects come in. It's an XML language specifically designed to inter-connect to modular back-end processes. Laszlo is the missing link for front-end modularity.

We're using it on 1UP.com.

Mock Objects for C++ 1.1.16


Mock Objects for C++ 1.1.16 08/03/2004 04:22 PM
A test framework for developing mock objects.

Mock Objects for C++ 1.1.3


Mock Objects for C++ 1.1.3 12/11/2003 06:11 PM
A test framework for developing mock objects.

Mock Objects for C++


Mock Objects for C++ 12/11/2003 05:04 PM
mockpp 1.1.13 available

SMS 1.2 Objects That Are Not Migrated To
SMS 2.0


SMS 1.2 Objects That Are Not Migrated To
SMS 2.0
12/31/2003 10:53 AM

DBIx-Objects-0.04


DBIx-Objects-0.04 09/14/2004 06:39 PM

PHP Data Objects


PHP Data Objects 06/24/2005 07:22 PM

PDO - PHP Wiki: It took until version 5.1, but PHP is finally getting database abstraction.

PDO provides a uniform data access interface, sporting advanced features such as prepared statements and bound parameters. PDO drivers are dynamically loadable and may be developed independently from the core, but still accessed using the same API.


Spread objects


Spread objects 08/20/2004 06:12 AM
Spread Objects beta 2

DevX: The Evolution of Objects in PHP


DevX: The Evolution of Objects in PHP 10/28/2003 11:07 PM
PHP has come a long way (baby) since it's early PHP/FI days, when Rasmus was just throwing together some scripts to help with his homepage. It evolved and grew, thanks to some larger Open Source players, and became respected as a scripting language all it's own. When PHP 3.0 rolled around, major things started happening, and the world got its first taste of what would become one of the most popular Apache modules to date - and this article has the rest of the story.

Java Persistent Objects


Java Persistent Objects 11/16/2003 06:17 PM
JPOX 1.0 Beta 1

QoS Enabled Distributed Objects 0.4.2


QoS Enabled Distributed Objects 0.4.2 10/30/2003 09:22 PM
A CORBA Component Model (CCM) implementation for C++.

COWeb (Common Objects for Web)


COWeb (Common Objects for Web) 03/20/2003 11:55 AM
COWeb 0.2 Released

Cache complex objects


Cache complex objects 08/16/2004 02:41 AM
CNET Aug 16 2004 7:13AM GMT

Generating combinatorial objects


Generating combinatorial objects 08/14/2004 08:04 AM
Generating combinatorial objects: Release 3.1

New Technology Uses 'Glanceable' Objects
(AP)


New Technology Uses 'Glanceable' Objects
(AP)
04/16/2004 03:57 PM
AP - It looks like a size-XXXL chicken egg and glows in colors that change and waver in intensity as it tracks qualitative shifts in financial data from the Internet. But the white plastic Orb was designed to be far more than a barometer of the Dow Jones Industrial average, it's programmed out-of-the-box function.

Financial Objects pays $10.6m for WMS


Financial Objects pays $10.6m for WMS 04/04/2005 08:26 AM
Computer Business Review Apr 4 2005 12:46PM GMT

Tricks for Scanning 3D Objects


Tricks for Scanning 3D Objects 08/08/2004 07:05 AM
G4 Tech TV Aug 8 2004 11:06AM GMT

Format C++ objects as you write them


Format C++ objects as you write them 11/11/2002 11:24 PM
CNET Nov 11 2002 11:01PM ET

XMLHTTP ActiveX objects


XMLHTTP ActiveX objects 11/17/2002 12:21 AM
CNET Nov 16 2002 11:03PM ET

PHP Intro to Objects and Classes


PHP Intro to Objects and Classes 11/27/2002 08:37 AM
PHP's Object Oriented capabilities may not be complete, but the benefits of convenience and code re-use from using Objects and Classes are here now. If you are already dabbling in PHP, but haven't yet checked out Classes, have a look at this simple (but useful) example of an Error Message Class.

New Technology Uses 'Glanceable' Objects


New Technology Uses 'Glanceable' Objects 04/16/2004 06:28 PM
AP via Daily Press Apr 16 2004 10:04PM GMT
Grok Description matches for PDO: Python Database Objects
GrokA matches for PDO: Python Database Objects

PDO: Python Database Objects

The following phrases have been identified by the grok system as matching this entry: "python database objects" pdo

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

ArtIcons v3.93 Beta
ArtIcons Pro v3.93
Beta

Active Desktop
Calendar v3.1

New Napster Off To A
Solid Start

Free and Easy in
Austin

WiMax Has Hard Job
Ahead

Legra Releases
Products

App lets you create
Web catalog of
iTunes libraries

Reviews in RSS feeds
Mac.Ars looks at
Apple's quality
control

Apple pushing iTunes
for Windows in
updated ads

The feeble
beginnings of war
robots

sandlot science
The Real Halley
10.3: Install
missing Perl headers

10.3: A fix for
proftpd not allowing
user login

10.3: Paste web
content with links
from Safari to
TextEdit

10.3: Drag and drop
vCards from Address
Book

Open Cocoa
applications in the
background

Logorrhea - Browse
and search iChat log
files

A busy weekend...
snescom 1.3.3
CRM114 Discriminator
20031102-RC4

AudioLink 0.04
PHPX 3.2.2 (PHPX
3.x)

swbis 0.174
Gnomadic 0.1
My Photo Gallery 3.7
OpenGUI 4.3.1
Zuul 1.2.0
Delineate 0.4.1
Microsoft Works on
Search Service

Microsoft and IBM
Announce Technology
Agreement

Microsoft Gives
Mobile Devices a New
Voice

Todays Shorts
Scanner shootout:
Epson's Perfection
1260 vs. Canon's
CanoScan LiDE 130

Should you buy a TV
from a PC maker?

Seeing spots
Nirotek's single
speaker surround
sound system

How to get an SPV
E200 Smartphone

Dell, Gateway adopt
Intel's extreme chip

Apple G5
supercluster exceeds
10 teraflop/s

Get ready for
Bluejacking

GT.M High end
database + MUMPS
compiler

The Gimp 1.3.22
(Development)

FM-Classic 1.8 beta
1

GCompris 4.1
Zero Install 0.1.18
class_protect_pictur
e 1.0.2

Process Change
Detection System 2.6

what is grok?