1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
//! SQL or PL/SQL statement
mod args;
mod bind;
mod cols;
mod cursor;
mod rows;
mod data;
#[cfg(feature="blocking")]
#[cfg_attr(docsrs, doc(cfg(feature="blocking")))]
mod blocking;
#[cfg(feature="nonblocking")]
#[cfg_attr(docsrs, doc(cfg(feature="nonblocking")))]
mod nonblocking;
pub use args::ToSql;
pub use bind::Params;
pub use cursor::Cursor;
pub use rows::{Row, Rows};
pub use cols::ColumnType;
use once_cell::sync::OnceCell;
use parking_lot::{RwLock, RwLockReadGuard, RwLockWriteGuard};
use crate::{Result, session::SvcCtx, oci::*, Session, types::Ctx};
#[cfg(feature="nonblocking")]
use crate::task;
use std::{sync::Arc, fmt::Display};
use cols::{Columns, ColumnInfo};
/// Allows column or output variable identification by either
/// its numeric position or its name.
pub trait Position: Display {
fn index(&self) -> Option<usize>;
fn name(&self) -> Option<&str> { None }
}
impl Position for usize {
fn index(&self) -> Option<usize> { Some(*self) }
}
impl Position for &str {
fn index(&self) -> Option<usize> { None }
fn name(&self) -> Option<&str> { Some(*self) }
}
/// Represents a prepared for execution SQL or PL/SQL statement
pub struct Statement<'a> {
session: &'a Session<'a>,
stmt: Ptr<OCIStmt>,
params: Option<RwLock<Params>>,
cols: OnceCell<RwLock<Columns>>,
err: Handle<OCIError>,
svc: Arc<SvcCtx>,
max_long: u32,
}
impl Drop for Statement<'_> {
#[cfg(feature="blocking")]
fn drop(&mut self) {
let _ = self.svc;
oci_stmt_release(&self.stmt, &self.err);
}
#[cfg(feature="nonblocking")]
fn drop(&mut self) {
if !self.stmt.is_null() {
let mut stmt = Ptr::<OCIStmt>::null();
stmt.swap(&mut self.stmt);
let err = Handle::take(&mut self.err);
let svc = self.svc.clone();
task::spawn_detached(futures::StmtRelease::new(stmt, err, svc));
}
}
}
impl AsRef<OCIEnv> for Statement<'_> {
fn as_ref(&self) -> &OCIEnv {
self.session.as_ref()
}
}
impl AsRef<OCIError> for Statement<'_> {
fn as_ref(&self) -> &OCIError {
self.session.as_ref()
}
}
impl AsRef<OCISvcCtx> for Statement<'_> {
fn as_ref(&self) -> &OCISvcCtx {
self.session.as_ref()
}
}
impl AsRef<OCIStmt> for Statement<'_> {
fn as_ref(&self) -> &OCIStmt {
self.stmt.as_ref()
}
}
impl Ctx for Statement<'_> {
fn try_as_session(&self) -> Option<&OCISession> {
self.session.try_as_session()
}
}
impl<'a> Statement<'a> {
fn get_attr<T: attr::AttrGet>(&self, attr_type: u32) -> Result<T> {
attr::get(attr_type, OCI_HTYPE_STMT, self.stmt.as_ref(), self.as_ref())
}
fn set_attr<T: attr::AttrSet>(&self, attr_type: u32, attr_val: T) -> Result<()> {
attr::set(attr_type, attr_val, OCI_HTYPE_STMT, self.stmt.as_ref(), self.as_ref())
}
pub(crate) fn read_columns(&self) -> RwLockReadGuard<Columns> {
self.cols.get().expect("locked columns").read()
}
pub(crate) fn write_columns(&self) -> RwLockWriteGuard<Columns> {
self.cols.get().expect("locked columns").write()
}
pub(crate) fn session(&self) -> &Session {
self.session
}
/**
Sets the number of top-level rows to be prefetched. The default value is 10 rows.
# Parameters
* `num_rows` The number of top-level rows to be prefetched
# Example
🛈 **Note** that this example is written for `blocking` mode execution. Add `await`s, where needed,
to convert it to a nonblocking variant (or peek at the source to see the hidden nonblocking doctest).
```
# use sibyl::Result;
# #[cfg(feature="blocking")]
# fn main() -> Result<()> {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass)?;
let stmt = session.prepare("
SELECT employee_id, first_name, last_name
FROM hr.employees
WHERE manager_id = :id
")?;
stmt.set_prefetch_rows(5)?;
# Ok(())
# }
# #[cfg(feature="nonblocking")]
# fn main() -> Result<()> {
# sibyl::block_on(async {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass).await?;
# let stmt = session.prepare("
# SELECT employee_id, first_name, last_name
# FROM hr.employees
# WHERE manager_id = :id
# ").await?;
# stmt.set_prefetch_rows(5)?;
# Ok(()) })
# }
```
*/
pub fn set_prefetch_rows(&self, num_rows: u32) -> Result<()> {
self.set_attr(OCI_ATTR_PREFETCH_ROWS, num_rows)
}
/**
Sets the maximum size of data that will be fetched from LONG and LONG RAW.
By default 32768 bytes are allocated for values from LONG and LONG RAW columns.
If the actual value is expected to be larger than that, then the "max long size"
has to be set **before** the `query` is run.
# Parameters
* `size` - The maximum sizeof data that will be fetched
# Example
🛈 **Note** that this example is written for `blocking` mode execution. Add `await`s, where needed,
to convert it to a nonblocking variant (or peek at the source to see the hidden nonblocking doctest).
```
# use sibyl::Result;
# static TEXT : &str = "When I have fears that I may cease to be Before my pen has gleaned my teeming brain, Before high-pilèd books, in charactery, Hold like rich garners the full ripened grain; When I behold, upon the night’s starred face, Huge cloudy symbols of a high romance, And think that I may never live to trace Their shadows with the magic hand of chance; And when I feel, fair creature of an hour, That I shall never look upon thee more, Never have relish in the faery power Of unreflecting love—then on the shore Of the wide world I stand alone, and think Till love and fame to nothingness do sink.";
# #[cfg(feature="blocking")]
# fn main() -> Result<()> {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass)?;
# let stmt = session.prepare("
# DECLARE
# name_already_used EXCEPTION; PRAGMA EXCEPTION_INIT(name_already_used, -955);
# BEGIN
# EXECUTE IMMEDIATE '
# CREATE TABLE long_and_raw_test_data (
# id NUMBER GENERATED ALWAYS AS IDENTITY,
# bin RAW(100),
# text LONG
# )
# ';
# EXCEPTION
# WHEN name_already_used THEN NULL;
# END;
# ")?;
# stmt.execute(())?;
# let stmt = session.prepare("
# INSERT INTO long_and_raw_test_data (text) VALUES (:TEXT)
# RETURNING id INTO :ID
# ")?;
# let mut id = 0;
# let count = stmt.execute(((":TEXT", &TEXT), (":ID", &mut id)))?;
let mut stmt = session.prepare("
SELECT text
FROM long_and_raw_test_data
WHERE id = :id
")?;
stmt.set_max_long_size(100_000);
let row = stmt.query_single(&id)?.unwrap();
let txt : &str = row.get(0)?;
# assert_eq!(txt, TEXT);
# Ok(())
# }
# #[cfg(feature="nonblocking")]
# fn main() -> Result<()> {
# sibyl::block_on(async {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass).await?;
# let stmt = session.prepare("
# DECLARE
# name_already_used EXCEPTION; PRAGMA EXCEPTION_INIT(name_already_used, -955);
# BEGIN
# EXECUTE IMMEDIATE '
# CREATE TABLE long_and_raw_test_data (
# id NUMBER GENERATED ALWAYS AS IDENTITY,
# bin RAW(100),
# text LONG
# )
# ';
# EXCEPTION
# WHEN name_already_used THEN NULL;
# END;
# ").await?;
# stmt.execute(()).await?;
# let stmt = session.prepare("
# INSERT INTO long_and_raw_test_data (text) VALUES (:TEXT)
# RETURNING id INTO :ID
# ").await?;
# let mut id = 0;
# let count = stmt.execute(((":TEXT", &TEXT), (":ID", &mut id))).await?;
# let mut stmt = session.prepare("
# SELECT text
# FROM long_and_raw_test_data
# WHERE id = :id
# ").await?;
# stmt.set_max_long_size(100_000);
# let row = stmt.query_single(&id).await?.unwrap();
# let txt : &str = row.get(0)?;
# assert_eq!(txt, TEXT);
# Ok(()) })
# }
```
*/
pub fn set_max_long_size(&mut self, size: u32) {
self.max_long = size;
}
/**
Returns he number of columns in the select-list of this statement.
# Example
🛈 **Note** that this example is written for `blocking` mode execution. Add `await`s, where needed,
to convert it to a nonblocking variant (or peek at the source to see the hidden nonblocking doctest).
```
# use sibyl::Result;
# #[cfg(feature="blocking")]
# fn main() -> Result<()> {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass)?;
let stmt = session.prepare("
SELECT employee_id, last_name, first_name
FROM hr.employees
WHERE manager_id = :id
")?;
let rows = stmt.query(103)?;
let num_cols = stmt.column_count()?;
assert_eq!(num_cols, 3);
# Ok(())
# }
# #[cfg(feature="nonblocking")]
# fn main() -> Result<()> {
# sibyl::block_on(async {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass).await?;
# let stmt = session.prepare("
# SELECT employee_id, last_name, first_name
# FROM hr.employees
# WHERE manager_id = :id
# ").await?;
# let rows = stmt.query(103).await?;
# let num_cols = stmt.column_count()?;
# assert_eq!(num_cols, 3);
# Ok(()) })
# }
```
*/
pub fn column_count(&self) -> Result<usize> {
let num_columns = self.get_attr::<u32>(OCI_ATTR_PARAM_COUNT)? as usize;
Ok( num_columns )
}
/**
Returns the number of rows processed/seen so far in SELECT statements.
For INSERT, UPDATE, and DELETE statements, it is the number of rows processed
by the statement.
For nonscrollable cursors, it is the total number of rows fetched into user buffers
since this statement handle was executed. Because they are forward sequential only,
this also represents the highest row number seen by the application.
# Example
🛈 **Note** that this example is written for `blocking` mode execution. Add `await`s, where needed,
to convert it to a nonblocking variant (or peek at the source to see the hidden nonblocking doctest).
```
# use sibyl::Result;
# #[cfg(feature="blocking")]
# fn main() -> Result<()> {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass)?;
let stmt = session.prepare("
SELECT employee_id, first_name, last_name
FROM hr.employees
WHERE manager_id = :id
ORDER BY employee_id
")?;
stmt.set_prefetch_rows(5)?;
let rows = stmt.query(103)?;
let mut ids = Vec::new();
while let Some( row ) = rows.next()? {
// EMPLOYEE_ID is NOT NULL, so we can safely unwrap it
let id : u32 = row.get(0)?;
ids.push(id);
}
assert_eq!(stmt.row_count()?, 4);
assert_eq!(ids.len(), 4);
assert_eq!(ids.as_slice(), &[104 as u32, 105, 106, 107]);
# Ok(())
# }
# #[cfg(feature="nonblocking")]
# fn main() -> Result<()> {
# sibyl::block_on(async {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass).await?;
# let stmt = session.prepare("
# SELECT employee_id, first_name, last_name
# FROM hr.employees
# WHERE manager_id = :id
# ORDER BY employee_id
# ").await?;
# stmt.set_prefetch_rows(5)?;
# let rows = stmt.query(103).await?;
# let mut ids = Vec::new();
# while let Some( row ) = rows.next().await? {
# let id : i32 = row.get(0)?;
# ids.push(id);
# }
# assert_eq!(stmt.row_count()?, 4);
# assert_eq!(ids.len(), 4);
# assert_eq!(ids.as_slice(), &[104, 105, 106, 107]);
# Ok(()) })
# }
```
*/
pub fn row_count(&self) -> Result<usize> {
let num_rows = self.get_attr::<u64>(OCI_ATTR_UB8_ROW_COUNT)? as usize;
Ok( num_rows )
}
// Indicates the number of rows that were successfully fetched into the user's buffers
// in the last fetch or execute with nonzero iterations.
//
// This is not very useful in this implementation as we set up buffers for 1 row only.
//
// pub fn rows_fetched(&self) -> Result<usize> {
// let num_rows = self.get_attr::<u32>(OCI_ATTR_ROWS_FETCHED)? as usize;
// Ok( num_rows )
// }
/**
Checks whether the value returned for the output parameter is NULL.
# Parameters
* `pos` - parameter "position" - either the parameter name or a zero-based index
# Example
🛈 **Note** that this example is written for `blocking` mode execution. Add `await`s, where needed,
to convert it to a nonblocking variant (or peek at the source to see the hidden nonblocking doctest).
```
# use sibyl::Result;
# #[cfg(feature="blocking")]
# fn main() -> Result<()> {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass)?;
let stmt = session.prepare("
UPDATE hr.employees
SET manager_id = :new_manager_id
WHERE employee_id = :employee_id
RETURN commission_pct INTO :commission_pct
")?;
let mut commission_pct = 0f64;
stmt.execute(
(
(":EMPLOYEE_ID", 133),
(":NEW_MANAGER_ID", 120),
(":COMMISSION_PCT", &mut commission_pct),
)
)?;
let commission_pct_is_null = stmt.is_null(":COMMISSION_PCT")?;
assert!(commission_pct_is_null);
# session.rollback()?;
# Ok(())
# }
# #[cfg(feature="nonblocking")]
# fn main() -> Result<()> {
# sibyl::block_on(async {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass).await?;
# let stmt = session.prepare("
# UPDATE hr.employees
# SET manager_id = :new_manager_id
# WHERE employee_id = :employee_id
# RETURN commission_pct INTO :commission_pct
# ").await?;
# let mut commission_pct = 0f64;
# stmt.execute(
# (
# (":EMPLOYEE_ID", 133),
# (":NEW_MANAGER_ID", 120),
# (":COMMISSION_PCT", &mut commission_pct)
# )
# ).await?;
# let commission_pct_is_null = stmt.is_null(":COMMISSION_PCT")?;
# assert!(commission_pct_is_null);
# session.rollback().await?;
# Ok(()) })
# }
```
*/
pub fn is_null(&self, pos: impl Position) -> Result<bool> {
self.params.as_ref().map(|params| params.read().is_null(pos)).unwrap_or(Ok(true))
}
/**
Returns column meta data.
Returns None if the specified position is greater than the number of columns in the query
or if the prepared statement is not a SELECT and has no columns.
# Parameters
* `pos` - zero-based column position
# Example
🛈 **Note** that this example is written for `blocking` mode execution. Add `await`s, where needed,
to convert it to a nonblocking variant (or peek at the source to see the hidden nonblocking doctest).
```
use sibyl::ColumnType;
# use sibyl::Result;
# #[cfg(feature="blocking")]
# fn main() -> Result<()> {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass)?;
let stmt = session.prepare("
SELECT employee_id, last_name, first_name
FROM hr.employees
WHERE manager_id = :id
")?;
let rows = stmt.query(103)?;
let col = stmt.column(0).expect("employee_id column info");
assert_eq!(col.name()?, "EMPLOYEE_ID");
assert_eq!(col.data_type()?, ColumnType::Number);
assert_eq!(col.precision()?, 6);
assert_eq!(col.scale()?, 0);
assert!(!col.is_null()?);
assert!(col.is_visible()?);
assert!(!col.is_identity()?);
# Ok(())
# }
# #[cfg(feature="nonblocking")]
# fn main() -> Result<()> {
# sibyl::block_on(async {
# let oracle = sibyl::env()?;
# let dbname = std::env::var("DBNAME").expect("database name");
# let dbuser = std::env::var("DBUSER").expect("user name");
# let dbpass = std::env::var("DBPASS").expect("password");
# let session = oracle.connect(&dbname, &dbuser, &dbpass).await?;
# let stmt = session.prepare("
# SELECT employee_id, last_name, first_name
# FROM hr.employees
# WHERE manager_id = :id
# ").await?;
# let rows = stmt.query(103).await?;
# let col = stmt.column(0).expect("employee_id column info");
# assert_eq!(col.name()?, "EMPLOYEE_ID");
# assert_eq!(col.data_type()?, ColumnType::Number);
# assert_eq!(col.precision()?, 6);
# assert_eq!(col.scale()?, 0);
# assert!(!col.is_null()?);
# assert!(col.is_visible()?);
# assert!(!col.is_identity()?);
# Ok(()) })
# }
```
*/
pub fn column(&self, pos: usize) -> Option<ColumnInfo> {
self.cols.get()
.and_then(|cols|
cols.read().column_param(pos)
).map(|param|
ColumnInfo::new(param, self.as_ref())
)
}
}