goracio

Очередной блог на WordPress

ad

Entries for Апрель, 2010

Django | How to install Django | Django documentat…

If you plan to use Django’s database API functionality, you’ll need to make sure a database server is running. Django supports many different database servers and is officially supported with PostgreSQL, MySQL, Oracle and SQLite (although SQLite doesn’t require a separate server to be running).
In addition to the officially supported databases, there are backends provided [...]

Leave a Comment

Database API reference

Once you’ve created your data models , Django automatically gives you a database-abstraction API that lets you create, retrieve, update and delete objects. This document explains that API.
Throughout this reference, we’ll refer to the following models, which comprise a weblog application:
class Blog(models.Model): name = models.CharField(maxlength=100) tagline = [...]

Leave a Comment

Chapter 5: Interacting with a Database: Models

In Chapter 3, we covered the fundamentals of building dynamic Web sites with Django: setting up views and URLconfs. As we explained, a view is responsible for doing some arbitrary logic , and then returning a response. In the example, our arbitrary logic was to calculate the current date and time.
In modern Web applications, the [...]

Leave a Comment

Extending Django’s database API to include full-te…

Written by Andrew Durdin. Published 17th August 2006
Django is an open-source web application framework that-to quote its creators-»encourages rapid development and clean, pragmatic design.» It is written in Python , and provides components to build high-quality web applications: an object-relational mapper, a full-featured templating system, URL dispatching, session management, authentication, and much more [...]

Leave a Comment

SchemaEvolution – Django – Trac

Currently in progress http://south.aeracode.org/ (Sep 29, 2009)–(High activity) http://code.google.com/p/deseb/ (Sep 28, 2009)–(Little activity) http://code.google.com/p/django-evolution/ (Aug 14, 2009)–(Little activity) http://code.google.com/p/dmigrations/ (Mar 02, 2009)–(MySQL Only) http://code.google.com/p/yadsel (Apr 12, 2008)(Very little activity) http://code.google.com/p/schema-evolution/ (looks dead) http://code.google.com/p/django-schemaevolution/ (Google Code Project closed) http://smileychris.tactful.co.nz/ramblings/dbevolution/ (only alpha, discontinued in favor of django-evolution)

Leave a Comment

Some Closure by Neil Roberts

south tutorial:
“With South, you install it and then give one or more of your apps some migrations (either writing them by hand, or autogenerating them from your model definitions). When you syncdb, you’ll only sync apps that don’t have migrations (things like django.contrib.auth, for example, which have a fixed schema), and then when you run [...]

Leave a Comment

What is Open Database Connectivity? – Definition f…

Open Database Connectivity (ODBC) is an open standard application programming interface (API) for accessing a database. By using ODBC statements in a program, you can access files in a number of different databases, including Access, dBase, DB2, Excel, and Text. In addition to the ODBC software, a separate module or driver [...]

Leave a Comment

Open Data Commons

Insert prominently in all relevant locations a statement such as (replacing {DATA(BASE)-NAME} with the name of your data/database):
This {DATA(BASE)-NAME} is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. Any rights in individual contents of the database are licensed under the Database Contents License: http://opendatacommons.org/licenses/dbcl/1.0/

Leave a Comment

Open Database Connectivity

In computing , Open Database Connectivity ( ODBC ) provides a standard software API method for using database management systems (DBMS). The designers of ODBC aimed to make it independent of programming languages , database systems, and operating systems .
ODBC uses as its basis the various Call Level Interface (CLI) specifications from the SQL [...]

Leave a Comment

ODBC–Open Database Connectivity Overview

View products that this article applies to.
This article was previously published under Q110093
Open Database Connectivity (ODBC) is Microsoft’s strategic interface for accessing data in a heterogeneous environment of relational and non- relational database management systems. Based on the Call Level Interface specification of the SQL Access [...]

Leave a Comment