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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? connectiontest.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? 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)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成a人片国产精品| 丝袜国产日韩另类美女| av亚洲产国偷v产偷v自拍| 中文字幕精品一区二区三区精品| 国产风韵犹存在线视精品| 国产女人水真多18毛片18精品视频 | 国产精品一区二区男女羞羞无遮挡| 欧美成人一区二区三区片免费| 国产麻豆精品95视频| 中文字幕av资源一区| 色婷婷亚洲综合| 午夜久久福利影院| 久久久噜噜噜久久人人看| 成人免费毛片app| 一区二区三区日韩欧美精品| 欧美午夜一区二区三区免费大片| 日韩成人伦理电影在线观看| 久久新电视剧免费观看| 色天使色偷偷av一区二区| 爽好久久久欧美精品| 久久亚洲一区二区三区四区| 91丨九色丨国产丨porny| 天堂va蜜桃一区二区三区漫画版 | 狠狠色综合播放一区二区| 国产精品欧美极品| 欧洲视频一区二区| 国产精品一区二区在线观看不卡| 亚洲欧美日韩国产综合| 欧美一区二区三区在线电影| 成人91在线观看| 日本不卡中文字幕| 国产精品电影院| 日韩免费电影网站| 日本高清不卡aⅴ免费网站| 蜜臀久久99精品久久久画质超高清 | 日韩中文字幕av电影| 国产精品视频一二三| 欧美精品黑人性xxxx| av午夜精品一区二区三区| 蜜臀av性久久久久av蜜臀妖精| 国产精品传媒视频| 久久日韩精品一区二区五区| 在线视频观看一区| 成人黄色一级视频| 男人的j进女人的j一区| 亚洲夂夂婷婷色拍ww47| 国产亚洲自拍一区| 欧美一区二区成人6969| 91偷拍与自偷拍精品| 国产在线精品一区二区夜色| 亚洲高清在线视频| 亚洲欧洲精品成人久久奇米网| 欧美一区二区三区系列电影| 欧美性三三影院| 91麻豆文化传媒在线观看| 久久爱www久久做| 图片区小说区区亚洲影院| 亚洲色图色小说| 国产精品欧美一级免费| 精品人伦一区二区色婷婷| 欧美日韩电影一区| 欧美性极品少妇| 在线视频观看一区| 色成年激情久久综合| 91蝌蚪国产九色| 99久久精品国产网站| 国产成人av电影| 国产精品香蕉一区二区三区| 免费成人在线网站| 免费成人深夜小野草| 石原莉奈在线亚洲二区| 午夜精品久久久久久久久久 | 亚洲电影一级片| 亚洲午夜久久久久久久久电影院 | 亚洲一区二区三区中文字幕 | 色综合久久久久综合| 成人毛片视频在线观看| 激情小说欧美图片| 激情综合色播五月| 久久国产人妖系列| 久久9热精品视频| 狠狠色丁香久久婷婷综合_中 | 日本va欧美va精品| 日韩高清不卡一区二区三区| 日韩精品久久久久久| 日本午夜精品视频在线观看| 三级久久三级久久久| 久久av中文字幕片| 国产精品1区2区| 99久久精品国产观看| 色老综合老女人久久久| 欧美影片第一页| 日韩精品专区在线| 中文字幕av免费专区久久| 亚洲天堂福利av| 亚洲bt欧美bt精品| 麻豆精品国产传媒mv男同| 国产一区二区在线电影| 成人精品视频一区二区三区尤物| 97精品久久久午夜一区二区三区| 色www精品视频在线观看| 欧美日韩精品高清| 2020日本不卡一区二区视频| 中文字幕免费不卡在线| 一区二区日韩电影| 美女www一区二区| 岛国精品在线观看| 欧美在线观看你懂的| 日韩精品专区在线影院重磅| 国产精品网曝门| 亚洲va韩国va欧美va精品| 精品午夜一区二区三区在线观看| 国产69精品久久久久毛片| 在线免费不卡视频| 欧美精品一区二区三区久久久| 亚洲欧美日韩在线| 久久国产精品第一页| 91色综合久久久久婷婷| 日韩视频在线你懂得| 国产精品国模大尺度视频| 天使萌一区二区三区免费观看| 国产成人av自拍| 欧美日韩亚州综合| 久久精品一区四区| 日韩专区中文字幕一区二区| 成人午夜在线播放| 欧美精品tushy高清| 中文字幕一区三区| 麻豆一区二区99久久久久| 91福利在线免费观看| www国产亚洲精品久久麻豆| 亚洲综合自拍偷拍| 国产不卡视频在线播放| 91精品国产手机| 亚洲日本青草视频在线怡红院| 国产在线一区观看| 欧美精品色综合| 亚洲欧美一区二区三区孕妇| 国产精品一线二线三线精华| 欧美日韩黄色影视| 中文字幕在线不卡一区 | 国产福利一区二区三区在线视频| 欧美三级中文字幕在线观看| 中文字幕免费在线观看视频一区| 久久精品国产亚洲aⅴ| 在线亚洲+欧美+日本专区| 国产日韩欧美综合在线| 蜜桃视频在线观看一区| 欧美日韩三级在线| 亚洲美女少妇撒尿| 99在线精品免费| 中文字幕精品一区| 国产主播一区二区三区| 正在播放一区二区| 亚洲综合一区二区精品导航| av激情综合网| 专区另类欧美日韩| 99re这里只有精品6| 中文字幕色av一区二区三区| 成人午夜碰碰视频| 日本一区二区不卡视频| 国产老肥熟一区二区三区| 日韩免费电影网站| 久久aⅴ国产欧美74aaa| 精品国产一二三| 国产中文字幕精品| 久久这里都是精品| 国产乱人伦偷精品视频免下载 | 国产亚洲va综合人人澡精品| 国产在线精品国自产拍免费| 精品久久久久久久人人人人传媒 | 国产福利91精品一区二区三区| 2023国产精品| 国产激情一区二区三区| 欧美精彩视频一区二区三区| 国产精品538一区二区在线| 国产精品网站一区| 97se狠狠狠综合亚洲狠狠| 亚洲视频一二三| 欧美午夜一区二区| 日本欧美在线观看| 精品国产乱码久久久久久蜜臀| 国产精品资源网| ...av二区三区久久精品| 久久网站最新地址| 日本一区二区在线不卡| 成人小视频在线| 成人免费视频免费观看| 国产精品二区一区二区aⅴ污介绍| 91在线观看一区二区| 亚洲一二三区视频在线观看| 91精品欧美福利在线观看| 国产在线精品视频| 亚洲人妖av一区二区| 欧美亚洲综合一区| 极品少妇xxxx精品少妇偷拍| 国产精品国产三级国产aⅴ入口| 色综合天天综合网国产成人综合天| 亚洲一区在线视频| 日韩免费电影一区|