Oracle 数据库应用
文章平均质量分 76
落叶尘枫
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Oracle PL/SQL 游标批量更新数据
DECLARE v_SN a.serial_number%type; v_temp_sn a.serial_number%type; v_date_time a.IN_STATION_TIME%type; v_line_name a.line_name%type; v_machine_code a.machine_code%type; v_product_no a.product_no%type; v_feeder_...原创 2021-04-20 13:57:02 · 477 阅读 · 0 评论 -
MyBatis 利用foreach处理数组参数传入
1. 使用IN实现多条件查询,传入的参数是String数组,如 issuePriority = ["ABC","BCD","EFG"]2. 在MyBatis xml文件中,使用foreach,其中,需要使用$ 而不是#, {item}需要用单引号括起来,如'${item}'<if test="issuePriority != null and issuePriority.length > 0 "> and ISSUE_PRIORITY in <foreach coll..原创 2020-09-24 10:16:16 · 2250 阅读 · 0 评论 -
C#连接Oracle数据库调用带输入输出结果的存储过程
using System;using WebApplication3.Entities.xxx;using System.Data.OracleClient;using WebApplication3.Untils;using System.Data;using System.Text;namespace WebApplication3.Services.xxxx{public c...原创 2020-03-28 10:57:03 · 765 阅读 · 1 评论 -
C#利用Httphandler类接收HttpPost请求解析JSON类型数据
C#利用Httphandler类接收Http Post请求解析Rest JSON 类型数据一.定义JSON数据 对象类1. 根据Http Post请求传入的Json 数据格式,定义出对应的对象类。 比如,接收请求的json 数据如下: { "mvReelInfo": { "_PLANT_CODE":"KS4", "_LINE_NAME":"4SMTX", ...原创 2020-03-28 10:23:36 · 5538 阅读 · 0 评论
分享