摘要:
11 阅读全文
摘要:
11 阅读全文
摘要:
什么是占位符? sql中的"?" 就是占位符,比如 select *from form books where id > ? insert into books set ? update books set ? where id= ? delete from books where id= ? 如何 阅读全文
摘要:
mysql模块的作用 mysql模块是一个第三方模块,专门用来操作mysql数据库看,可以执行增删改查操作 npm i mysql mysql模块的使用步骤 //1.加载mysql const mysql = require("mysql"); //2.创建mysql连接对象,配置项 const c 阅读全文
摘要:
一.创建简单的服务(通过requrest) (1)get请求 存在的问题: 1.通过以下的两种方式请求,没有指定是以哪种方式请求,在post请求图片中,即使改为get,那么post代码还是能执行 //1.导入http模块 const http = require("http"); const url 阅读全文
摘要:
简单的工具 第一个工具:phpstudy 第二个工具:Navicat for MySQL 链接地址:https://www.cnblogs.com/yinfei/p/11427259.html 如何操作:具体查找网页资料 第一步:打开phpstudy.exe 第二步:打开navicat.exe 配置 阅读全文