sushantnitk / wiresharkplugin

Automatically exported from code.google.com/p/wiresharkplugin
0 stars 0 forks source link

C# 自定义 信令流程 #15

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
SqlConnection connection = new SqlConnection(connectionString); Server server = 
new Server(new ServerConnection(connection)); // Create table in my personal 
databaseDatabase db = server.Databases["davidhayden"]; // Create new table, 
called TestTableTable newTable = new Table(db, "TestTable"); // Add "ID" 
Column, which will be PKColumn idColumn = new Column(newTable, "ID"); 
idColumn.DataType = DataType.Int; idColumn.Nullable = false; idColumn.Identity 
= true; idColumn.IdentitySeed = 1; idColumn.IdentityIncrement = 1;

Original issue reported on code.google.com by cn.wei.hp@gmail.com on 5 Apr 2011 at 2:41

GoogleCodeExporter commented 8 years ago
数组比较?

Tuple   ->   DataTable  ->  Row.Add  ???

Original comment by cn.wei.hp@gmail.com on 5 Apr 2011 at 3:11