环境: EntityFrameWork  CodeFirst+MySql 今天在提交一个外键字段的修改时报“Parameter '@columnType' must be defined.” google了一下 解决方法在链接字符串中加入这样一句话“;Allow User Variables=True”就可以了. <add name="AccountDB" connectionString="server=localhost;user id=root;password=…
本文涉及到的mysql知识点: mysql中的if条件语句用法: IF(expr1,expr2,expr3) mysql使用变量(mysql中变量不用事前申明) mysql事务 testcase 为了测试mysql事务,写了个testcase, using Microsoft.VisualStudio.TestTools.UnitTesting; using MySql.Data.MySqlClient; using System; using System.Collections.Generi…
执行 sql 语句 MySqlException: Parameter '@maxNo' must be defined. 执行 sql 中含有自定义变量 @maxNo,抛出异常 解决方法: 连接字符串 加入 : Allow User Variables=True;…
一.情形: 在.net调用Mysql时,比如如下的一句SQL,总是无法执行,可是在其它SQL客户端窗口中是能正确执行的. drop procedure if exists AddColumnUnlessExists; create procedure AddColumnUnlessExists(IN tableName tinytext,IN fieldName tinytext,IN fieldDef text) begin IF NOT EXISTS( SELECT * FROM infor…
CSharpEntityFramework与CodeFirst实践 前言 当我们进行开发的时候,常常会用到数据库来对数据进行持久化的操作,有的时候,我们并不想要在进行代码开发的过程中,还去关注数据库的构建,表的构建等等.于是,就有了Code First模式.何为Code First模式呢?它思想就是先定义模型中的类,再通过这些类生成数据库.这种开发模式适合于全新的项目,它使得我们可以以代码为核心进行设计而不是先构造数据库.这样一来,使得我们更加关注代码的开发.在c#中,我们使用EntityFra…
如何实现数据库查询产生虚拟的一列序号的功能: ) )AS r; 该语句可以实现产生虚拟的一列数据在MySQL中运行没有问题. 但是在C#里面调用去出现了错误"Parameter '@ROW' must be defined" 具体原因也说不上来,网上查了下解决方案如下: MySqlConnectionStringBuilder connBuilder = new MySqlConnectionStringBuilder(); connBuilder.Add("Data Sou…
Contents How to read the HTML DTD 1. DTD Comments 2. Parameter Entity definitions 3. Element declarations . Content model definitions 4. Attribute declarations . DTD entities in attribute definitions . Boolean attributes How to read the HTML DTD Each…
Rest接口对应Swagger Specification路径获取办法: 根据location的值获取api   json描述文件 也许有同学会问,为什么搞的这么麻烦,api json描述文件不就是http://domain:port/v2/api-docs获取的么. 因为如果使用group,api json描述文件就不是上面的情况哦 https://github.com/springfox/springfox-demos/tree/master/boot-swagger 再小结一下swagge…
1. for Java using Spring Configuration of the CAS Client for Java via Spring IoC will depend heavily on their DelegatingFilterProxy class. For each filter that will be configured for CAS via Spring, a corresponding DelegatingFilterProxy is needed in…
oracle rac常用的命令 节点层:olsnodes 网络层: oifcfg 集群层:crsctl,ocrcheck,ocrdump,ocrconfig 应用层:srvctl,onsctl,crs_stat 一.节点层: olsnodes 用来显示集群点列表.能够混用 [root@rac1 bin]# ./olsnodes -help Usage: olsnodes [-n] [-p] [-i] [<node> | -l] [-g] [-v]         where          …