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

📄 testutil.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: TestUtil.java,v 1.1 2002/08/16 19:35:56 dda Exp $ *//* * Utilities used by many tests. */package com.sleepycat.test;import com.sleepycat.db.*;import java.io.FileNotFoundException;public class TestUtil{    public static void populate(Db db)        throws DbException    {        // populate our massive database.        Dbt keydbt = new Dbt("key".getBytes());        Dbt datadbt = new Dbt("data".getBytes());        db.put(null, keydbt, datadbt, 0);                // Now, retrieve.  We could use keydbt over again,        // but that wouldn't be typical in an application.        Dbt goodkeydbt = new Dbt("key".getBytes());        Dbt badkeydbt = new Dbt("badkey".getBytes());        Dbt resultdbt = new Dbt();        resultdbt.set_flags(Db.DB_DBT_MALLOC);                int ret;                if ((ret = db.get(null, goodkeydbt, resultdbt, 0)) != 0) {            System.out.println("get: " + DbEnv.strerror(ret));        }        else {            String result =                new String(resultdbt.get_data(), 0, resultdbt.get_size());            System.out.println("got data: " + result);        }                if ((ret = db.get(null, badkeydbt, resultdbt, 0)) != 0) {            // We expect this...            System.out.println("get using bad key: " + DbEnv.strerror(ret));        }        else {            String result =                new String(resultdbt.get_data(), 0, resultdbt.get_size());            System.out.println("*** got data using bad key!!: " + result);        }    }}

⌨️ 快捷键说明

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