#HELPER

ORA-09776: pws_look_up: access error on (Oracle helper) executable

文档解释ORA-09776:pws_look_up:accesserroron(Oraclehelper)executableCause:Thepws_look_upcallcouldnotaccessthe(Oraclehelper)executable.Action:Checkthepermissionsonthe...
IT技术学习 IT技术学习·2023-07-26

ORA-29664: Unable to generate the helper class for the defined type

文档解释ORA-29664:UnabletogeneratethehelperclassforthedefinedtypeCause:ThehelperclassusedforsupportingSQLJObjectTypeisnotgenerated.Action:NoActionisrequired.。ORA-29...

自己整理了一个 Dapper的Helper助手类

<connectionStrings><addname="db"connectionString="server=.;database=db;uid=sa;pwd=123456;integratedsecurity=false;"/></connectionStrings>using...

C# Email 帮助类 EmailHelper

1.配置文件 App.config<?xmlversion="1.0"encoding="utf-8"?><configuration><appSettings><!--Smtp服务器--><addkey="SmtpHost"value="smtp.qq.com"/...
代码星球 代码星球·2021-02-23

C# ASP.NET MVC HtmlHelper用法大全

UrlHrlper下面的两个地址一样的功能下边这个防止路由规则改变比如UserInfo/Index改为UserInfo-Index,使用下面的不受影响另一种形式的超链接:<%:Html.ActionLink("超级链接的文本","Index","UserInfo",new{name="itcast"},new{I...

【sublime】解决汉字输入的办法——InputHelper;在sublime中输入汉字==》InputHelper方法

手工安装办法:/cd~/.config/sublime-text-2/Packages #如果是sublime3就改一下gitclonehttps://github.com/xgenvn/InputHelper.git确认iBus/scim能在GTK下正常工作呼叫按键:Ctrl+Shift+Z>在文字框...

MVC UrlHelper的用法

一、UrlHelper提供了四个非常常用的四个方法:(1)Action方法通过提供Controller,Action和各种参数生成一个URL,(2)Content方法是将一个虚拟的,相对的路径转换到应用程序的绝对路径,(3)Encode方法是对URL地址进行加密,与Server.Encode方法一样。(4)RouteU...
代码星球 代码星球·2021-02-19

C# MemcacheHelper封装

 usingMemcached.ClientLibrary;usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceHOPU.Commo...
代码星球 代码星球·2021-02-16

C# 基于MySQL的数据层基类(MySQLHelper)

这里介绍下比较简单的方式,引用MySql.Data.dll然后添加一个MySqlHelper类来对MySql数据库进行访问和操作。 1.将MySql.Data.dll引用到你的项目中下载地址:MySql.Data.rar添加引用后在你的数据库操作类(如MySqlHelper.cs)中添加引用声明using&n...

C#操作sql通用类 SQLHelper

usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Web;usingSystem.Web.Security;usingSystem.Collections;usingSystem.Data.SqlClient;///<summar...
代码星球 代码星球·2021-02-15

微软SQLHelper.cs类 中文版

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Configuration;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.X...
代码星球 代码星球·2021-02-14

springboot中使用mybatis的分页插件pageHelper

  首先在pom.xml中配置<!--https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter--><dependency><groupId>org...

springboot 整合 pagehelper

pom.xml<dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper-spring-boot-starter</artifactId><version>1...
代码星球 代码星球·2021-02-01

Threejs之三维坐标系AxesHelper

Threejs里通过AxesHelper类,可以创建一个可视化的三维坐标系AxesHelper(size:Number)参数说明size--轴的线的大小,默认为1 eg:varaxes=newTHREE.AxisHelper(30);scene.add(axes); 说明:  threejs中采用的...

Threejs之网格辅助线GridHelper

通过Three.js类GridHelper可以创建一个坐标网格对象GridHelper本质上是对线模型对象Line的封装,纵横交错的直线构成一个矩形网格模型对象。GridHelper(size: number,divisions: Number,colorCenterLine: Color...
首页上一页12345...下一页尾页