Time of Update: 2016-11-22
標籤:reads https 5.0 串連數 manager sys 不同 code ons 一次偶然的機會,show processlist 的時候,發現有個 Client 一直在執行
Time of Update: 2016-11-17
標籤:table 防sql注入 targe glob where 預設 產生 地方 無法 假設我們的使用者表中存在一行.使用者名稱欄位為username.值為aaa.密碼欄位為pwd.值為pwd
Time of Update: 2016-11-15
標籤:ssl dev set esc oracle 損壞 innodb 升級 file 昨天一早,開發人員反饋說一個測試環境報Tablespace is missing&nb
Time of Update: 2016-11-13
標籤:串連 lock ted fatal har eve apach create 使用者名稱 1.問題: 測試php7.0 連結mysql資料庫的時候發生錯誤:Fatal
Time of Update: 2016-11-08
標籤:語句 from size select date etc rom span amp <select id="getCustomerTJByUser"
Time of Update: 2016-11-04
標籤:use 修改 quit sql語句 type 錯誤 config for access 來自:
Time of Update: 2016-11-01
標籤:例子 查詢 表之間 url 串連 主鍵 http image 清除 為什麼鏈表?--部落格園老牛大講堂 因為表與表之間有關係,而且查詢時需要兩張表的某些資料。鏈表的前提是:表與表之間必須
Time of Update: 2016-10-30
標籤:c開發資料庫mysql1、C與Mysql
Time of Update: 2016-10-25
標籤:欄位 int 查詢 strong log 篩選 style 索引 條件 mysql force index() 強制索引的使用 之前跑了一個SQL,由於其中一個表的資料量比較大,
Time of Update: 2016-10-20
標籤:mysql JDBC URL格式如下:jdbc:mysql://[host:port],[host:port].../[database][?參數名1][=參數值1][&參數名2][=參數值2]...MySQL在高版本需要指明是否進行SSL串連 在url後面加上 useSSL=true 不然寫程式會有warning 常用的幾個較為重要的參數: 參數名稱
Time of Update: 2016-10-20
標籤:有欄位,a,b:a存的是:2016-10-10b存的是:10:15:30 mysql將欄位合并:concat(a, ‘ - ‘, b) 或者 concat(a, ‘ ‘, b)字元時間轉時間戳記unix_timestamp( concat(a, ‘ ‘, b) ) 別名欄位作為where條件:在MySQL中有個特殊的規定,即不允許使用列別名作為查詢條件。比如有下面一個表:select
Time of Update: 2016-10-15
標籤:一、設定mysql資料庫的參數thinkphp\Application\Home\Conf\config.php<?phpreturn array( //‘配置項‘=>‘配置值‘ ‘DB_TYPE‘ => ‘mysql‘, // 資料庫類型 ‘DB_HOST‘ => ‘localhost‘, // 伺服器位址 ‘DB_NAME‘
Time of Update: 2016-10-18
標籤:最近發布的一個項目總是無緣無故的斷線,在IIS機器上直接瀏覽也不會出現黃頁面,就是一直載入,最後斷線。重啟IIS後恢複正常。 經過幾次後,查看了IIS日誌和WINDOWS日誌,在WINDOWS日誌中發現錯誤資訊如下: <Data>error connecting: Timeout expired. The timeout period elapsed prior to&
Time of Update: 2016-10-15
標籤:# coding: utf-8## Python MySQL ORM QuickORM hacking# 說明:# 以前僅僅是知道有ORM的存在,但是對ORM這個東西內部工作原理不是很清楚,# 這次正好需要用到,於是解讀一個相對來說很簡單的Python2 ORM的例子。## 參考源碼:# A simple ORM provides elegant API for Python-MySQL operation# https://
Time of Update: 2016-10-08
標籤:今天由於更換伺服器,重新再本地備份了資料庫,試運行程式報錯,如下:MySQL錯誤:The user specified as a definer ([email protected]) does not
Time of Update: 2016-10-04
標籤:mysql 讀寫分離結構圖如下:650) this.width=650;" src="http://s3.51cto.com/wyfs02/M01/88/5C/wKiom1fyDEeQulXRAAA8LOGwCDk547.png" title="123.png" alt="wKiom1fyDEeQulXRAAA8LOGwCDk547.png" />思路:1 讓mysql-proxy服務監聽3306連接埠2 在後端的資料庫伺服器1.1與1.2上做使用者授權3 為保證使用者能夠看到寫入的資料,
Time of Update: 2016-09-27
標籤:Linux啟動/停止/重啟Mysql資料庫的方法1、查看mysql版本方法一:status;方法二:select version();2、Mysql啟動、停止、重啟常用命令a、啟動方式1、使用 service 啟動:[[email protected] /]# service mysqld start (5.0版本是mysqld)[[email protected] etc]# service mysql start (5.5.7版本是mysql) 2、使用
Time of Update: 2016-09-26
標籤:php入門 web開發1.串連MySQL資料庫<?php$mysqli = new mysqli("localhost", "root", "123456", "mydb");if ($mysqli->connect_errno) { echo "Failed to connect to MySQL:&
Time of Update: 2016-09-23
標籤:問題產生線上一直有個曆史遺留問題,最近DBA提了出來,所以跟了下代碼,作了下簡單分析,問題描述如下:在master-slave的環境下,對master上的某個表中的資料插入,會導致master-slave資料不一致的情況,通過反覆實驗,確定出現該情況的條件如下:master上設定了character_set_server=gbk應用中採用了prepared
Time of Update: 2016-09-21
標籤:今天用到了MySql裡的isnull才發現他和MSSQL裡的還是有點區別,現在簡單總結一下:mysql中isnull,ifnull,nullif的用法如下:isnull(expr) 的用法:如expr 為null,那麼isnull() 的傳回值為 1,否則傳回值為 0。 mysql> select isnull(1+1);-> 0mysql> select isnull(1/0);-> 1使用= 的null 值對比通常是錯誤的。 isnull()