E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
SqlHelper
JDBC的简单封装,实现简单数据库操作工具类
SQLHelper
.
互联网时代,竞争越演越烈,说到底最值钱的或者说最具潜在价值应该就是信息了。那么作为一个Java程序员,在对数据操作原理和数据库的功力上将会是衡量一个Java程序员优劣的标准。那么,不闲扯了。在这片文章就简单的谈谈Java数据库连接(JavaDatabaseConnectivity)即:JDBC。当然我不是要说些什么Java的Interface,我只是想说对于一个常常在使用java.sql.*;中接
觉远_
·
2020-07-10 22:22
SQLHelper
的基本使用
首先是下载
SQLHelper
,修改
SQLHelper
的连接配置信息,privatestaticstringGetConnection(){stringstrConnection="";try{strConnection
xunbaogang
·
2020-07-09 02:45
C#编程
SQLHELPER
帮助类
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespace数据库的读取{usingSystem.Data;usingSystem.Data.SqlClient;classSQLHelper{staticstringsqlconn
xincppba8
·
2020-07-09 02:04
java SpringBoot 直连SQL(
SqlHelper
)
javaSpringBoot直连SQL,封装
SqlHelper
,支持各种复杂SQL查询,执行存储过程等1、pom引入mysql-connector-javamysqlmysql-connector-java5.1.39runtime2
黑白独行
·
2020-07-08 19:56
java
springboot
sqlhelper
sql
MySQL 使用连接池封装pymysql
备注:1,记得先修改连接的数据库哦,(用navicat更方便一点);2,分开两个py文件写入,运行
sqlhelper
.py文件一、在utils.py中写importpymysqlfromDBUtils.PooledDBimportPooledDBPOOL
weixin_34235135
·
2020-07-08 17:11
SQLHelper
帮助类_下(支持多数据库的封装)
在上篇关于
SQLHelper
类中,主要针对SQLServer数据库进行的。在使用别的数据库,就要修改部分代码!所以今天就写一个支持多数据库的封装!主要用到枚举,读取config文件!接口的简单用法。
weixin_30922589
·
2020-07-08 15:54
万能的
SQLHelper
帮助类
//////数据库帮助类///publicclassSQLHelper{privatestaticstringconnStr="server=.;database=***;uid=**;pwd=***";//定义对象privatestaticSqlConnectionconn=null;privatestaticSqlCommandcmd=null;privatestaticSqlDataAdap
weixin_30784501
·
2020-07-08 14:19
SqlHelper
帮助类
数据库连接字符串//DataSource=.;InitialCatalog=Test1;UserId=sa;Password=123456;publicstaticclassSqlHelper{publicstaticreadonlystringconnstr=ConfigurationManager.ConnectionStrings["connstr"].ConnectionString;pu
weixin_30518397
·
2020-07-08 13:23
sqlHelper
帮助类
usingSystem;usingSystem.Collections.Generic;usingSystem.Configuration;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceUpdateUserId_Co
weixin_30414245
·
2020-07-08 13:32
C#下拉框ComboBox动态绑定数据库源
思路是:1数据库访问辅助类
SQLhelper
;用途:把从数据库表中查询到字段加载到datatable里面备用;2一个combox辅助类SetComboData;用途:把datatable里的各个row加载到
一木一百
·
2020-07-08 11:01
C#
WinForm
使用
sqlhelper
关于读取多个数据并转换成Json
自己观看加以改造有原文链接一、ExecuteNonQuery方法:执行非查询SQL操作,包括增insert、删delete、改update;ExecuteNonQuery()方法执行SQL语句并且不返回数据。publicstaticintExecuteNonQuery(stringstrSql,SqlParameter[]parameter){SqlConnectionsqlConn=newSql
爱吃肉的狐狸
·
2020-07-07 22:02
sqlhelper
管理开发系统五:winform连接数据库查询 使用DataGridView展示查询结果
privatevoidbtnQuery_Click(objectsender,EventArgse){stringsql="select*fromSeQu";SqlCeDataReaderobjReader=
SQLHelper
.GetReader
唯一不二
·
2020-07-07 16:40
数据库
Sqlhelper
1.usingSystem;2.usingSystem.Collections.Generic;3.usingSystem.Text;4.usingSystem.Collections;5.usingSystem.Data;6.usingSystem.Data.SqlClient;7.usingSystem.Configuration;8.namespaceHelloWinForm.DBUtili
lairiwei
·
2020-07-07 12:15
技术备忘记录
SQLHelper
帮助类
这几天搞了个简单的三层,数据库操作的帮助类实现usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Configuration;usingSystem.Data;//DataSet/DataTable/DataRow/DataColusingSystem.Data.SqlC
diandi7050
·
2020-07-07 06:09
C#/.NET 条件合并两个DataTable
//先得到两个DataTableDataTableDataTable1=
SqlHelper
.GetDataTable("selectconvert(char(5),id)As'id',numfromtestSum
dgsf92885
·
2020-07-07 06:00
自己封装jdbc工具类
在web开发中,数据库操作是非常频繁的,弄一个好用的工具类就显得很有必要了,如下图是工具类的结构:我是通过新建
SqlHelper
,通过有参构造得到一个数据库连接的(由数据库连接池派发),这样可以避免共享变量从而产生线程问题
bangujiao8042
·
2020-07-07 03:17
c#ComboBox的联动
StudentDALpublicclassStudentDAL{publicListSelectGradeName(){stringstr=
SqlHelper
.Constr;stringsql="select
MaKube丶X
·
2020-07-07 03:03
JavaWeb项目之博客系统(三)
1.整合一下数据库的连接操作根据以前做新闻发布系统的经验,有关于数据库连接等等处理的内容最好是写一个类Dbhelper或者叫
SQLHelper
,通过这个类中的各种静态的方法可以很方便的连接数据库,而不用在每次需要的时候自己重复写相同的操作
aichengsu8257
·
2020-07-07 02:34
编写自己的高效分页
SqlHelper
这里主要介绍一下使用DataReader读取数据,包括分页读取。DataReader只读向前,DataAdapter的Fill方法是一次性把查询到的所有数据取出来填充到DataTable或DataSet,下面的方法是使用DataReader只把当前页所需要的数据取出来添加到DataTable,效率要比使用DataAdapter的Fill方法高得多。一、创建一个类库项目,命名为DAO,并创建一个Sq
IHandler
·
2020-07-06 22:03
数据访问
SqlHelper
帮助类
publicclassSQlhelper{privatestaticstringstrConn=ConfigurationManager.ConnectionStrings["此处填写数据库连接字符串"].ConnectionString;//////查询//////SQL语句///publicstaticDataTableQuery(stringsql){using(DataTabletable
Klein Moretti
·
2020-07-06 17:34
c#
asp.net
SqlHelper
发布——比你期望的还要多的多(例如比MyBatis-Pagehelper性能更高)
SqlHelper
发布——比Mybatis-PageHelper性能更高起源前段时间开启了一个新的项目,在选择分页插件时,发现github上很流行的一个是pagehelper,在百度上搜索了一下,使用量
antui1957
·
2020-07-06 16:25
药品进销存管理系统Winform版(附
SQLHelper
类)
写在前面这是大三数据库课程设计的成果。老师给的成绩是中。说实话,做的是不好,数据库设计的太简单了,而且还存在缺陷(比如购买药品后总量没有减少,可能是SQL语句少写了),只是简单地增删改查,稍微高级一点的SQL语句根本就不会写(比如选择前n条记录、游标等都不知道怎么用),现在看起来好LOW啊。但我还是决定把它发出来,记录我的编程之路。距今差不多一年时间了,有些东西不怎么记得了。先放上截图和代码,以后
DoraemonHC
·
2020-07-06 15:45
.Net/C#
C#三层架构通用数据库访问类SQLHerper总结
写入错误日志写入错误日志//////写入错误日志//////privatestaticvoidWriterLog(stringlog){FileStreamfs=newFileStream("
sqlhelper
.log
一位爱猫的程序员
·
2020-07-06 04:58
c#基础
SQLiteHelper-SQLite帮助类
最近做项目用到了SQLite数据库,就自己写了个SQLite帮助类,类似于
SQLHelper
。
baibi6400
·
2020-07-04 11:35
C# SQLiteHelper类似
SqlHelper
类实现存取Sqlite数据库
来自:http://outofmemory.cn/code-snippet/49/C-SQLiteHelper-leisi-
SqlHelper
-class-achieve-accesusingSystem
ArvinStudy
·
2020-07-04 04:51
SQLite
SQLhelper
帮助类
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Data;usingSystem.Data.SqlClient;namespaceUtility{publicclassSQLHelper{#region通用方法//数据连接池privateSqlConnectionco
wo13145219
·
2020-06-29 19:34
C#
SQLhelper
Android 中短信数据库的简单操作
AndroidAPK操作短信数据时,不能使用
SQLHelper
直接操作,需要使用协议,协议使用Uri转义content://sms/inbox收件箱content://sms/sent已发送content
pzhpengpeng
·
2020-06-29 16:39
For the distance calculation
stringsqlSel="selectlatitud,longitudfromziptablewherezip_cd="+zip;using(SqlDataReaderdr=
SqlHelper
.Exe
weixin_34406061
·
2020-06-28 18:40
框架设计之菜鸟漫漫江湖路系列 三:初入江湖
三:初入江湖自觉学有所成,入江湖,遇创业帮派,内部私传:
SQLHelper
+存储过程+绑定列表,杀人于无形开篇见:框架设计之菜鸟漫漫江湖路系列开篇,不知不觉这系列停了2年了多。。唉!!!
weixin_34302798
·
2020-06-28 16:04
java操作数据库的类——
SqlHelper
(简易版)
一个java操作数据库的类
SqlHelper
,本例用的是mysql数据库,其实都一样,用别的数据库时候就换一个jar包,import不同的包就行了。
weixin_34205076
·
2020-06-28 13:20
java中有jar连接数据库
SqlHelper
配置
首先把jar包拖入到WebRoot—>WEB-INF—>lib中。这样就有了ReferencedLibraries这个文件夹,里面也有了相关jar包。打开DBBrower新建,以sqlserner2005为例jdbc:sqlserver://:[;databaseName=]中改写如:(jdbc:sqlserver://10.187.202.145:1433;databaseName=news)s
weixin_34029949
·
2020-06-28 10:25
"类工厂模式"改写
SqlHelper
最近用了"类工厂模式"改写了我公司的
SqlHelper
类,改写了一大半了,拿出半成品和大家一起讨论。首先说下我们公司环境:我公司在ABC三地都有工厂,同时都有各自的DB。
weixin_33842328
·
2020-06-28 06:11
改写自
SqlHelper
的SqliteHelper
直接看代码吧Code//===============================================================================//ThisfileCreatebykkun2008-12-23//Formoreinformationpleasegoto//http://www.tstring.com.cn///=================
weixin_33835103
·
2020-06-28 06:39
步步为营 .NET三层架构解析 三、
SQLHelper
设计
数据库设计好了,我们开始设计
SQLHelper
了,是一个SQL基类.连接数据源:privateSqlConnectionmyConnection=null;privatereadonlystringRETURNVALUE
weixin_33734785
·
2020-06-28 04:07
WPF界面加载显示数据库表中内容
后台代码Window1.xaml.csprivatevoiddataGrid1_Loaded(objectsender,RoutedEventArgse){DataTabledt=
SqlHelper
.ExecuteTable
weixin_33675507
·
2020-06-28 03:14
初学
SqlHelper
- 实现增删改查
1//数据库连接字符串2publicstaticreadonlystringconstr=ConfigurationManager.ConnectionStrings["connstr"].ConnectionString;34//打开数据库5publicstaticSqlConnectionOpenConnection()6{7SqlConnectionconn=newSqlConnection
weixin_30929195
·
2020-06-28 02:18
SqlHelper
- -高悬的双刃剑(到底好用么~~)
--本人刚刚从病魔中~~逃生--差点就归西了^_^..先说说
SqlHelper
://----
SqlHelper
--主角要出场了--怎么说呢下面的这个我看还不错哈CreateCommand创建命令#regionCreateCommand
weixin_30895603
·
2020-06-28 02:38
【转】步步为营 .NET三层架构解析系列总结
://www.cnblogs.com/springyangwc/archive/2011/03/30/2000388.html这个系列我一共写了八篇,从什么是三层架构到一个简单的三层架构从数据库设计、
SQLHelper
weixin_30877227
·
2020-06-28 01:29
sqlHelper
帮助类
usingSystem;usingSystem.Collections.Generic;usingSystem.Configuration;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceUpdateUserId_Co
weixin_30600503
·
2020-06-27 22:23
SqlHelper
简单实现(通过Expression和反射)6.Providor模式(工厂+策略)可配置数据库选择...
基本思想,将MsSqlDbUtility和MySqlDbUtility设计成单例模式,通过App.config或Web.config进行默认的数据库设置,然后通过DbUtilityFactory获取DbUtility。1.接口:1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Data;4usingSystem.Linq.Expr
weixin_30553837
·
2020-06-27 21:15
抽象工厂设计模式(3)--
SqlHelper
usingSystem;usingSystem.Collections.Generic;usingSystem.Configuration;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceSQLServerServic
佳佳_Jessica
·
2020-06-27 13:45
C#相关
牛腩新闻发布系统---前期知识点梳理
前5集包括工具介绍、文档、数据库设计、界面设计这几块知识,6~8集则是关于
SQLHELPER
的讲解,这篇博客就针对这两块知识点进行总结。
暂7师师长常乃超
·
2020-06-27 05:49
java操作数据库小工具--韩顺平
SqlHelper
看韩顺平老师的视频时候非常喜欢的喜欢的一个小工具就是操作数据库的
SqlHelper
所以我就又写了一遍,加了点注释,基本上能满足平常开发使用。
活在梦里丶
·
2020-06-25 02:36
学习代码
try catch 多条语句事务处理,失败回滚
newList();stringgrade_sqlCmd="";sqllist.Add(grade_sqlCmd);using(SqlConnectionconnection=newSqlConnection(
SQLHelper
.NukeDBConnectionString
歪歪云
·
2020-06-24 18:03
数据库
如何获得数据库表中某一字段中的以逗号分开的内容?
3BLL层:unnions.cspublicstringUnions_Sel(){Listlist=null;unionsInfoinfo=null;using(SqlDataReaderreader=
SqlHelper
.ExecuteReader
莫里薇
·
2020-06-24 07:17
asp.net
抽象类的构造方法
就拿前段时间做的图书馆维修管理系统中
SqlHelper
说吧代码如下://////数据访问抽象类///pu
lishuangzhe7047
·
2020-06-24 06:10
编程语言
.NET三层架构解析之Model四种设计方式
Net三层架构解析系列文章:步步为营.NET三层架构解析之数据库设计.NET三层架构解析之
SQLHelper
设计.NET三层架构解析之Model四种设计方式在项目开发的过程中,有时把整个项目分为三层架构
liuccn
·
2020-06-24 02:06
C#
C#自动数据库代码生成的思路
尽管有
SqlHelper
之类的辅助类,但还是有一堆参数要自己填,继续烦。最近有朋友问起自动代码生成工具的原理,那今天就说说我的思路吧。我只会MSSQLSERVER,所以就只拿它说事儿了。
Ki1381
·
2020-06-24 01:28
C#
-
数据库
项目总结——hashtable排序问题
前言:对于Hashtable在我的上篇博客中有提到,是用在了事务处理中,向
sqlhelper
传递参数,这个用的很巧妙不知道大家有没有进一步的研究,但是为什么现在需要用到Hashtable的排序呢。
iteye_6637
·
2020-06-23 19:33
DAL层中根据ID查询GridView行信息方法(常用)
(且大于查询结果大于1,小于1的话返回空)DataTabledt=
SqlHelper
.Cx(sql);if(dt.Rows.Count<1){returnnull;}3.把查询到的行放入DataRow对象
Neat帆
·
2020-06-23 11:00
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他