`
- 浏览:
407890 次
- 性别:
- 来自:
深圳
-
-
packagecom.mdj.dmdatabase.pool;
-
importjava.io.IOException;
-
importjava.io.PrintWriter;
-
importjava.sql.Connection;
-
importjava.sql.DatabaseMetaData;
-
importjava.sql.ResultSet;
-
importjava.sql.SQLException;
-
importjava.util.List;
-
importjava.util.Map;
-
importjava.util.Vector;
-
importjavax.xml.parsers.DocumentBuilder;
-
importjavax.xml.parsers.DocumentBuilderFactory;
-
importjavax.xml.parsers.ParserConfigurationException;
-
importorg.w3c.dom.Document;
-
importorg.w3c.dom.Element;
-
importorg.w3c.dom.NodeList;
-
importorg.xml.sax.SAXException;
-
importcom.mdj.dmdatabase.develop.DmDataSource;
-
-
-
publicabstractclassDmconnectionimplementsDmDataSource,DatabaseMetaData{
-
-
-
privatestaticfinallongserialVersionUID=1L;
-
-
-
privateDatabaseMetaDatadatabasemetaData;
-
-
-
privateResultSetresultset=null;
-
-
-
privateMapmap=null;
-
-
-
privateListlist=null;
-
-
-
Connectioncon=null;
-
-
-
Vector<Connection>pool=null;
-
-
-
Stringdriverclass=null;
-
-
-
Stringusername=null;
-
-
-
Stringpassword=null;
-
-
-
Stringurl=null;
-
-
-
Stringfilepath=null;
-
-
-
Stringlogpath=null;
-
-
-
intmaxwaittime=0;
-
-
-
intdelaytime=0;
-
-
-
intmaxconnection=0;
-
-
-
intminconnection=0;
-
-
-
intpoolsize=0;
-
-
-
privatevoidaddConnection()throwsClassNotFoundException{
- }
-
-
-
publicsynchronizedConnectiongetConnection()throwsSQLException{
-
returncon;
- }
-
-
-
publicsynchronizedConnectiongetConnection(Stringusername,
- Stringpassword){
-
returncon;
- }
-
publicsynchronizedvoidreleaseConnection(Connectioncon){
- }
-
-
-
publicvoidcloseConnectionPool()throwsSQLException{
- }
-
-
-
privatevoidscaner(){
- }
-
-
-
privatevoidconfig(Stringpath)throwsParserConfigurationException,
- IOException,SAXException{
- DocumentBuilderFactoryfactory=DocumentBuilderFactory.newInstance();
- DocumentBuilderbuilder=factory.newDocumentBuilder();
- Documentdocument=builder.parse(path);
-
NodeListnodelist=document.getElementsByTagName("dbmsdriver");
-
for(inti=0;i<nodelist.getLength();i++){
- Elementelement=(Element)nodelist.item(i);
-
driverclass=element.getElementsByTagName("driverclass").item(0)
- .getFirstChild().getNodeValue();
-
url=element.getElementsByTagName("url").item(0).getFirstChild()
- .getNodeValue();
-
username=element.getElementsByTagName("username").item(0)
- .getFirstChild().getNodeValue();
-
password=element.getElementsByTagName("password").item(0)
- .getFirstChild().getNodeValue();
- maxconnection=Integer.parseInt(element.getElementsByTagName(
-
"maxconnection").item(0).getFirstChild().getNodeValue());
- minconnection=Integer.parseInt(element.getElementsByTagName(
-
"minconnection").item(0).getFirstChild().getNodeValue());
-
logpath=element.getElementsByTagName("logpath").item(0)
- .getFirstChild().getNodeValue();
- maxwaittime=Integer.parseInt(element.getElementsByTagName(
-
"maxwait").item(0).getFirstChild().getNodeValue());
- delaytime=Integer.parseInt(element
-
.getElementsByTagName("maxwait").item(0).getFirstChild()
- .getNodeValue());
- }
- }
-
-
-
privatevoidserverlog(Stringmsg){
- }
-
-
-
publicvoidsetLoginTimeout(intseconds)throwsSQLException{
- }
-
-
-
publicabstractintgetLoginTimeout()throwsSQLException;
-
-
-
@SuppressWarnings("unused")
-
publicabstractvoidsetLogWriter(PrintWriterout)throwsSQLException;
-
-
-
publicabstractPrintWritergetLogWriter()throwsSQLException;
-
publicintgetJDBCMajorVersion()throwsSQLException{
-
-
return0;
- }
-
publicResultSetgetTables(Stringcatalog,Stringschemapattern,
-
Stringtablenamepattern,String[]types)throwsSQLException{
-
-
returnnull;
- }
-
publicListlistexecuteQuery(Stringsql,Classbeanclass)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicMapmapexecuteQuery(Stringsql)throwsSQLException{
-
-
returnnull;
- }
-
publicbooleanallProceduresAreCallable()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanallTablesAreSelectable()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleandataDefinitionCausesTransactionCommit()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleandataDefinitionIgnoredInTransactions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleandeletesAreDetected(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleandoesMaxRowSizeIncludeBlobs()throwsSQLException{
-
-
returnfalse;
- }
-
publicResultSetgetAttributes(Stringarg0,Stringarg1,Stringarg2,
-
Stringarg3)throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetBestRowIdentifier(Stringarg0,Stringarg1,
-
Stringarg2,intarg3,booleanarg4)throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetCatalogs()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetCatalogSeparator()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetCatalogTerm()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetColumnPrivileges(Stringarg0,Stringarg1,Stringarg2,
-
Stringarg3)throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetColumns(Stringarg0,Stringarg1,Stringarg2,
-
Stringarg3)throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetCrossReference(Stringarg0,Stringarg1,Stringarg2,
-
Stringarg3,Stringarg4,Stringarg5)throwsSQLException{
-
-
returnnull;
- }
-
publicintgetDatabaseMajorVersion()throwsSQLException{
-
-
return0;
- }
-
publicintgetDatabaseMinorVersion()throwsSQLException{
-
-
return0;
- }
-
publicStringgetDatabaseProductName()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetDatabaseProductVersion()throwsSQLException{
-
-
returnnull;
- }
-
publicintgetDefaultTransactionIsolation()throwsSQLException{
-
-
return0;
- }
-
publicintgetDriverMajorVersion(){
-
-
return0;
- }
-
publicintgetDriverMinorVersion(){
-
-
return0;
- }
-
publicStringgetDriverName()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetDriverVersion()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetExportedKeys(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetExtraNameCharacters()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetIdentifierQuoteString()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetImportedKeys(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetIndexInfo(Stringarg0,Stringarg1,Stringarg2,
-
booleanarg3,booleanarg4)throwsSQLException{
-
-
returnnull;
- }
-
publicintgetJDBCMinorVersion()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxBinaryLiteralLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxCatalogNameLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxCharLiteralLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxColumnNameLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxColumnsInGroupBy()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxColumnsInIndex()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxColumnsInOrderBy()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxColumnsInSelect()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxColumnsInTable()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxConnections()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxCursorNameLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxIndexLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxProcedureNameLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxRowSize()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxSchemaNameLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxStatementLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxStatements()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxTableNameLength()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxTablesInSelect()throwsSQLException{
-
-
return0;
- }
-
publicintgetMaxUserNameLength()throwsSQLException{
-
-
return0;
- }
-
publicStringgetNumericFunctions()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetPrimaryKeys(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetProcedureColumns(Stringarg0,Stringarg1,Stringarg2,
-
Stringarg3)throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetProcedures(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetProcedureTerm()throwsSQLException{
-
-
returnnull;
- }
-
publicintgetResultSetHoldability()throwsSQLException{
-
-
return0;
- }
-
publicResultSetgetSchemas()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetSchemaTerm()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetSearchStringEscape()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetSQLKeywords()throwsSQLException{
-
-
returnnull;
- }
-
publicintgetSQLStateType()throwsSQLException{
-
-
return0;
- }
-
publicStringgetStringFunctions()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetSuperTables(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetSuperTypes(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetSystemFunctions()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetTablePrivileges(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetTableTypes()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetTimeDateFunctions()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetTypeInfo()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetUDTs(Stringarg0,Stringarg1,Stringarg2,int[]arg3)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetURL()throwsSQLException{
-
-
returnnull;
- }
-
publicStringgetUserName()throwsSQLException{
-
-
returnnull;
- }
-
publicResultSetgetVersionColumns(Stringarg0,Stringarg1,Stringarg2)
-
throwsSQLException{
-
-
returnnull;
- }
-
publicbooleaninsertsAreDetected(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanisCatalogAtStart()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanisReadOnly()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanlocatorsUpdateCopy()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleannullPlusNonNullIsNull()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleannullsAreSortedAtEnd()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleannullsAreSortedAtStart()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleannullsAreSortedHigh()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleannullsAreSortedLow()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanothersDeletesAreVisible(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanothersInsertsAreVisible(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanothersUpdatesAreVisible(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanownDeletesAreVisible(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanownInsertsAreVisible(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanownUpdatesAreVisible(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanstoresLowerCaseIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanstoresLowerCaseQuotedIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanstoresMixedCaseIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanstoresMixedCaseQuotedIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanstoresUpperCaseIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanstoresUpperCaseQuotedIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsAlterTableWithAddColumn()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsAlterTableWithDropColumn()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsANSI92EntryLevelSQL()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsANSI92FullSQL()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsANSI92IntermediateSQL()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsBatchUpdates()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCatalogsInDataManipulation()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCatalogsInIndexDefinitions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCatalogsInPrivilegeDefinitions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCatalogsInProcedureCalls()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCatalogsInTableDefinitions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsColumnAliasing()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsConvert()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsConvert(intarg0,intarg1)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCoreSQLGrammar()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsCorrelatedSubqueries()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsDataDefinitionAndDataManipulationTransactions()
-
throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsDataManipulationTransactionsOnly()
-
throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsDifferentTableCorrelationNames()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsExpressionsInOrderBy()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsExtendedSQLGrammar()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsFullOuterJoins()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsGetGeneratedKeys()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsGroupBy()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsGroupByBeyondSelect()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsGroupByUnrelated()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsIntegrityEnhancementFacility()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsLikeEscapeClause()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsLimitedOuterJoins()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsMinimumSQLGrammar()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsMixedCaseIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsMixedCaseQuotedIdentifiers()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsMultipleOpenResults()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsMultipleResultSets()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsMultipleTransactions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsNamedParameters()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsNonNullableColumns()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsOpenCursorsAcrossCommit()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsOpenCursorsAcrossRollback()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsOpenStatementsAcrossCommit()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsOpenStatementsAcrossRollback()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsOrderByUnrelated()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsOuterJoins()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsPositionedDelete()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsPositionedUpdate()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsResultSetConcurrency(intarg0,intarg1)
-
throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsResultSetHoldability(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsResultSetType(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSavepoints()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSchemasInDataManipulation()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSchemasInIndexDefinitions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSchemasInPrivilegeDefinitions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSchemasInProcedureCalls()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSchemasInTableDefinitions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSelectForUpdate()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsStatementPooling()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsStoredProcedures()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSubqueriesInComparisons()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSubqueriesInExists()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSubqueriesInIns()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsSubqueriesInQuantifieds()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsTableCorrelationNames()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsTransactionIsolationLevel(intarg0)
-
throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsTransactions()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsUnion()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleansupportsUnionAll()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanupdatesAreDetected(intarg0)throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanusesLocalFilePerTable()throwsSQLException{
-
-
returnfalse;
- }
-
publicbooleanusesLocalFiles()throwsSQLException{
-
-
returnfalse;
- }
- }
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
《机器人接口介绍——聚焦FANUC机器人系统》 在当今自动化和智能制造的大潮中,...对于想要进一步了解FANUC Robot Interface的读者,可以参考提供的"Robot Interface介绍.pdf"文件,获取更深入的技术细节和应用示例。
本文将详细解析"yh_interface.dll"这一医保调用DLL在开发中的应用。 "yh_interface.dll"是一个专门用于医保调用的动态链接库(Dynamic Link Library),它是开发者整合医保功能到各类应用程序中的核心组件。DLL文件...
kbengine interface扩展第三方登录例子 kbengine interface扩展第三方登录例子 kbengine interface扩展第三方登录例子 kbengine interface扩展第三方登录例子 kbengine interface扩展第三方登录例子 kbengine ...
【华为HDB Interface驱动详解】 华为HDB Interface驱动是针对华为设备进行通信和管理的关键软件组件,主要用于连接和控制华为的智能硬件设备,如服务器、存储系统和网络设备。HDB(Huawei Data Bus)接口驱动是华为...
安装 Twisted 解决 ImportError No module named zope.interface 错误 在安装 Twisted 的过程中,可能会出现 ImportError No module named zope.interface 错误,这是因为 Twisted 依赖于 zope.interface 模块。...
《fanuc ROBOT INTERFACE 详解》 在自动化领域,Fanuc机器人以其卓越的性能和可靠性闻名于世。本文将深入探讨“fanuc ROBOT INTERFACE”,这是一个专为开发者设计的工具,类似于软件开发套件(SDK),它使得与Fanuc...
在这个"adb interface usb driver"绿色版压缩包中,包含了适用于32位和64位操作系统的adb USB驱动程序,用于解决在通过USB连接手机时出现的ADB驱动问题。 1. **ADB简介** ADB是Android开发者工具包的一部分,主要...
ROMaster ADB Interface.zip 是一个专门针对安卓设备的ADB(Android Debug Bridge)调试USB驱动程序的压缩包。这个工具主要用于帮助用户在电脑上通过USB连接安卓设备进行调试、日志抓取、安装应用等操作。在深入理解...
Xcode Interface Builder是苹果公司为其iOS和Mac应用开发提供的一个可视化工具,用于设计和构建用户界面。Interface Builder允许开发者通过拖放的方式快速地构建用户界面,无需编写大量代码。它提供了一个可视化的...
adb interface usb driver 32/64位是安卓手机通用的adb驱动程序,适用于插上usb线,手机adb连接不上,找不到adb interface驱动的情况,本站提供了adb interface驱动下载弟子,有需要的朋友们就来下载使用吧。...
"DDR_PHY_Interface_Specification_v5_0.pdf" DDR_PHY_Interface_Specification_v5_0.pdf是DFI(DDR PHY Interface)5.0规范的官方文档,该规范定义了DDR PHY接口的详细规格。该文档对DDR PHY接口的各个方面进行了...
ICEMCFD中创建INTERFACE方法
然而,有时我们遇到的问题是,当手机通过USB连接到电脑后,Android Studio无法识别到设备,提示“缺少adb interface驱动程序”。这通常是因为电脑上缺少Android Debug Bridge (ADB) 的USB驱动,它是Android SDK的一...
标题中的“Flotherm Interface插件下载”指的是一个专门用于Flotherm软件的插件,该插件的主要功能是帮助用户从Allegro设计环境中获取详细的PCB叠层信息,并将其导入到Flotherm中进行热仿真分析。Flotherm是一款广泛...
### AS-Interface 入门手册知识点详解 #### 1.1 AS-Interface 概述 AS-Interface(Actuator Sensor Interface)是一种专为自动化领域设计的传感器与执行器现场总线网络技术。它通过简化安装过程、降低布线成本以及...
LabVIEW Simulation Interface Toolkit 注册机
根据文件信息,本文档是关于ARM调试接口的官方文档,特别提到了ARM Debug Interface v5版本,文档中包含有版权信息、修改历史、许可协议以及相关的ARM技术信息。下面将对这些知识点进行详细解释。 首先,文档标题...
AS-Interface是一种用于连接低速传感器和执行器的现场总线系统,它简化了工业现场层的设备连接,降低了安装和布线成本。AS-Interface的全称是“Actuator-Sensor Interface”,其最初的版本是基于1990年左右的技术,...
《ARM Debug Interface v5.2 Architecture Specification》是ARM公司发布的调试接口规范,它详细定义了在嵌入式系统中对基于ARM架构的处理器进行调试的标准方法。这一规范涵盖了多种调试技术,包括SWD(Serial Wire ...
### ARM Debug Interface v5 #### 概述 ARM Debug Interface v5(简称ADI v5)是一种用于调试基于ARM架构的微处理器的技术规范。该技术主要提供了两种接口:JTAG(Joint Test Action Group)接口和SWD(Serial ...