本文介绍了基于ASP.NET Web的mysql数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在运行时使用C#代码创建表时出现错误,它说,
初始化字符串的格式不符合从索引22开始的规范.

i am getting an error while creating table at run time in c# code,it says,
Format of the initialization string does not conform to specification starting at index 22.

推荐答案

Process scriptProc = new Process();
scriptProc.StartInfo.FileName = @"cscript";
scriptProc.StartInfo.Arguments ="//B //Nologo c:\scripts\test.vbs";
scriptProc.Start();
scriptProc.WaitForExit();
scriptProc.Close();




这篇关于基于ASP.NET Web的mysql数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 10:00