03 2012 档案
摘要:--创建 连接create database link 数据库链路名(dblink)connect to数据库用户名 identified by "口令"using '连接字符串';如果创建全局dblink,必须使用systm或sys用户,在database前加public。create publicdatabase link 数据库链路名(dblink)connect to数据库用户名 identified by "口令"using '连接字符串';--测试 是否正常一般情况下引用数据库链接,可以直接将其放到调用的表名或
阅读全文
摘要:System.Web.Services.Protocols.SoapException: 服务器无法处理请求。---> System.InvalidOperationException: 无法生成临时类(result=1)。\nerror CS2001: 未能找到源文件“C:\\WINDOWS\\TEMP\\zyobqxbr.0.cs()解决办法:给C:\WINDOWS\Temp文件夹加“NETWORK SERVICE”帐户读写权限这种方法我尝试了一下,可以解决问题,比赋予users的读写权限安全!具体如下:不要对everyone授权,这样不安全~查找这两个用户帐户之一:如果计算机运行
阅读全文
摘要:using System;using System.Collections.Generic;using System.Text;using System.Net;using System.IO;using System.Web.Services.Description;using System.CodeDom;using Microsoft.CSharp;using System.CodeDom.Compiler;namespace TestClient{ public static class WebServiceHelper { /// <summary> ...
阅读全文