Blender Driver Scripted Expression Tutorials

  • Python Basic Tutorial

BlenderArt Magazine Issue 28 Blender 2.5 Published on Jul 14, 2010 The Blender 2.5 series has been out for a while now, and while it still is under going a lot of changes and refinement, it is. Index of all pages in the Unreal Engine documentation.

  • Python Advanced Tutorial
  • Python Useful Resources
  • Selected Reading

The Python standard for database interfaces is the Python DB-API. Most Python database interfaces adhere to this standard.

You can choose the right database for your application. Python Database API supports a wide range of database servers such as −

  • GadFly
  • mSQL
  • MySQL
  • PostgreSQL
  • Microsoft SQL Server 2000
  • Informix
  • Interbase
  • Oracle
  • Sybase

Here is the list of available Python database interfaces: Python Database Interfaces and APIs. You must download a separate DB API module for each database you need to access. For example, if you need to access an Oracle database as well as a MySQL database, you must download both the Oracle and the MySQL database modules.

The DB API provides a minimal standard for working with databases using Python structures and syntax wherever possible. This API includes the following −

  • Importing the API module.
  • Acquiring a connection with the database.
  • Issuing SQL statements and stored procedures.
  • Closing the connection

We would learn all the concepts using MySQL, so let us talk about MySQLdb module.

What is MySQLdb?

MySQLdb is an interface for connecting to a MySQL database server from Python. It implements the Python Database API v2.0 and is built on top of the MySQL C API.

How do I Install MySQLdb?

Before proceeding, you make sure you have MySQLdb installed on your machine. Just type the following in your Python script and execute it −

If it produces the following result, then it means MySQLdb module is not installed −

To install MySQLdb module, use the following command −

Note − Make sure you have root privilege to install above module.

Database Connection

Before connecting to a MySQL database, make sure of the followings −

  • You have created a database TESTDB.

  • You have created a table EMPLOYEE in TESTDB.

  • This table has fields FIRST_NAME, LAST_NAME, AGE, SEX and INCOME.

  • User ID 'testuser' and password 'test123' are set to access TESTDB.

  • Python module MySQLdb is installed properly on your machine.

  • You have gone through MySQL tutorial to understand MySQL Basics.

Example

Following is the example of connecting with MySQL database 'TESTDB'

While running this script, it is producing the following result in my Linux machine.

If a connection is established with the datasource, then a Connection Object is returned and saved into db for further use, otherwise db is set to None. Next, db object is used to create a cursor object, which in turn is used to execute SQL queries. Finally, before coming out, it ensures that database connection is closed and resources are released.

Creating Database Table

Once a database connection is established, we are ready to create tables or records into the database tables using execute method of the created cursor.

Example

Let us create Database table EMPLOYEE −

INSERT Operation

It is required when you want to create your records into a database table.

Example

The following example, executes SQL INSERT statement to create a record into EMPLOYEE table −

Above example can be written as follows to create SQL queries dynamically −

Example

Following code segment is another form of execution where you can pass parameters directly −

READ Operation

READ Operation on any database means to fetch some useful information from the database.

Once our database connection is established, you are ready to make a query into this database. You can use either fetchone() method to fetch single record or fetchall() method to fetech multiple values from a database table.

  • fetchone() − It fetches the next row of a query result set. A result set is an object that is returned when a cursor object is used to query a table.

  • fetchall() − It fetches all the rows in a result set. If some rows have already been extracted from the result set, then it retrievesthe remaining rows from the result set.

  • rowcount − This is a read-only attribute and returns the number of rows that were affected by an execute() method.

Example

The following procedure queries all the records from EMPLOYEE table having salary more than 1000 −

This will produce the following result −

Update Operation

UPDATE Operation on any database means to update one or more records, which are already available in the database.

The following procedure updates all the records having SEX as 'M'. Here, we increase AGE of all the males by one year.

Example

DELETE Operation

DELETE operation is required when you want to delete some records from your database. Following is the procedure to delete all the records from EMPLOYEE where AGE is more than 20 −

Example

Performing Transactions

Transactions are a mechanism that ensures data consistency. Transactions have the following four properties −

  • Atomicity − Either a transaction completes or nothing happens at all.

  • Consistency − A transaction must start in a consistent state and leave the system in a consistent state.

  • Isolation − Intermediate results of a transaction are not visible outside the current transaction.

  • Durability − Once a transaction was committed, the effects are persistent, even after a system failure.

The Python DB API 2.0 provides two methods to either commit or rollback a transaction.

Example

You already know how to implement transactions. Here is again similar example −

COMMIT Operation

Commit is the operation, which gives a green signal to database to finalize the changes, and after this operation, no change can be reverted back.

Here is a simple example to call commit method.

ROLLBACK Operation

If you are not satisfied with one or more of the changes and you want to revert back those changes completely, then use rollback() method.

Here is a simple example to call rollback() method.

Disconnecting Database

To disconnect Database connection, use close() method.

If the connection to a database is closed by the user with the close() method, any outstanding transactions are rolled back by the DB. However, instead of depending on any of DB lower level implementation details, your application would be better off calling commit or rollback explicitly.

Handling Errors

There are many sources of errors. A few examples are a syntax error in an executed SQL statement, a connection failure, or calling the fetch method for an already canceled or finished statement handle.

The DB API defines a number of errors that must exist in each database module. The following table lists these exceptions.

Sr.No.Exception & Description
1

Warning

Used for non-fatal issues. Must subclass StandardError.

2

Error

Base class for errors. Must subclass StandardError.

3

InterfaceError

Used for errors in the database module, not the database itself. Must subclass Error.

4

DatabaseError

Used for errors in the database. Must subclass Error.

5

DataError

Subclass of DatabaseError that refers to errors in the data.

6

OperationalError

Subclass of DatabaseError that refers to errors such as the loss of a connection to the database. These errors are generally outside of the control of the Python scripter.

7

Batman arkham city pc game tpb torrents. IntegrityError

Subclass of DatabaseError for situations that would damage the relational integrity, such as uniqueness constraints or foreign keys.

8

InternalError

Subclass of DatabaseError that refers to errors internal to the database module, such as a cursor no longer being active.

9

ProgrammingError

Subclass of DatabaseError that refers to errors such as a bad table name and other things that can safely be blamed on you.

10

NotSupportedError

Subclass of DatabaseError that refers to trying to call unsupported functionality.

Your Python scripts should handle these errors, but before using any of the above exceptions, make sure your MySQLdb has support for that exception. You can get more information about them by reading the DB API 2.0 specification.

Drivers are a way to control values of properties by means of a function,or a mathematical expression.

Effectively, drivers consist of:

  • A driver configuration that specifies zero, one, or more input values usingother properties or object transformation channels, and combines them usinga predefined mathematical function or a custom Python expression.

  • An animationF-Curvethat maps the output of the driver configuration to the final value to applyto the driven property.

As an example, the rotation of Object 1 can be controlled by the scale of Object 2.It is then said that the scale of Object 2 drives the rotation of Object 1.

Not only can drivers directly set the value of a property to the value of a different one,they can also combine multiple values using a fixed function or a Python expressionand further modulate it with a manually defined curve and/or a modifier stack.

Drivers are an extremely powerful tool for building rigs and are typically usedto drive bone transforms and the influence of shape keys, action constraints andmodifiers, often using custom properties as inputs.

Graph View¶

The main area of the Drivers editorshows an F-Curve thatrepresents the driver function.

The X axis maps to the output value of the driver configuration. The units depend on the setup.

The Y axis shows the value applied to the target property. Swords and sandals 2 cheats. The units depend on the property.

In the example image, if the driver value is 2.0 the property value will be 0.5.

The default F-curve is an identity map, i.e. the value produced by the driver configurationis applied to the driven property unchanged. If the driver output value is 2.0,the property will be 2.0.

The driver function can be defined artistically with Bézier curve handles ormathematically with trigonometric functions or polynomial expressions such as (y = a + bx).Furthermore, the function can also be procedurally modulated with noise or cyclic repetitions.See Modifiers for more details.

Driver

Driver Configuration¶

The Drivers panel shows the setup for a driver.

A driver can have zero, one, or more variables. Variables specify which properties,object transformation channels, or relative distances between objects, are used as inputsby the driver.

The driver type determines how the variables are used. The type can be:

  • a built-in function: for example, the sum of the variables’ values, or

  • a scripted expression: an arbitrary Python expression that refers to the variables by their names.

This driver configuration outputs a single value which changes when the variables change.This value is then evaluated through the driver function curve to produce the resultto be applied to the driven property.

Notes on Scripted Expressions¶

When a driver uses a Scripted Expression, Blender can evaluate it without usingthe fully featured Python interpreter if it is simple enough.This means that drivers are fast to evaluate with simple divisions, additions and other “simple” expressions.The built-in functions are always evaluated natively.

See Simple Expressionsfor a comprehensive list of expressions that can be evaluated natively.

When the expression is not simple, it will be evaluated using Python.As a consequence, the driver will be slower and there is a security riskif the author of the Python code is unknown.This is an important thing to take into consideration for heavy scenes andwhen sharing files with other people.See also: Auto run.