上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: 在游标循环中定义变量,与外面定义变量有何不同,如下代码所示: CREATE TABLE #temp (NAME VARCHAR(50)); INSERT INTO #temp VALUES ('1'); INSERT INTO #temp VALUES ('2'); DECLARE @i INT = 阅读全文
posted @ 2023-12-22 18:08 Shapley 阅读(10) 评论(0) 推荐(0) 编辑
摘要: HSSFWorkbook workbook = new HSSFWorkbook(); MemoryStream ms = new MemoryStream(); ISheet sheet = workbook.CreateSheet(); IRow headerRow = sheet.Create 阅读全文
posted @ 2023-11-02 12:58 Shapley 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 存储过程: ALTER PROCEDURE [dbo].[usp_test] @test int output AS BEGIN select @test =12; select 11; END 对应关系: 1.参数out,output均可以,都对应Dapper: parameters.Add("@ 阅读全文
posted @ 2023-08-31 15:10 Shapley 阅读(69) 评论(0) 推荐(0) 编辑
摘要: CREATE PROC dbo.proc1 AS SET XACT_ABORT ON; BEGIN TRY BEGIN TRAN --body; COMMIT END TRY BEGIN CATCH DECLARE @ErrorNumber int ,@ErrorSeverity int ,@Err 阅读全文
posted @ 2023-08-18 13:21 Shapley 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 二、将本地项目上传到自己的Git仓库中1. 快速步骤分解打开我们的项目,此时项目中是没有 .git 文件的在你的项目文件夹里面【鼠标右击】弹出菜单在【鼠标右击】弹出的菜单中,点击【Git Bash Here】在命令窗口中输入:git init在 Gitee 中 我们刚刚新建的仓库里,去复制仓库的地址 阅读全文
posted @ 2023-07-19 17:54 Shapley 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 简单示例: obj.autocomplete({ source: function (request, response) { doAjax("fee/GetPrice", "{'wldm':'" + request.term + "'}", function (data) { response($ 阅读全文
posted @ 2023-03-02 18:05 Shapley 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 先上测试代码: public class Test{ public static void main(String[] args) { Integer l1 = new Integer(1); Integer l2 = new Integer(1); System.out.println(l1==l 阅读全文
posted @ 2022-11-24 08:46 Shapley 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 1.按Java理论,父类与子类的初始化顺序为: 1.初始化父类静态变量 2.初始化父类的静态代码块 3.初始化子类的静态变量 4.初始化子类的静态代码块 5.父类的非静态变量 6.父类的非静态代码块 7.父类的构造函数 8.子类的非静态变量 9.子类的非静态代码块 10.子类的构造函数 验证代码: 阅读全文
posted @ 2022-11-20 13:27 Shapley 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 首先,示例来自Bruce Eckel的《On Java》: // housekeeping/ExplicitStatic.java // (c)2021 MindView LLC: see Copyright.txt // We make no guarantees that this code i 阅读全文
posted @ 2022-11-08 08:48 Shapley 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 先用javac编译,带参数-d javac -d . ****.java 然后,在当前目录下(不要到****子目录),运行java即可。 java ***.***** 如: java com.FuctionDemo2 package com; import java.util.function.Fu 阅读全文
posted @ 2022-11-03 09:21 Shapley 阅读(432) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页