积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部云计算&大数据(45)Apache Kyuubi(44)后端开发(38)Java(38)Spring(35)数据库(28)数据库中间件(12)Greenplum(12)SQLite(3)MySQL(1)

语言

全部英语(96)中文(简体)(14)中文(繁体)(1)

格式

全部PDF文档 PDF(87)其他文档 其他(24)
 
本次搜索耗时 0.058 秒,为您找到相关结果约 111 个.
  • 全部
  • 云计算&大数据
  • Apache Kyuubi
  • 后端开发
  • Java
  • Spring
  • 数据库
  • 数据库中间件
  • Greenplum
  • SQLite
  • MySQL
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 [JavaSE实验] JDBC and MySQL

    version of the MySQL server. package zetcode; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import String user = "testuser"; String password = "test623"; try { con = DriverManager.getConnection(url, user, password); st = con.createStatement(); rs = different syntax for the url. In our case, we provide a host, a port and a database name. con = DriverManager.getConnection(url, user, password); We establish a connection to the database, using the connection
    0 码力 | 23 页 | 2.52 MB | 1 年前
    3
  • pdf文档 Greenplum数据仓库UDW - UCloud中立云计算服务商

    ⽰例程序1,java连接UDW,执⾏建表,插⼊操作 PostgreSQLJDBC1.java import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; public class PostgreSQLJDBC1 { public static void main(String args[]) Connection c = null; Statement stmt = null; try { Class.forName("org.postgresql.Driver"); c = DriverManager.getConnection("jdbc:postgresql://hostIP:port/dbname",”UserName”,”Password”); stmt = c.createStatement(); } ⽰例程序⼆:java连接UDW,执⾏查询操作 PostgreSQLJDBC2.java import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class PostgreSQLJDBC2 { public
    0 码力 | 206 页 | 5.35 MB | 1 年前
    3
  • pdf文档 使用JDBC连接数据库

    JDBC规定了一整套访问数据库的标准API,所有数据库都 需要实现它,因此,使用JDBC访问数据库的Java应用程 序,是很容易切换底层数据库的。 JDBC核心类型一览表 核心类型(java.sql) 说明 DriverManager 负责装载/卸载驱动程序 Connection 与数据库建立连接 Statement 在一个给定的连接中执行SQL语句 PreparedStatement 用于执行预编译的SQL命令 创建一个包容程序入口点的Main类, 准备编写数据库连接代码。 连接数据库 Connection connection = DriverManager.getConnection("jdbc:sqlite:./dbs/test.db"); DriverManager类代表驱动程序管理器,提供了几个静态方法负责装载驱动 程序和得到对特定数据库的连接,其中getConnection方法用于连接数据库。 多知道一点:早期的数据库驱动加载代码 Class.forName("com.mysql.jdbc.Driver"); 早期的JDBC代码,使用以下这句加载特定数据库的数据驱动: JDBC 4.0以后版本的DriverManager,它的getConnection 方法进行了增强,只需要传给它数据库连接字符串,它就可以 自动进行推断并加载相应的数据库驱动程序。
    0 码力 | 20 页 | 1.02 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.7.3 Documentation

    ult;"; public static void main(String[] args) throws SQLException { try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet format(kyuubiJdbcUrlTemplate, clientPrincipal,␣ ˓→clientKeytab, serverPrincipal); try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet to use the java.sql.DriverManager class to establish a connection for JDBC: private static Connection newKyuubiConnection() throws Exception { Connection connection = DriverManager.getConnection(CONNECTION_URL);
    0 码力 | 211 页 | 3.79 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.7.1-rc0 Documentation

    ult;"; public static void main(String[] args) throws SQLException { try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet format(kyuubiJdbcUrl, clientPrincipal, clientKeytab,␣ ˓→serverPrincipal); try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet to use the java.sql.DriverManager class to establish a connection for JDBC: private static Connection newKyuubiConnection() throws Exception { Connection connection = DriverManager.getConnection(CONNECTION_URL);
    0 码力 | 208 页 | 3.78 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.7.3-rc0 Documentation

    ult;"; public static void main(String[] args) throws SQLException { try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet format(kyuubiJdbcUrlTemplate, clientPrincipal,␣ ˓→clientKeytab, serverPrincipal); try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet to use the java.sql.DriverManager class to establish a connection for JDBC: private static Connection newKyuubiConnection() throws Exception { Connection connection = DriverManager.getConnection(CONNECTION_URL);
    0 码力 | 211 页 | 3.79 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.7.2 Documentation

    ult;"; public static void main(String[] args) throws SQLException { try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet format(kyuubiJdbcUrlTemplate, clientPrincipal,␣ ˓→clientKeytab, serverPrincipal); try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet to use the java.sql.DriverManager class to establish a connection for JDBC: private static Connection newKyuubiConnection() throws Exception { Connection connection = DriverManager.getConnection(CONNECTION_URL);
    0 码力 | 211 页 | 3.79 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.7.2-rc0 Documentation

    ult;"; public static void main(String[] args) throws SQLException { try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet format(kyuubiJdbcUrlTemplate, clientPrincipal,␣ ˓→clientKeytab, serverPrincipal); try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet to use the java.sql.DriverManager class to establish a connection for JDBC: private static Connection newKyuubiConnection() throws Exception { Connection connection = DriverManager.getConnection(CONNECTION_URL);
    0 码力 | 211 页 | 3.79 MB | 1 年前
    3
  • pdf文档 SQLite Tutorial

    { Connection c = null; try { Class.forName("org.sqlite.JDBC"); c = DriverManager.getConnection("jdbc:sqlite:test.db"); } catch ( Exception e ) { System.err.println( null; Statement stmt = null; try { Class.forName("org.sqlite.JDBC"); c = DriverManager.getConnection("jdbc:sqlite:test.db"); System.out.println("Opened database successfully"); null; Statement stmt = null; try { Class.forName("org.sqlite.JDBC"); c = DriverManager.getConnection("jdbc:sqlite:test.db"); c.setAutoCommit(false); System.out.println("Opened
    0 码力 | 172 页 | 1.27 MB | 1 年前
    3
  • pdf文档 Apache Kyuubi 1.9.0-SNAPSHOT Documentation

    ult;"; public static void main(String[] args) throws SQLException { try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet format(kyuubiJdbcUrlTemplate, clientPrincipal,␣ ˓→clientKeytab, serverPrincipal); try (Connection conn = DriverManager.getConnection(kyuubiJdbcUrl)) { try (Statement stmt = conn.createStatement()) { try (ResultSet to use the java.sql.DriverManager class to establish a connection for JDBC: private static Connection newKyuubiConnection() throws Exception { Connection connection = DriverManager.getConnection(CONNECTION_URL);
    0 码力 | 220 页 | 3.93 MB | 1 年前
    3
共 111 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 12
前往
页
相关搜索词
handbookmysqlandjdbc20171106pdfGreenplum数据仓库数据仓库UDWUCloud中立计算服务服务商使用JDBC连接据库连接数数据库连接数据库ApacheKyuubi1.7Documentationrc0SQLSQLiteTutorial1.9SNAPSHOT
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩