⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testsimpleaccess.java

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997-2002 *	Sleepycat Software.  All rights reserved. * * $Id: TestSimpleAccess.java,v 1.5 2002/08/16 19:35:55 dda Exp $ *//* * Simple test for get/put of specific values. */package com.sleepycat.test;import com.sleepycat.db.*;import java.io.FileNotFoundException;public class TestSimpleAccess{    public static void main(String[] args)    {        try {            Db db = new Db(null, 0);            db.open(null, "my.db", null, Db.DB_BTREE, Db.DB_CREATE, 0644);            TestUtil.populate(db);            System.out.println("finished test");        }        catch (DbException dbe) {            System.err.println("Db Exception: " + dbe);        }        catch (FileNotFoundException fnfe) {            System.err.println("FileNotFoundException: " + fnfe);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -