数据库连接出错,请检查连接字串。

数据库连接出错,请检查连接字串。,第1张

找到constasp文件,打开这个文件修改一下参数:

strSQLServer="22019462119" SQL数据库服务器IP

strSQLUser="sa" SQL数据库服务器对应数据库用户名

strSQLPassword="xiaoxiao" SQL数据库服务器对应数据库的用户名的密码

strSQLDataBase="sjzmssql" SQL数据库的名称,不需要后缀

即可。

错误说明:

Microsoft OLE DB Provider for ODBC Drivers 错误 '80040e4d'

[Microsoft][ODBC SQL Server Driver][SQL Server]用户 'sa' 登录失败

是没找到数据库,或者数据可登陆用用户名或密码错误

Public conn As New OleDbOleDbConnection("Provider=MicrosoftJetOLEDB40;Data Source=" + strpath + "\" + "mydatamdb")

作个判断就行

<%

if p_activity = "Y" then

p_activity_wz = "上报出勤"

else

p_activity_wz = "未出勤"

end if

%>>

responsewrite "<td align='center' width='10%' height='27' >"& p_activity_wz &" </td>"

写入txt的类,自己写链接数据库的类吧

import javaio;

class Test

{

public static void main(String args[])throws Exception

{

InputStreamReader iin=new InputStreamReader(Systemin);

BufferedReader bin=new BufferedReader(iin);

FileWriter f=new FileWriter("C://xsgltxt");

//去掉BufferedWriter bw=new BufferedWriter(f);

PrintWriter pw=new PrintWriter(f);//增加PrintWriter流

Systemoutprintln("请输入任意字符,按回车键结束!");

while(true)

{

Systemoutprint("请输入姓名:");

Systemoutflush();

String xm=binreadLine();

if(xmlength()==0)break;

//bwwrite(xm);

//bwnewLine();

pwprintln(xm);//增加

Systemoutprint("请输入学号:");

Systemoutflush();

String xh=binreadLine();

if(xhlength()==0)break;

//bwwrite(xh);

//bwnewLine();

pwprintln(xh);//增加

Systemoutprint("请输入成绩:");

Systemoutflush();

int cj=IntegerparseInt(binreadLine());

if(cj<0)break;

//bwwrite(cj);

//bwnewLine();

pwprintln(cj);//增加和Systemoutprintln(方法一样自动转换类型)

}

pwclose(); //改变

}

}

以上就是关于数据库连接出错,请检查连接字串。全部的内容,包括:数据库连接出错,请检查连接字串。、数据库连接出错,请检查连接字串。、asp 查询功能,response.write出数据库内的值后如何转换成中文显示等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9491805.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存