摘要:
没搞过linux ,仅作记录: 1 打开putty.exe 程序 ,选择 连接 2 输入linux 的用户名和密码后,按下图操作: 3 启动监听 4 命令总结: 1. sudo su - oracle //切换到oracle 账户 2. sqlplus "/as sysdba" // 3. startup; // 启动oracle 4. quit //退出sqlplus 5 ... 阅读全文
随笔档案-2014年07月
C# 程序启动其他进程程序
2014-07-14 11:52 by Spring.Guo, 8483 阅读, 收藏,
摘要:
1 启动一个独立进程,需要用到的命名空间是:using System.Diagnostics; 进程类是 Process ,进程的相关参数信息类是 ProcessStartInfo 2 等待启动的控制台app代码: using System;using System.Threading;namespace ShowConsoleApp{ class Program { static void Ma... 阅读全文
64 位系统(win7/win8) 下使用C# 程序问题
2014-07-01 14:09 by Spring.Guo, 1024 阅读, 收藏,
摘要:
1 C# 程序是控制台类,使用的组件如果是32位,建议在编译的时候,platform (X86,AnyCPU,X64)选择X86 。使用X86 模式编译,才能调用32位程序的API。 2 ASP.NET MVC 程序 platform 在发布之后,IIS7.0 以上,需要把站点的应用程序池基本设置项 “Enable 32-Bit Applications”, 设置为true,默认是false。 ... 阅读全文
浙公网安备 33010602011771号