當查詢語句是這樣時,如果$
是中文,則查詢不到資料
`select * from admin_table where name=$`
改為以下,即在$
前加入n即可
`select * from admin_table where name=n'$'`
$(』.right_up』).scrolltop();獲取滾動條到頂部的高度
$(』.right_up』).height();獲取div頁面顯示部分的高度
$(』.right_up』)[0].scrollheight;獲取div的整體高度
如果
$(』.right_up』).scrolltop()+ $(』.right_up』).height()>= $(』.right_up』)[0].scrollheight;則說明進度條已經到底部了
var db=mysql.createpool();
注:host寫localhost,因為**是放在雲伺服器上,所以請求資料庫就相當是請求本地的資料庫
問題描述:連線不上本地的伺服器
解決辦法(修改加密規則為普通模式,預設是嚴格加密模式):
1.開啟命令列小黑屏,進入mysql的bin目錄,然後輸入mysql -u root -p,輸入密碼匯出2.然後依次輸入
alter user 『root』@『localhost』 identified by 『password』 password expire never; (修改加密規則 (必寫))
alter user 『root』@『localhost』 identified with mysql_native_password by 『
password
』; (更新使用者密碼 )flush privileges; #重新整理許可權(不輸入也可以)
注:上面的password為更改後的密碼
mysqldump -h192.168.1.1 -uroot -p123456 --databases mydb > mydb.bak;匯出注:將192.168.1.1主機上的mydb資料庫匯出到本地的mydb.bak檔案中
1.use yourdatabasename;注:上面的database.sql為要匯入的資料庫檔案2.set names utf8;
source /tmp/
database.sql
;
附上**:github鏈結
簡單聊天室
include include include include include include include include include include pthread t thread 2 void send msg void ip msg if connect sockfd,struct ...
Linux UDP簡單聊天室
伺服器端 include include include include include include include include int sockfd 0 建立結構體用來存放客戶端資訊 typedef struct node node t node t link head node t h ...
go 簡單聊天室
package main import fmt net strings time 建立使用者結構體型別 type cline struct var onlinemap map string cline 建立全域性 channel 傳遞使用者訊息 var message make chan strin...