To create a Table
create table risk_clos_rank(
id_num int IDENTITY(1,1) NOT NULL,
username nvarchar(100),
datetime_of_decision DATETIME
);
CREATE TABLE TheNameOfYourTable (
ID INT NOT NULL IDENTITY(1,1),To create a Table
create table risk_clos_rank(
id_num int IDENTITY(1,1) NOT NULL,
username nvarchar(100),
datetime_of_decision DATETIME
);
CREATE TABLE TheNameOfYourTable (
ID INT NOT NULL IDENTITY(1,1),| using System; | |
| using System.Text; | |
| using Eluant; | |
| class Example { | |
| static void Main() { | |
| using (var runtime = new LuaRuntime()) { | |
| using (var proxy = runtime.CreateFunctionFromDelegate(new Action<LuaTable>(PrintProxy))) { | |
| runtime.Globals["printproxy"] = proxy; | |
| } |