bc 相关的软件列表

asp.net(c#)利用构造器链的代码
Asp.net

asp.net(c#)利用构造器链的代码

2020-04-08 标签:asp,n,et,c,利用,构造,代码,实现,如下,using,system,data,collections,web,security,ui,webcontrols

实现代码如下:using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using Syste

asp.net OleDbCommand 的用法
Asp.net

asp.net OleDbCommand 的用法

2020-04-04 标签:asp,n,et,用法,con,ew,provider,microsoft,jet,oledb,data,source,mdb,open,dc,select

OleDbConnection con=new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; data source=data.mdb"); con.Open(); OleDbCommand dc=new OleDbCommand("selec

asp.net和asp下ACCESS的参数化查询
Asp.net

asp.net和asp下ACCESS的参数化查询

2020-04-04 标签:asp,n,et,access,参数,查询,今天,我就,把我,方法,经验,大家,分享,希望,有所,启发,写的,不对,高手

今天我就把我用ACCESS参数化查询的一些方法和经验和大家分享 希望对大家有所启发,有写的不对的地方希望高手们多多指教 ASP.NET 用OleDbCommand的new OleDbParameter创建参数货查询 ASP用Command的CreateParameter 方法创建参数化查询 (SQL

C#(.NET)数据访问连接、查询、插入等操作的封装类
C#.net

C#(.NET)数据访问连接、查询、插入等操作的封装类

2020-03-25 标签:c,net,数据,访问,连接,查询,插入,操作,封装,using,system,data,sqlclient,web,security,ui,webcontrols,webparts

using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Web; using System.Web.Security; using System.We

C#自动创建数据库实现代码
C#.net

C#自动创建数据库实现代码

2020-03-25 标签:c,自动,创建,数据库,实现,代码,using,system,data,collections,web,security,ui,webcontrols,webparts,public,partial,class

using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;usin

asp.net core 发布时TransformWebConfig任务意外失败
Asp.net

asp.net core 发布时TransformWebConfig任务意外失败

2020-03-16 标签:asp,net,core,发布,transformwebconfig,任务,意外,失败,今天在,发生,错误,system,exception,process,hosting,n,ot,supported

今天在发布asp.net core 2.1 时,发生错误 “TransformWebConfig”任务意外失败。AspNetCoreModule异常错误解决,System.Exception: In process hosting is not supported for AspNetCoreModule

详解SqlServer数据库中Substring函数的用法
SQLServer

详解SqlServer数据库中Substring函数的用法

2020-03-16 标签:详解,sqlserver,数据库,substring,函数,用法,功能,返回,字符,二进制,文本,图像,表达式,一部分,语法,expression,start,length,操作

功能:返回字符、二进制、文本或图像表达式的一部分语法:SUBSTRING ( expression, start, length ) 1、substring(操作的字符串,开始截取的位置,返回的字符个数)例如:从'abbccc'中返回'ccc',charindex函数用法(charindex(查找的

thinkphp调用sqlserver储存过程返回多个结果集
SQLServer

thinkphp调用sqlserver储存过程返回多个结果集

2020-03-16 标签:thinkphp,调用,sqlserver,储存,过程,返回,多个,结果,首先,安装,扩展,windows,分为,步骤,找到,对应,php,版本,pdo

首先安装扩展windows分为两个步骤找到对应自己PHP版本的pdo扩展,下载解压出来,并且在php.ini里面启用扩展,需要注意的问题是php版本以及是否为安全版本下载 ODBC Driver https://docs.microsoft.com/zh-cn/sql/connect/odbc/do

SqlServer 获取字符串中小写字母的sql语句
SQLServer

SqlServer 获取字符串中小写字母的sql语句

2020-03-16 标签:sqlserver,获取,字符串,中小,写字,母的,sql,语句,有时候,截取,特殊,想要,东西,大小写,字母,汉字,数字,等等

有时候我们会截取字符串中的一些特殊想要的东西,大小写字母、模号、汉字、数字等等,今天先介绍一个获取字符串中小写字母(也是大写字母)的方式,直接上写法:DECLARE @s VARCHAR(MAX)= 'AbcdEf奥奥' --待截取字符串 DECLARE @temp VARCHAR(MAX)=''-