Twining, TwyDL (IronPython DSL)

David Seruyange has been working on his IronPython database DSL Twining.
He's been using Twining to export tables to SQL and also working on the ability to generate schema objects:
database(cn).create.table("Employees",
[
col.ident("EmployeeID"),
col.string("FirstName"),
col.string("LastName"),
col.numeric("Salary")
]
)

Comments

Popular posts from this blog

Extending Abobe Flash Player and AIR with Python and Ruby

Should Python Projects Support IronPython and Jython?

Further Adventures of the Debugger