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

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

?? connectiontest.java

?? 用于JAVA數據庫連接.解壓就可用,方便得很
?? 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.lang.reflect.InvocationTargetException;import java.lang.reflect.Method;import java.net.InetAddress;import java.net.NetworkInterface;import java.sql.CallableStatement;import java.sql.Connection;import java.sql.DatabaseMetaData;import java.sql.ParameterMetaData;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.jdbc2.optional.MysqlConnectionPoolDataSource;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)				 * VALUES (_koi8r'?拷','CYR SMALL PE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL ER')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL ES')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL TE')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL U')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL EF')");				 * this.stmt.executeUpdate("INSERT INTO t1 (koi8_ru_f,comment)				 * VALUES (_koi8r'?拷','CYR SMALL HA')");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩大陆在线| 亚洲精选视频在线| 亚洲综合色婷婷| 国产在线不卡一卡二卡三卡四卡| 色狠狠色噜噜噜综合网| 久久综合色婷婷| 老司机午夜精品| 欧美视频一区二| 亚洲视频一区在线观看| 国产酒店精品激情| 欧美一区三区二区| 一区二区三区中文字幕精品精品 | 91一区二区三区在线观看| 555www色欧美视频| 亚洲线精品一区二区三区八戒| 高清视频一区二区| 国产午夜亚洲精品理论片色戒 | 亚洲女性喷水在线观看一区| 国产主播一区二区三区| 欧美一级一区二区| 亚洲成人免费影院| 色老综合老女人久久久| 亚洲另类色综合网站| fc2成人免费人成在线观看播放 | 亚洲无人区一区| 97精品久久久午夜一区二区三区| 国产色婷婷亚洲99精品小说| 国产一区二区影院| 久久久国产午夜精品| 国产剧情一区二区| 欧美激情一区二区三区在线| 国产aⅴ综合色| 国产精品欧美一级免费| 99久久国产综合色|国产精品| 中文字幕免费不卡| 91色乱码一区二区三区| 亚洲综合成人在线视频| 欧美剧情片在线观看| 天天操天天综合网| 精品欧美黑人一区二区三区| 久久99精品国产91久久来源| 久久久91精品国产一区二区精品 | 国产夜色精品一区二区av| 国产成人精品一区二区三区四区| 国产拍揄自揄精品视频麻豆| 91在线视频在线| 亚洲成人免费在线观看| 欧美成人一区二区三区| 国产成人午夜精品5599| 1000精品久久久久久久久| 欧美性视频一区二区三区| 日韩精品视频网| 久久午夜色播影院免费高清| 成人性生交大片免费看中文网站| 综合精品久久久| 欧美日韩成人在线| 国产乱码精品一区二区三区忘忧草 | 国产精品久久久久一区二区三区共| www.日韩大片| 午夜精品一区二区三区三上悠亚| 欧美一区二区三区男人的天堂| 激情五月激情综合网| 亚洲日穴在线视频| 欧美一区二区免费观在线| 国产成人在线观看免费网站| 亚洲图片一区二区| 久久久久久97三级| 欧美日韩精品欧美日韩精品| 国产真实乱对白精彩久久| 亚洲精品国产高清久久伦理二区| 日韩久久精品一区| 91小视频免费看| 久久99精品久久久久久动态图 | 国产精品麻豆视频| 91精品国产品国语在线不卡| 91在线免费看| 国产精品综合一区二区三区| 亚洲国产精品嫩草影院| 国产嫩草影院久久久久| 51精品秘密在线观看| 91亚洲大成网污www| 久久97超碰色| 日本麻豆一区二区三区视频| 一区二区三区精品久久久| 久久五月婷婷丁香社区| 欧美视频一区二区三区在线观看| 成人污污视频在线观看| 九九视频精品免费| 日韩国产欧美三级| 亚洲五码中文字幕| 亚洲精品国产精品乱码不99| 国产精品人成在线观看免费| 26uuu国产电影一区二区| 91精品国产综合久久久久久| 91国偷自产一区二区三区成为亚洲经典| 国产乱码精品一区二区三区忘忧草| 天涯成人国产亚洲精品一区av| 中文字幕一区二区三区精华液 | 午夜精品福利久久久| 亚洲色图第一区| 国产精品久久毛片a| 国产亚洲一二三区| 久久午夜羞羞影院免费观看| 精品国产髙清在线看国产毛片| 欧美视频精品在线观看| 欧美少妇性性性| 欧美日韩成人综合| 欧美三级中文字幕在线观看| 在线亚洲免费视频| 欧洲人成人精品| 色www精品视频在线观看| 日本福利一区二区| 欧美性videosxxxxx| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 欧美影院精品一区| 欧美喷潮久久久xxxxx| 欧美日韩中文国产| 欧美人xxxx| 精品国产一区二区三区忘忧草| 26uuuu精品一区二区| 久久蜜臀精品av| 欧美国产日韩亚洲一区| 亚洲欧洲国产专区| 亚洲国产精品久久久久秋霞影院| 亚洲高清在线精品| 久久精品国产精品亚洲精品| 国产精品亚洲午夜一区二区三区| 国产电影一区在线| av影院午夜一区| 欧美三级在线播放| 精品国偷自产国产一区| 国产欧美日韩在线看| 国产精品久久久久aaaa| 亚洲伦理在线精品| 另类综合日韩欧美亚洲| 国产成人精品免费看| 91福利在线播放| 日韩精品一区二区三区中文不卡| 国产欧美日韩在线看| 亚洲一区二区黄色| 韩国欧美一区二区| 91国偷自产一区二区开放时间 | 久久成人精品无人区| 成人国产在线观看| 欧美一区二区三区色| 国产亚洲欧美日韩日本| 亚洲精品国产成人久久av盗摄| 日韩av电影一区| 成人免费av资源| 欧美另类高清zo欧美| 国产日韩精品一区二区三区 | 精品视频全国免费看| 久久久影院官网| 亚洲成人一区二区| 成人在线综合网| 欧美一级精品在线| 国产精品毛片a∨一区二区三区| 视频一区视频二区中文| 91在线无精精品入口| 精品国产精品网麻豆系列| 亚洲一区二区三区四区不卡| 国产成人在线免费| 日韩一级精品视频在线观看| 亚洲乱码国产乱码精品精可以看| 国产在线观看一区二区| 欧美日本视频在线| 亚洲人成影院在线观看| 激情久久久久久久久久久久久久久久| 91丨porny丨最新| 精品电影一区二区三区| 青青草91视频| 欧美日韩一区国产| 一区二区久久久久久| 成人动漫精品一区二区| 久久伊人蜜桃av一区二区| 日韩精品免费视频人成| 欧美午夜精品理论片a级按摩| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 美女免费视频一区二区| 91欧美一区二区| 久久久不卡影院| 国产最新精品精品你懂的| 欧美一区国产二区| 日韩精品电影一区亚洲| 欧美日韩高清一区| 亚洲尤物视频在线| 在线视频观看一区| 一区二区三区精品在线观看| 91蝌蚪porny九色| 亚洲国产精华液网站w| 国产一区二区看久久| 久久综合一区二区| 国产一区二区三区久久悠悠色av| 精品久久久久久久久久久久久久久久久 | 久久成人久久爱| 精品国产伦一区二区三区观看方式 | ㊣最新国产の精品bt伙计久久| 岛国精品在线观看| 国产精品久久三区| 色综合咪咪久久|