上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 段是在数据库中占有磁盘空间的对象 表是数据库中最重要的段 索引 索引表 临时段 诸如order by 、group by 和distinct 还原段 undo segment 大对象段 LOB segment 用来存储较大的正文文档、图像或音像信息等 自举段 在数据库创建时由sql.bsp脚本建立的 阅读全文
posted @ 2020-04-01 22:06 八风不动 阅读(123) 评论(0) 推荐(0) 编辑
摘要: --临时表空间select * from dba_tablespaces where contents like 'TEMP%';select * from v$tempfile f, v$tablespace t where f.TS# = t.TS# ;create TEMPORARY tabl 阅读全文
posted @ 2020-04-01 20:45 八风不动 阅读(143) 评论(0) 推荐(0) 编辑
摘要: CryptoStream..::.FlushFinalBlock 方法 用缓冲区的当前状态更新基础数据源或储存库,随后清除缓冲区。 Convert..::.ToBase64String 方法 将 8 位无符号整数数组的值转换为它的等效 String 表示形式(使用 Base 64 数字编码)。 代码 阅读全文
posted @ 2020-03-28 23:39 八风不动 阅读(490) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8" /> <script> var arr1 = new Array(12, 22, 23, 454, 34); var arr2 = new Array(23, 23 阅读全文
posted @ 2020-03-19 16:08 八风不动 阅读(143) 评论(0) 推荐(0) 编辑
摘要: onreadystatechange 事件当请求被发送到服务器时,我们需要执行一些基于响应的任务。每当 readyState 改变时,就会触发 onreadystatechange 事件。readyState 属性存有 XMLHttpRequest 的状态信息。下面是 XMLHttpRequest 阅读全文
posted @ 2020-03-18 15:53 八风不动 阅读(74) 评论(0) 推荐(0) 编辑
摘要: public class SqlHelper { /// <summary> /// 获取连接字符串 /// </summary> public static string ConString = ConfigurationManager.ConnectionStrings["HotelManage 阅读全文
posted @ 2020-03-11 21:58 八风不动 阅读(190) 评论(0) 推荐(0) 编辑
摘要: //引入命名空间 using System.Data.SqlClient; /// <summary> /// SqlHelper 的摘要说明 /// </summary> public class SqlHelper { private static readonly string sqlcon 阅读全文
posted @ 2020-03-11 21:56 八风不动 阅读(150) 评论(0) 推荐(0) 编辑
摘要: web.config中的连接字符串 关于 providerName 特性 转载于:https://www.cnblogs.com/2515593227blog/p/8735562.html <configuration> <appSettings> <add key="connstr1" value 阅读全文
posted @ 2020-03-11 21:52 八风不动 阅读(199) 评论(0) 推荐(0) 编辑
摘要: SQL中的cast()函数转载于:https://blog.csdn.net/qq_21101587/article/details/78642423CAST函数用于将某种数据类型的表达式显式转换为另一种数据类型。CAST()函数的参数是一个表达式,它包括用AS关键字分隔的源值和目标数据类型。语法: 阅读全文
posted @ 2020-03-11 17:55 八风不动 阅读(526) 评论(0) 推荐(0) 编辑
摘要: SQL Server 创建触发器(trigger) 转载自:https://www.cnblogs.com/BabyMengYuan/articles/8973448.html 触发器简介: 触发器是一种特殊的存储过程,它的执行不是由程序调用,也不是手动执行,而是由事件来触发。触发器是当对某一个表进 阅读全文
posted @ 2020-03-11 17:36 八风不动 阅读(291) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页