轻松、快速地开始使用 Oracle Database Free。
有关更多信息和完整的步骤说明,请参阅 Linux 安装指南。
详细了解 Oracle Database 23ai Free 的新特性
Docker/Podman | |||||
---|---|---|---|---|---|
下载 | Oracle Container Registry | ||||
附注 | 通过 docker pull container-registry.oracle.com/database/free:latest ,直接从 Oracle Container Registry 拉取容器映像。 |
Oracle VM VirtualBox | |||||
---|---|---|---|---|---|
文件名 | Oracle_Database_23ai_Free_Developer.ova | ||||
Sha256sum | 074c80f81b0a95c2d3bc0576791e61c0cd47f17d2fc55fe426fc4d656e328dc6 | ||||
大小(字节) | 6083107840 | ||||
附注 | 将 23ai Free 的 .ova 文件导入您的本地 Oracle VM VirtualBox 设置。 参阅 Oracle Database 23ai Free VirtualBox Appliance 页面,了解 Oracle VM VirtualBox 映像内容及资源要求。 |
Oracle Linux 8 | |||||
---|---|---|---|---|---|
文件名 | oracle-database-free-23ai-1.0-1.el8.x86_64.rpm | ||||
Sha256sum | e6cccec7f101325c233f374c2aa86f77d62123edd3125450d79404c3eec30b65 | ||||
大小(字节) | 1378076936 | ||||
附注 | 运行 运行 |
Oracle Linux 9 | |||||
---|---|---|---|---|---|
文件名 | oracle-database-free-23ai-1.0-1.el9.x86_64.rpm | ||||
Sha256sum | 427ac8f337a9aa880e661d2574e9fac1427e9899a34c8459720432905bd30873 | ||||
大小(字节) | 1378076936 | ||||
附注 | 运行 运行 |
Oracle Instant Client | |||||
---|---|---|---|---|---|
文件名 Sha256sum 大小(字节) |
instantclient-basic-linux.x64-23.4.0.24.05.zip 63835bf433b6b3e212082dfbd55662830d2104d71cc7e750cecda039726fe956 118377607 |
||||
文件名 Sha256sum 大小(字节) |
instantclient-sdk-linux.x64-23.4.0.24.05.zip 8c1b596c515121e280b555b2957baf363f3164dbff0c20a064d5c30551700d8d 1043624 |
||||
文件名 Sha256sum 大小(字节) |
instantclient-sqlplus-linux.x64-23.4.0.24.05.zip eb6550aa7ceaaa2824bd951f5fe79e3da81e396accaed59852f7e1a62110b4ed 5471693 |
||||
附注 | 适用于开发和部署用于连接 Oracle Database 的应用 |
RedHat 兼容的 Oracle Linux 8 发行版 | |||||
---|---|---|---|---|---|
文件名 Sha256sum 大小(字节) |
oracle-database-preinstall-23ai-1.0-2.el8.x86_64.rpm 4578e6d1cf566e04541e0216b07a0372725726a7c339423ee560255cb918138b 31152 |
||||
文件名 Sha256sum 大小(字节) |
oracle-database-free-23ai-1.0-1.el8.x86_64.rpm e6cccec7f101325c233f374c2aa86f77d62123edd3125450d79404c3eec30b65 1378076936 |
||||
附注 | 运行 运行 运行 |
RedHat 兼容的 Oracle Linux 9 发行版 | |||||
---|---|---|---|---|---|
文件名 Sha256sum 大小(字节) |
oracle-database-preinstall-23ai-1.0-2.el9.x86_64.rpm aa7bc3a62f4118cc8e02ece2f67ddd276b2256833e4d66f939725b2ef22bebf9 35689 |
||||
文件名 Sha256sum 大小(字节) |
oracle-database-free-23ai-1.0-1.el9.x86_64.rpm 427ac8f337a9aa880e661d2574e9fac1427e9899a34c8459720432905bd30873 1378076936 |
||||
附注 | 运行 运行 运行 |
Windows 平台 | |||||
---|---|---|---|---|---|
附注 | Windows 用户可使用提供的容器映像和 Docker Desktop for Windows(或 Oracle VM VirtualBox 映像)运行 Oracle Database Free。Windows 本机安装即将推出。 |
sqlplus sys@localhost:1521/FREEPDB1 as sysdba
sqlplus sys@localhost:1521/FREE as sysdba
OracleDataSource ods = new OracleDataSource();
ods.setURL("jdbc:oracle:thin:@localhost:1521/FREEPDB1"); // jdbc:oracle:thin@[hostname]:[port]/[DB service name]
ods.setUser("[Username]");
ods.setPassword("[Password]");
Connection conn = ods.getConnection();
PreparedStatement stmt = conn.prepareStatement("SELECT 'Hello World!' FROM dual");
ResultSet rslt = stmt.executeQuery();
while (rslt.next()) {
System.out.println(rslt.getString(1));
}
import oracledb
conn = oracledb.connect(user="[Username]", password="[Password]", dsn="localhost:1521/FREEPDB1")
with conn.cursor() as cur:
cur.execute("SELECT 'Hello World!' FROM dual")
res = cur.fetchall()
print(res)
const oracledb = require('oracledb');
async function run() {
let connection = await oracledb.getConnection({
user : "[Username]",
password : "[Password]",
connectString : "localhost:1521/FREEPDB1" // [hostname]:[port]/[DB service name]
});
let result = await connection.execute( "SELECT 'Hello World!' FROM dual");
console.log(result.rows[0]);
}
run();
// Connection string format: User Id=[username];Password=[password];Data Source=[hostname]:[port]/[DB service name];
OracleConnection con = new OracleConnection("User Id=[Username];Password=[Password];Data Source=localhost:1521/FREEPDB1;");
con.Open();
OracleCommand cmd = con.CreateCommand();
cmd.CommandText = "SELECT \'Hello World!\' FROM dual";
OracleDataReader reader = cmd.ExecuteReader();
reader.Read();
Console.WriteLine(reader.GetString(0));
// [username], [password], [hostname]:[port]/[DB service name]
$c = oci_pconnect("[Username]", "[Password]", "localhost:1521/FREEPDB1");
$s = oci_parse($c, "SELECT 'Hello World!' FROM dual");
oci_execute($s);
oci_fetch_all($s, $res);
echo "<pre>\n"
var_dump($res);
echo "</pre>\n";
require 'oci8'
con = OCI8.new("[Username]", "[Password]", "localhost:1521/FREEPDB1")
statement = "SELECT 'Hello World!' FROM dual"
cursor = con.parse(statement)
cursor.exec
cursor.fetch do |row|
print row
end
package main
import (
"fmt"
"log"
"database/sql"
_ "github.com/godror/godror"
)
func main() {
// connectString format: [hostname]:[port]/[DB service name]
dsn := `user="[Username]"
password="[Password]"
connectString="localhost:1521/FREEPDB1"`
db, err := sql.Open("godror", dsn)
if err != nil {
panic(err)
}
defer db.Close()
rows, err := db.Query("SELECT 'Hello World!' FROM dual")
if err != nil {
panic(err)
}
defer rows.Close()
var strVal string
for rows.Next() {
err := rows.Scan(&strVal)
if err != nil {
log.Fatal(err)
}
fmt.Println(strVal)
}
err = rows.Err()
if err != nil {
log.Fatal(err)
}
}
注:为免疑义,本网页所用以下术语专指以下含义: