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")
]
)
0 comments:
Post a Comment