码迷,mamicode.com
首页 >  
搜索关键字:cursor sharing    ( 3039个结果
MYSQL 游标学习及使用实例
who?(游标是什么?)游标(cursor)官方定义:是系统为用户开通的一个数据缓冲区,存放sql执行结果。每个游标区都有一个名字,用户可以通过sql语句逐一从游标中获取记录,并赋值给变量,交由主语言进一步处理;个人理解:感觉游标和指针相似,指定结果集后一行行执行; why?(为什么要学习游标)游标 ...
分类:数据库   时间:2019-12-07 12:54:30    阅读次数:138
Android课设报告 123 赵乾
基于Android的天喵购物系统设计与实现 一,选题目的及意义 随着智能手机的普及,基于Android平台的应用软件需求也越来越多。通过计算机系统的设计与开发,验证和扩展本科前三年所学相关课程的理论知识,在实践中深入理解其中的重点和难点,提高基本理论水平,巩固基础知识体系,掌握计算机系统设计与开发的 ...
分类:移动开发   时间:2019-12-06 23:26:24    阅读次数:252
2019年12月5日 学习内容总结
1/equipment(设备) 2/topology(拓扑) 3/terminal(终端) 4/star network(星形网络) 5/host computer(主机) 6/send message(传送消息) 7/time-sharing system(分时系统) 8/bus network( ...
分类:其他好文   时间:2019-12-06 09:29:07    阅读次数:128
设计模式学习08:享元模式
设计模式学习08:享元模式 参考资料 https://www.jianshu.com/p/a2aa75939766 https://www.cnblogs.com/adamjwh/p/9070107.html 简介 Use sharing to support large numbers of fi ...
分类:其他好文   时间:2019-12-06 09:27:36    阅读次数:85
css改变checkbox的背景
checkbox默认不支持修改背景颜色,利用伪类元素实现,基本原理是利用after/ before插入新的元素。然后利用新元素的背景颜色或背景图片覆盖掉原来的样式。 原始样子 要实现的样子 <input type="checkbox" /> input[type=checkbox] { cursor ...
分类:Web程序   时间:2019-12-04 13:44:05    阅读次数:331
PL/SQL实例1
declare --定义游标 cursor cemp is select to_char(hiredate,'yyyy') from emp; phiredate varchar2(4); --定义每年入职的人数 count80 number:=0; count81 number:=0; count ...
分类:数据库   时间:2019-12-03 23:34:57    阅读次数:120
sql
import pymysql con = pymysql.connect(host="127.0.0.1",user="root",passwd="root",db="test") cursor = con.cursor() sql = "insert into test2(name,gender) ...
分类:数据库   时间:2019-12-03 01:55:41    阅读次数:111
Python对MySQL进行增删查改
python连接MySQL数据库:pymysql # 测试操作 import pymysql # 打开数据库 db = pymysql.connect("localhost", "root", "test1234", "pythontest", charset='utf8' ) # 使用cursor ...
分类:数据库   时间:2019-12-02 12:03:54    阅读次数:121
step over、step into、step into my code、step out、run to cursor
红 step over 跳过子函数 黄 step into 进入子函数 蓝 step into my code 不执行源码的子函数执行自己的 黑 step out 跳出当前函数 绿 run to cursor 执行到光标处 ...
分类:其他好文   时间:2019-12-01 18:31:03    阅读次数:65
前段知识点
前端开发中79条不可忽视的知识点汇总 1.css禁用鼠标事件 .disabled { pointer-events: none; cursor: default; opacity: 0.6; } 2.get/post的理解和他们之间的区别 http 超文本传输协议(HTTP)的设计目的是保证客户机与 ...
分类:其他好文   时间:2019-12-01 13:29:25    阅读次数:233
3039条   上一页 1 ... 32 33 34 35 36 ... 304 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!