亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? connectiontest.java

?? mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序
?? JAVA
?? 第 1 頁 / 共 4 頁
字號:
/* Copyright (C) 2002-2007 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as  published by the Free Software Foundation. There are special exceptions to the terms and conditions of the GPL  as it is applied to this software. View the full text of the  exception in file EXCEPTIONS-CONNECTOR-J in the directory of this  software distribution. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package testsuite.simple;import testsuite.BaseTestCase;import java.io.File;import java.io.FileInputStream;import java.io.FileWriter;import java.io.PrintStream;import java.net.InetAddress;import java.net.NetworkInterface;import java.sql.Connection;import java.sql.DatabaseMetaData;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.ResultSetMetaData;import java.sql.SQLException;import java.sql.Savepoint;import java.sql.Statement;import java.util.ArrayList;import java.util.Enumeration;import java.util.Iterator;import java.util.List;import java.util.Properties;import java.util.StringTokenizer;import com.mysql.jdbc.ConnectionPropertiesTransform;import com.mysql.jdbc.Driver;import com.mysql.jdbc.NonRegisteringDriver;import com.mysql.jdbc.SQLError;import com.mysql.jdbc.StringUtils;import com.mysql.jdbc.log.StandardLogger;/** * Tests java.sql.Connection functionality ConnectionTest.java,v 1.1 2002/12/06 * 22:01:05 mmatthew Exp *  * @author Mark Matthews */public class ConnectionTest extends BaseTestCase {	/**	 * Constructor for ConnectionTest.	 * 	 * @param name	 *            the name of the test to run	 */	public ConnectionTest(String name) {		super(name);	}	/**	 * Runs all test cases in this test suite	 * 	 * @param args	 */	public static void main(String[] args) {		junit.textui.TestRunner.run(ConnectionTest.class);	}	/**	 * Tests catalog functionality	 * 	 * @throws Exception	 *             if an error occurs	 */	public void testCatalog() throws Exception {		String currentCatalog = this.conn.getCatalog();		this.conn.setCatalog(currentCatalog);		assertTrue(currentCatalog.equals(this.conn.getCatalog()));	}	/**	 * Tests a cluster connection for failover, requires a two-node cluster URL	 * specfied in com.mysql.jdbc.testsuite.ClusterUrl system proeprty.	 * 	 * @throws Exception	 *             DOCUMENT ME!	 */	public void testClusterConnection() throws Exception {		String url = System.getProperty("com.mysql.jdbc.testsuite.ClusterUrl");		if ((url != null) && (url.length() > 0)) {			Object versionNumObj = getSingleValueWithQuery("SHOW VARIABLES LIKE 'version'");			if ((versionNumObj != null)					&& (versionNumObj.toString().indexOf("cluster") != -1)) {				Connection clusterConn = null;				Statement clusterStmt = null;				try {					clusterConn = new NonRegisteringDriver().connect(url, null);					clusterStmt = clusterConn.createStatement();					clusterStmt							.executeQuery("DROP TABLE IF EXISTS testClusterConn");					clusterStmt							.executeQuery("CREATE TABLE testClusterConn (field1 INT) TYPE=ndbcluster");					clusterStmt							.executeQuery("INSERT INTO testClusterConn VALUES (1)");					clusterConn.setAutoCommit(false);					clusterStmt.executeQuery("SELECT * FROM testClusterConn");					clusterStmt							.executeUpdate("UPDATE testClusterConn SET field1=4");					// Kill the connection					String connectionId = getSingleValueWithQuery(							"SELECT CONNECTION_ID()").toString();					System.out							.println("Please kill the MySQL server now and press return...");					System.in.read();					System.out.println("Waiting for TCP/IP timeout...");					Thread.sleep(10);					System.out.println("Attempting auto reconnect");					try {						clusterConn.setAutoCommit(true);						clusterConn.setAutoCommit(false);					} catch (SQLException sqlEx) {						System.out.println(sqlEx);					}					//					// Test that this 'new' connection is not read-only					//					clusterStmt							.executeUpdate("UPDATE testClusterConn SET field1=5");					ResultSet rs = clusterStmt							.executeQuery("SELECT * FROM testClusterConn WHERE field1=5");					assertTrue("One row should be returned", rs.next());				} finally {					if (clusterStmt != null) {						clusterStmt								.executeQuery("DROP TABLE IF EXISTS testClusterConn");						clusterStmt.close();					}					if (clusterConn != null) {						clusterConn.close();					}				}			}		}	}	/**	 * DOCUMENT ME!	 * 	 * @throws Exception	 *             DOCUMENT ME!	 */	public void testDeadlockDetection() throws Exception {		try {			this.rs = this.stmt					.executeQuery("SHOW VARIABLES LIKE 'innodb_lock_wait_timeout'");			this.rs.next();			int timeoutSecs = this.rs.getInt(2);			this.stmt.executeUpdate("DROP TABLE IF EXISTS t1");			this.stmt					.executeUpdate("CREATE TABLE t1 (id INTEGER, x INTEGER) TYPE=INNODB");			this.stmt.executeUpdate("INSERT INTO t1 VALUES(0, 0)");			this.conn.setAutoCommit(false);			this.conn.createStatement().executeQuery(					"SELECT * FROM t1 WHERE id=0 FOR UPDATE");			Properties props = new Properties();			props.setProperty("includeInnodbStatusInDeadlockExceptions", "true");						Connection deadlockConn = getConnectionWithProps(props);			deadlockConn.setAutoCommit(false);			// The following query should hang because con1 is locking the page			deadlockConn.createStatement().executeUpdate(					"UPDATE t1 SET x=2 WHERE id=0");			deadlockConn.commit();			Thread.sleep(timeoutSecs * 2 * 1000);		} catch (SQLException sqlEx) {			System.out					.println("Caught SQLException due to deadlock/lock timeout");			System.out.println("SQLState: " + sqlEx.getSQLState());			System.out.println("Vendor error: " + sqlEx.getErrorCode());			System.out.println("Message: " + sqlEx.getMessage());			//			// Check whether the driver thinks it really is deadlock...			//			assertTrue(SQLError.SQL_STATE_DEADLOCK.equals(sqlEx.getSQLState()));			assertTrue(sqlEx.getErrorCode() == 1205);			// Make sure INNODB Status is getting dumped into error message			assertTrue(sqlEx.getMessage().indexOf("INNODB MONITOR") != -1);		} finally {			this.conn.setAutoCommit(true);			this.stmt.executeUpdate("DROP TABLE IF EXISTS t1");		}	}	/**	 * DOCUMENT ME!	 * 	 * @throws Exception	 *             DOCUMENT ME!	 */	public void testCharsets() throws Exception {		if (versionMeetsMinimum(4, 1)) {			try {				Properties props = new Properties();				props.setProperty("useUnicode", "true");				props.setProperty("characterEncoding", "UTF-8");				Connection utfConn = getConnectionWithProps(props);				this.stmt = utfConn.createStatement();				this.stmt.executeUpdate("DROP TABLE IF EXISTS t1");				// this.stmt.executeUpdate("SET CHARACTER SET latin1");				this.stmt.executeUpdate("CREATE TABLE t1 ("						+ "comment CHAR(32) ASCII NOT NULL,"						+ "koi8_ru_f CHAR(32) CHARACTER SET koi8r NOT NULL"						+ ") CHARSET=latin5");				this.stmt						.executeUpdate("ALTER TABLE t1 CHANGE comment comment CHAR(32) CHARACTER SET latin2 NOT NULL");				this.stmt						.executeUpdate("ALTER TABLE t1 ADD latin5_f CHAR(32) NOT NULL");				this.stmt.executeUpdate("ALTER TABLE t1 CHARSET=latin2");				this.stmt						.executeUpdate("ALTER TABLE t1 ADD latin2_f CHAR(32) NOT NULL");				this.stmt						.executeUpdate("ALTER TABLE t1 DROP latin2_f, DROP latin5_f");				this.stmt						.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment) VALUES ('a','LAT SMALL A')");				/*				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('b','LAT SMALL B')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('c','LAT SMALL C')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('d','LAT SMALL D')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('e','LAT SMALL E')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('f','LAT SMALL F')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('g','LAT SMALL G')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('h','LAT SMALL H')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('i','LAT SMALL I')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('j','LAT SMALL J')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('k','LAT SMALL K')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('l','LAT SMALL L')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('m','LAT SMALL M')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('n','LAT SMALL N')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('o','LAT SMALL O')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('p','LAT SMALL P')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('q','LAT SMALL Q')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('r','LAT SMALL R')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('s','LAT SMALL S')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('t','LAT SMALL T')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('u','LAT SMALL U')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('v','LAT SMALL V')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('w','LAT SMALL W')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('x','LAT SMALL X')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('y','LAT SMALL Y')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('z','LAT SMALL Z')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('A','LAT CAPIT A')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('B','LAT CAPIT B')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('C','LAT CAPIT C')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('D','LAT CAPIT D')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('E','LAT CAPIT E')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('F','LAT CAPIT F')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('G','LAT CAPIT G')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('H','LAT CAPIT H')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('I','LAT CAPIT I')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('J','LAT CAPIT J')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('K','LAT CAPIT K')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('L','LAT CAPIT L')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('M','LAT CAPIT M')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('N','LAT CAPIT N')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('O','LAT CAPIT O')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('P','LAT CAPIT P')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('Q','LAT CAPIT Q')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('R','LAT CAPIT R')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('S','LAT CAPIT S')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('T','LAT CAPIT T')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('U','LAT CAPIT U')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('V','LAT CAPIT V')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('W','LAT CAPIT W')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('X','LAT CAPIT X')"); this.stmt.executeUpdate("INSERT				 * INTO t1 (koi8_ru_f,comment) VALUES ('Y','LAT CAPIT Y')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES ('Z','LAT CAPIT Z')");				 */				String cyrillicSmallA = "\u0430";				this.stmt						.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment) VALUES ('"								+ cyrillicSmallA + "','CYR SMALL A')");				/*				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL BE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL VE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL GE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL DE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL IE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL IO')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL ZHE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL ZE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL I')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL KA')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL EL')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL EM')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL EN')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL O')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
26uuu国产一区二区三区| 国产亚洲制服色| 国产成a人亚洲精品| 亚洲国产日韩精品| 1000精品久久久久久久久| 精品欧美一区二区久久| 91福利在线观看| 波多野结衣91| 国产精品77777| 久久99国产精品尤物| 亚洲国产中文字幕在线视频综合| 欧美激情艳妇裸体舞| 日韩精品在线看片z| 欧美在线小视频| 色综合 综合色| 成人国产电影网| 国产原创一区二区| 麻豆国产欧美一区二区三区| 亚洲午夜电影在线| 一区二区三区 在线观看视频| 国产欧美精品一区二区色综合朱莉| 欧美一级片在线看| 日韩一区二区三区视频在线| 欧美日韩中文字幕一区二区| 色综合天天狠狠| 99精品1区2区| 99久久精品国产观看| av不卡在线播放| av影院午夜一区| 99国产欧美另类久久久精品 | 国产经典欧美精品| 久久99九九99精品| 卡一卡二国产精品 | 日韩毛片视频在线看| 国产精品美女一区二区| 国产日韩精品一区二区三区 | 亚洲bt欧美bt精品777| 亚洲国产另类精品专区| 亚洲成a天堂v人片| 日韩av二区在线播放| 日本欧美一区二区在线观看| 午夜天堂影视香蕉久久| 视频一区欧美精品| 全国精品久久少妇| 久久99精品久久久久| 国产麻豆日韩欧美久久| 国产69精品久久99不卡| 成人av电影免费观看| 色8久久人人97超碰香蕉987| 在线视频中文字幕一区二区| 欧美日韩成人综合天天影院| 欧美美女直播网站| 久久在线观看免费| 国产精品视频免费| 一区二区三区电影在线播| 亚洲高清免费观看| 九九国产精品视频| 成人午夜视频在线观看| 色综合久久88色综合天天免费| 欧美性色黄大片手机版| 日韩一区二区电影| 国产欧美日韩久久| 一区二区三区加勒比av| 麻豆成人久久精品二区三区小说| 极品少妇xxxx精品少妇偷拍| av高清不卡在线| 欧美日韩精品一区二区天天拍小说 | 欧美精品乱人伦久久久久久| 欧美一区二区三区视频免费| 久久一区二区视频| 亚洲蜜桃精久久久久久久| 青青草精品视频| 成人性生交大合| 欧美久久久久免费| 国产午夜精品一区二区三区四区| 亚洲女同女同女同女同女同69| 日韩国产成人精品| av电影在线观看完整版一区二区| 欧美精品在线观看播放| 亚洲国产高清在线| 婷婷综合另类小说色区| 国产电影一区二区三区| 欧美三级韩国三级日本一级| 久久久久久久久久看片| 亚洲国产精品久久人人爱蜜臀| 激情综合网最新| 在线观看视频一区| 欧美激情综合在线| 美女爽到高潮91| 色狠狠一区二区三区香蕉| 26uuu亚洲综合色欧美| 一区二区三区 在线观看视频| 极品尤物av久久免费看| 欧美探花视频资源| 国产精品伦理在线| 久久精品国产亚洲aⅴ| 在线看国产一区| 欧美国产国产综合| 精品在线免费视频| 欧美乱妇23p| 亚洲免费视频成人| 成人免费视频视频在线观看免费| 4438成人网| 亚洲一区中文日韩| 99久久精品情趣| 国产日韩在线不卡| 国产一区二区三区免费看| 欧美日韩的一区二区| 亚洲女人小视频在线观看| 国产91精品久久久久久久网曝门 | 日韩一区在线免费观看| 国产一区二区在线影院| 91精品国产综合久久小美女| 亚洲人成精品久久久久| 国产电影一区在线| 久久精品亚洲国产奇米99| 另类综合日韩欧美亚洲| 91精品婷婷国产综合久久性色| 一区二区三区日韩欧美| 91在线视频播放地址| 国产女人水真多18毛片18精品视频| 麻豆中文一区二区| 7777精品伊人久久久大香线蕉完整版| 一区二区三区中文字幕精品精品| 91亚洲精品久久久蜜桃网站 | 欧美变态tickling挠脚心| 免费久久99精品国产| 91精品国产91综合久久蜜臀| 舔着乳尖日韩一区| 欧美又粗又大又爽| 一区二区成人在线观看| 日本乱人伦一区| 亚洲成va人在线观看| 欧美老女人第四色| 日韩国产一二三区| 日韩精品一区二区三区老鸭窝| 裸体歌舞表演一区二区| 久久在线观看免费| 成人自拍视频在线| 亚洲人成在线观看一区二区| 91国偷自产一区二区三区观看 | 精品剧情在线观看| 国产一区二区三区在线观看精品| 久久午夜色播影院免费高清| 国产91在线|亚洲| 亚洲私人影院在线观看| 欧美色综合影院| 麻豆精品久久久| 国产亚洲综合在线| 91女厕偷拍女厕偷拍高清| 一区二区三区日韩精品| 欧美高清你懂得| 国内久久精品视频| 国产精品久久久久影院色老大| 色综合亚洲欧洲| 午夜精品123| 26uuu国产电影一区二区| 国产98色在线|日韩| 亚洲女女做受ⅹxx高潮| 91精品啪在线观看国产60岁| 激情六月婷婷综合| 亚洲免费毛片网站| 日韩一二三区不卡| 成人天堂资源www在线| 亚洲综合免费观看高清在线观看| 在线成人免费观看| 国产成人精品aa毛片| 亚洲综合图片区| 精品99999| 色综合亚洲欧洲| 久久精品国产亚洲高清剧情介绍 | 日韩av电影一区| 国产精品婷婷午夜在线观看| 欧美三区免费完整视频在线观看| 久久se这里有精品| 亚洲蜜桃精久久久久久久| 日韩欧美成人激情| 91在线视频18| 九一九一国产精品| 一区二区三区在线不卡| 欧美精品一区二区久久婷婷| 色综合久久综合网欧美综合网| 日本三级亚洲精品| 亚洲啪啪综合av一区二区三区| 日韩精品资源二区在线| 91成人免费网站| 国产精品一区二区免费不卡 | 国产色爱av资源综合区| 欧美美女黄视频| 91在线一区二区| 国产一区二区在线观看免费 | 国产一区二区三区免费播放| 夜夜嗨av一区二区三区中文字幕| 久久综合狠狠综合久久综合88| 欧美性受极品xxxx喷水| 99在线精品观看| 韩国精品一区二区| 天天操天天色综合| 曰韩精品一区二区| 国产精品国产精品国产专区不片|