码迷,mamicode.com
首页 >  
搜索关键字:database first    ( 28120个结果
PostgreSQL 库相关的操作
建库 CREATE DATABASE: 修改数据库 ALTER DATABASE: 栗子: ...
分类:数据库   时间:2020-05-24 19:18:47    阅读次数:67
LeetCode 10. 正则表达式匹配 Regular Expression Matching
class Solution { public: bool isMatch(string s, string p) { return isMatchCore(s.c_str(), p.c_str()); } bool isMatchCore(const char* s, const char* p) ...
分类:其他好文   时间:2020-05-24 16:53:21    阅读次数:51
网盘资源备份
百度网盘:https://pan.baidu.com/s/1pK8fZQ5FVn9JCEhr4GjuYg { 提取码:pp9v 资源列表: 数据库 Oracle 12c : linuxx64_12201_database ; winx64_12201_database 11g : winx64_12 ...
分类:其他好文   时间:2020-05-24 16:22:57    阅读次数:137
git提交代码至GitHub
示例: git init xxx //初始化仓库(工作区) git add a.txt xy.sh //上传两个文件至暂存区 git commit -m "first" //上传至分支 git clone https://github.com/feiYufy123/tt //克隆网址 git rem ...
分类:其他好文   时间:2020-05-24 13:34:33    阅读次数:74
2020-05-22 习题训练二
题目:Candies 题目链接:https://vjudge.net/problem/CodeForces-1343A 思路: 其实就是把给出的式子等比数列求和整理一下,便可求出x。 解题代码: // . . // | Try First One| // ' ' // | . . // | | | ...
分类:其他好文   时间:2020-05-24 11:25:18    阅读次数:49
Create First HTTP Web Server in Node.js: Complete Tutorial
The Node.js framework is mostly used to create server based applications. The framework can easily be used to create web servers which can serve conte ...
分类:Web程序   时间:2020-05-24 00:54:25    阅读次数:90
Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
spring boot启动的时候,报了这个错误 发现很多都是让我们添加方言 例如: database-platform: org.hibernate.dialect.OracleDialect 然而我发现问题根本不是这个 我在连接数据的url处添加了时区设置就不报错了 jdbc:mysql://lo ...
分类:数据库   时间:2020-05-24 00:41:34    阅读次数:62
主席树板子
//贴个主席树板子#include<bits/stdc++.h> using namespace std; #define pb push_back #define sc(x) scanf("%lld",&x); #define int long long #define fi first #def ...
分类:其他好文   时间:2020-05-24 00:11:36    阅读次数:47
Mysql基础语法
MySQL数据库管理 查看数据库 show databases 创建数据库 如果没有修改my.ini配置文件的默认字符集,在创建数据库时,指定字符集 create database 数据库名 character set 'utf8'; 特殊字符(关键字)用反引号 例如:create database ...
分类:数据库   时间:2020-05-23 20:37:28    阅读次数:64
Git 上传自己代码到GitHub
1.先到要提交项目目录里右键选择git bash。 2.git init 初始化本地仓库 3.git add . 把本地文件添加到本地仓库暂存区,.的意思是把当前目录下所有的文件及子目录都添加管理 4.git commit -m 'first commit'。提交的内容 5.git remote a ...
分类:Web程序   时间:2020-05-23 19:57:23    阅读次数:67
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!