要在PL/SQL中連接到Oracle數(shù)據(jù)庫,您可以使用CONNECT
語句或DECLARE
塊。
使用CONNECT
語句:
CONNECT username/password@database
其中,username
是您的數(shù)據(jù)庫用戶名,password
是您的數(shù)據(jù)庫密碼,database
是您要連接的數(shù)據(jù)庫的連接字符串或服務(wù)名。
使用DECLARE
塊:
DECLARE
conn UTL_TCP.connection;
BEGIN
conn := UTL_TCP.open_connection(remote_host => 'database', remote_port => 'port');
-- 執(zhí)行其他操作
UTL_TCP.close_connection(conn);
END;
其中,database
是您要連接的數(shù)據(jù)庫的主機名或IP地址,port
是數(shù)據(jù)庫的監(jiān)聽端口號。
請注意,您還需要具有正確的權(quán)限才能連接到數(shù)據(jù)庫。