Firebird 烂笔头(一)】的更多相关文章

下载非安装版,将文件解压缩到D:\FireBird2.5下面.然后里面有.bat文件,选择自己适合的类型安装后,在服务里面会有一个firebirdserver开头的服务,右键启动. win+R,在命令提示符里切换路径到D:\FireBird2.5\bin.然后: 1.isql -u sysdba -p masterkey 回车.---必须是admin才行,如果直接isql进去,是创建不了数据库的. 2.create table d:\jjw.fdb; 创建数据库. 3.create table…
前言 常言道,好记性不如烂笔头,更何况笔者的记性也不是太好,于是就有了这篇“烂笔头”系列之一的git命令记录.本篇主要记录了笔者在工作当中使用过的相关命令,以方便平时查看,同时也供同行们参考.当然,读者可能认为,碰到问题的时候,再百度便是,何必费这个功夫去记录呢.尽管如此,笔者仍然认为,有一套自己的班底,才更得心应手! 本文主要从初始使用git.git管理本地分支.git操作远程分支.git便捷使用等方面,对命令进行了归类.主要内容如下(持续补充ing): 一.git相比svn的优势 git是我…
好记性真是不如烂笔头啊!!!! 如下代码: List<String> list = new ArrayList<String>(); list.add("1"); list.add("2"); list.add("3"); System.out.println(list.toString()); System.out.println(StringUtils.strip(list.toString(),"[]&qu…
好记性不如烂笔头-linux学习笔记1 linux的文件系统有ext2,ext3,ext4,目前主流是ext4 linux主要用于服务器级别的操作系统,安装时需要至少2个分区 一个是交换分区,swap(类似于windows中的虚拟内存),另外一个是标准分区 一个硬件硬盘最多只能分4个区, LINUX如果忘记密码,可修改启动级别,设置为1,进入单用户模式 启动后   输入如下命令  passwd  root 根据提示进行修改 然后重启即可reboot…
好记性不如烂笔头-Mysql查找如何判断字段是否包含某个字符串 利用mysql 字符串函数 find_in_set(); SELECT * FROM users WHERE find_in_set('aa@email.com', emails)…
修复npm -g 全局安装命令失效,好的吧不得不承认,好记性不如烂笔头,我居然会忘记方法哈哈哈 Linux安装nodejs sudo apt install node sudo apt install nodejs 和 sudo apt install npm都被node替换了不用安装 node -v 查看node版本 npm -v 查看版本 npm i -g nrm 安装nrm源选择器 nrm ls 查看源 nrm use taobao 使用淘宝源 npm i -g cnpm 安装cnpm n…
public class BaseController : Controller { /// <summary> /// Called after the action method is invoked. /// </summary> /// <param name="filterContext">Information about the current request and action.</param> protected ov…
public class BaseController : Controller { /// <summary> /// Called before the action method is invoked. /// </summary> /// <param name="filterContext">Information about the current request and action.</param> protected o…
Quartz是Java平台的一个开源的作业调度框架.Quartz.net是从java版本移植到.net版本的..net项目使用Quartz来执行批处理等定时任务非常方便. (1)从nuget上可以安装Quartz.net (2)quartz配置: <configSections> <section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version…
1.添加输入框和标签 LevelScript: using UnityEngine; using System.Collections; public class LevelScript : MonoBehaviour { public int experience; public int Level { ; } } } LevelScriptEditor 注意:在 OnInspectorGUI 事件中加入以下代码会 附加上默认的 属性: DrawDefaultInspector(); sing…