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:
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
Post a Comment