51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Led
OleDbParameter参数的使用
运用参数可防止一些sql攻击 publicbooljudIDPW(stringCustomerName,stringCustomerPassword) {&...
代码星球
·
2020-04-14
OleDbParameter
参数
使用
OleDbDataReader快速数据读取方式
查询得到OleDbDataReader后,有三种方式支持数据读取,如下://方法一**速度中等OleDbDataReaderreader=command.ExecuteReader();while(reader.Read()){vart1=reader[0];}//方法二**速度最慢OleDbDataReaderrea...
代码星球
·
2020-04-13
OleDbDataReader
快速
数据
读取
方式
浅浅的分析LED呼吸灯的实现和PWM的关系
在本周,我们在python课上做了一个实验,用ARDUINO使小LED灯模仿出呼吸灯的效果,实验进行的很成功,但是机器当仅输出高/低电平的时候是怎么样才能做到渐亮渐暗(输出电压)的变化呢?在这里就用到了PWM(脉冲宽度调制)的技术.这篇博文里介绍的就是我对本周的实验LED呼吸灯的原理通过学习进行的浅层次的理...
代码星球
·
2020-04-12
浅浅的
分析
LED
呼吸
实现
C#中SaveFileDialog 和OpenFileDialog 的用法
1.OpenFileDialog1privatevoidbtnOpen_Click(objectsender,EventArgse)2{3OpenFileDialogofd=newOpenFileDialog();4ofd.InitialDirectory=@"C:UsersLWP1398Desktop";//设置初始...
代码星球
·
2020-04-12
SaveFileDialog
OpenFileDialog
用法
(转)C#连接OleDBConnection数据库的操作
对于不同的.net数据提供者,ADO.NET采用不同的Connection对象连接数据库。这些Connection对我们屏蔽了具体的实现细节,并提供了一种统一的实现方法。Connection类有四种:SqlConnection,OleDbConnection,OdbcConnection和OracleConnectio...
代码星球
·
2020-04-11
连接
OleDBConnection
数据库
操作
Validation failed for one or more entities. See ‘EntityValidationErrors’解决方法
摘自:http://www.cnblogs.com/douqiumiao/default.aspx?opt=msg Validationfailedforoneormoreentities.See‘EntityValidationErrors’解决方法Validationfailed&...
代码星球
·
2020-04-11
Validation
failed
for
one
or
UltralEdit 替换tips
UltralEdit的字符串替换,简直是编辑器的神来之笔!可以通过搜索--〉替换菜单调出,也可以使用Ctrl+R快捷键下面来看字符的表示吧:tab可以直接Tab键(可能不成功,因为被用作快捷方式了); 也可以使用Ctrl+V,Ctrl+i;也可以使用^t回车换行 ^r^n正则...
代码星球
·
2020-04-11
UltralEdit
替换
tips
将input或textarea设置为disabled的样式问题
input:disabled{-webkit-text-fill-color:#333;//是用来做填充色使用的-webkit-opacity:1;color:#333;}textarea:diabled同样适用看到有人用这个实现了这个效果 .cont1{font-size:40px;-webkit-text...
代码星球
·
2020-04-11
input
textarea
设置
disabled
样式
PostGIS中dbf file (.dbf) can not be opened.shapefile import failed
postgis数据库文件shapefile导入dbffile(.dbf)cannotbeopened.shapefileimportfailed.Destination:public.train_polyline SourceFile:C:DocumentsandSettingsAdministrator桌面...
代码星球
·
2020-04-10
PostGIS
dbf
file
.dbf
can
maven打包报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.5:test
mvncompile 没有问题,mvnpackage的时候报如下错误:Failedtoexecutegoalorg.apache.maven.plugins:maven-surefire-plugin:2.5:test 解决方法: 打包跳过测试有两种方法一是命令行,...
代码星球
·
2020-04-10
maven
打包
报错
Failed
to
Error: Chromium revision is not downloaded. Failed to download Chromium
在使用prerender-spa-plugin做前端预渲染的时候,安装puppeteer的时候因为下载Chromium失败报错,有如下解决方法:1.使用Chromium国内源npmconfigsetpuppeteer_download_host=https://npm.taobao.org/mirrorsnpmipup...
代码星球
·
2020-04-10
Chromium
Error
revision
is
not
Failed at the node-sass@4.13.1 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
看的第一遍,找不到sass,查看node-sass文件,里面没有文件解决办法下载sass之前,要先修改源先把node-modules删除掉执行以下命令npmconfigsetsass_binary_site=https://npm.taobao.org/mirrors/node-sass再npminstall ...
代码星球
·
2020-04-10
is
Failed
at
the
node-sass@4.13.1
解决Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile
原因:由于项目所需jdk版本和你当前使用的jdk版本不一致导致的,因为我项目的pom.xml中定义了java版本为1.8,但是我实际idea中run这个项目却是1.7解决方案:更换当前jdk版本为项目所需jdk版本即可...
代码星球
·
2020-04-09
解决
Failed
to
execute
goal
解决Vue编译和打包时频繁内存溢出情况CALL_AND_RETRY_LAST Allocation failed
解决Vue编译和打包时频繁内存溢出情况CALL_AND_RETRY_LASTAllocationfailed-JavaScriptheapoutofmemory如上图所示:频繁出现此种情况,项目太大,导致内存溢出,排除代码问题外,可参照以下方式解决第一步: 全局安装 increase-m...
代码星球
·
2020-04-08
解决
Vue
编译
打包
频繁
关于时间方法(date和simpledateformat)的实验
java.text.SimpleDateFormat的用法利用SimpleDateFormat将String转换为格式化的日期参考这两篇文章得到了一些想法:我们的时间的输入是string格式的,要想计算什么之类的,就必须转换成时间(Date)格式,这样就能对时间进行计算比较之类的操作根据上面的文章修改了程序(项目For...
代码星球
·
2020-04-08
关于
时间
方法
date
simpledateformat
首页
上一页
...
120
121
122
123
124
...
下一页
尾页
按字母分类:
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
其他