mysql版本过高的话就不支持这种格式?
mysql版本过高的话就不支持 insert into $tb(表) set $var(字段=字段值) 这种格式?
父类:
class mysql{
public $host; //主机
public $db; //数据库
public $user; //用户名
public $pass; //密码
public $set; //编码
function __construct($m,$a,$b,$n,$c){
//function fun($m,$a,$b,$n,$c){
$this->host=$m;
$this->user=$a;
$this->pass=$b;
$this->db=$n;
$this->set=$c;
$this->conn();
}
//链接数据库
function conn(){
mysql_connect($this->host,$this->user,$this->pass)or die($this->log_sn());
mysql_select_db($this->db)or die($this->log_sn("数据库链接错误!"));
mysql_query("setnames.'".$this->set."'");
}
//执行sql语句
function query($n){
return mysql_query($n);
}
function f($q,$f=1){
if($f){
return mysql_fetch_array($q);
}else{
return mysql_fetch_row($q);
}
}
//获取id
function id_in(){
return mysql_insert_id();
}
//建立数据库日志
function log_sn($son=""){
$son="##".date("Y-m-d H:i:s")."##".mysql_error().$son."\r\n";
$fp=fopen(date(ymd).".txt", a);
fwrite($fp,$son);
fclose($fp);
}
}
子类:
class act extends mysql{
function insert($tb,$var,$state=0){
$sql="insert into".$tb."set".$var;
if($state){
echo $sql;
}else{
mysql_query($sql);
//return $this->id_in();
}
}
页面:
include('mysql.class.php');
include('act.class.php');
$insert=new act("localhost","root","","news","gbk");
$insert->insert("news","id=null,title='臭不要脸',author='张',tid='333',pic='a.jpg',sort='2',hit='0',adtime=130229197,uptime=1302292988,del='N'");
页面执行之后,数据库没有插入成功,也不报错,但是打印出来的sql语句在数据库里是可以用的,是mysql版本问题吗?还是我的代码有问题?
------解决方案--------------------
传入参数 "news","id=null,title='臭不要脸',author='张',tid='333',pic='a.jpg',sort='2',hit='0',adtime=130229197,uptime=1302292988,del='N'"
构造 sql 串
$sql="insert into".$tb."set".$var;
得到的应该是:
insert intonewssetid=null,title= ......
都粘在一起了,能不错吗?
另外你的 id 是自增字段就不要写了
------解决方案--------------------
插入表的操作:
INSERT INTO TABLE (field) VALUES(field_value);
修改表的操作:
UPDATE TABLE SET field=new_value WHERE field=field_value;
------解决方案--------------------
"但是打印出来的sql语句在数据库里是可以用的"
打印出来的什么样?
据手册, insert ... set... 最新的5.6都支持,没有问题
所以还是得查你的程序

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

在mysql中,是否需要commit取决于存储引擎:1、若是不支持事务的存储引擎,如myisam,则不需要使用commit;2、若是支持事务的存储引擎,如innodb,则需要知道事务是否自动提交,因此需要使用commit。

“mysql-connector”是mysql官方提供的驱动器,可以用于连接使用mysql;可利用“pip install mysql-connector”命令进行安装,利用“import mysql.connector”测试是否安装成功。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools
