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 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
//! REF CURSOR
#[cfg(feature="blocking")]
#[cfg_attr(docsrs, doc(cfg(feature="blocking")))]
mod blocking;
#[cfg(feature="nonblocking")]
#[cfg_attr(docsrs, doc(cfg(feature="nonblocking")))]
mod nonblocking;
use super::{Statement, args::ToSql, cols::{Columns, ColumnInfo, DEFAULT_LONG_BUFFER_SIZE}, rows::Row, bind::Params};
use crate::{Result, oci::*, types::Ctx, Session};
use once_cell::sync::OnceCell;
use parking_lot::{RwLock, RwLockReadGuard, RwLockWriteGuard};
impl ToSql for &mut Handle<OCIStmt> {
fn bind_to(&mut self, pos: usize, params: &mut Params, stmt: &OCIStmt, err: &OCIError) -> Result<usize> {
let len = std::mem::size_of::<*mut OCIStmt>();
params.bind_out(pos, SQLT_RSET, (*self).as_mut_ptr() as _, len, len, stmt, err)?;
Ok(pos + 1)
}
}
pub(crate) enum RefCursor {
Handle( Handle<OCIStmt> ),
Ptr( Ptr<OCIStmt> )
}
impl AsRef<OCIStmt> for RefCursor {
fn as_ref(&self) -> &OCIStmt {
match self {
RefCursor::Handle( handle ) => handle.as_ref(),
RefCursor::Ptr( ptr ) => ptr.as_ref(),
}
}
}
impl RefCursor {
fn as_mut_ptr(&mut self) -> *mut *mut OCIStmt {
match self {
RefCursor::Handle( handle ) => handle.as_mut_ptr(),
RefCursor::Ptr( ptr ) => ptr.as_mut_ptr(),
}
}
}
enum CursorSource<'a> {
Statement(&'a Statement<'a>),
Row(&'a Row<'a>)
}
impl AsRef<OCIEnv> for CursorSource<'_> {
fn as_ref(&self) -> &OCIEnv {
match self {
&Self::Statement(stmt) => stmt.as_ref(),
&Self::Row(row) => row.as_ref(),
}
}
}
impl AsRef<OCIError> for CursorSource<'_> {
fn as_ref(&self) -> &OCIError {
match self {
&Self::Statement(stmt) => stmt.as_ref(),
&Self::Row(row) => row.as_ref(),
}
}
}
impl AsRef<OCISvcCtx> for CursorSource<'_> {
fn as_ref(&self) -> &OCISvcCtx {
match self {
&Self::Statement(stmt) => stmt.as_ref(),
&Self::Row(row) => row.as_ref(),
}
}
}
impl Ctx for CursorSource<'_> {
fn try_as_session(&self) -> Option<&OCISession> {
match self {
&Self::Statement(stmt) => stmt.try_as_session(),
&Self::Row(row) => row.try_as_session(),
}
}
}
impl CursorSource<'_> {
pub(crate) fn session(&self) -> &Session {
match self {
&Self::Statement(stmt) => stmt.session(),
&Self::Row(row) => row.session(),
}
}
}
/// `REF CURSOR`s or implicit results (from `DBMS_SQL.RETURN_RESULT`) of an executed PL/SQL statement.
pub struct Cursor<'a> {
cols: OnceCell<RwLock<Columns>>,
cursor: RefCursor,
source: CursorSource<'a>,
max_long: u32,
}
impl AsRef<OCIEnv> for Cursor<'_> {
fn as_ref(&self) -> &OCIEnv {
self.source.as_ref()
}
}
impl AsRef<OCIError> for Cursor<'_> {
fn as_ref(&self) -> &OCIError {
self.source.as_ref()
}
}
impl AsRef<OCISvcCtx> for Cursor<'_> {
fn as_ref(&self) -> &OCISvcCtx {
self.source.as_ref()
}
}
impl AsRef<OCIStmt> for Cursor<'_> {
fn as_ref(&self) -> &OCIStmt {
self.cursor.as_ref()
}
}
impl Ctx for Cursor<'_> {
fn try_as_session(&self) -> Option<&OCISession> {
self.source.try_as_session()
}
}
impl ToSql for &mut Cursor<'_> {
fn bind_to(&mut self, pos: usize, params: &mut Params, stmt: &OCIStmt, err: &OCIError) -> Result<usize> {
let len = std::mem::size_of::<*mut OCIStmt>();
params.bind_out(pos, SQLT_RSET, self.cursor.as_mut_ptr() as _, len, len, stmt, err)?;
Ok(pos + 1)
}
}
impl<'a> Cursor<'a> {
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.source.session()
}
/**
Creates a Cursor that can be used as an OUT argument to receive a returning REF CURSOR.
# 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::{Cursor, Number};
use std::cmp::Ordering::Equal;
# 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("
BEGIN
OPEN :lowest_payed_employee FOR
SELECT department_name, first_name, last_name, salary
FROM (
SELECT first_name, last_name, salary, department_id
, ROW_NUMBER() OVER (ORDER BY salary) ord
FROM hr.employees
) e
JOIN hr.departments d
ON d.department_id = e.department_id
WHERE ord = 1
;
OPEN :median_salary_employees FOR
SELECT department_name, first_name, last_name, salary
FROM (
SELECT first_name, last_name, salary, department_id
, MEDIAN(salary) OVER () median_salary
FROM hr.employees
) e
JOIN hr.departments d
ON d.department_id = e.department_id
WHERE salary = median_salary
ORDER BY department_name, last_name, first_name
;
END;
")?;
let mut lowest_payed_employee = Cursor::new(&stmt)?;
let mut median_salary_employees = Cursor::new(&stmt)?;
stmt.execute((
( ":LOWEST_PAYED_EMPLOYEE", &mut lowest_payed_employee ),
( ":MEDIAN_SALARY_EMPLOYEES", &mut median_salary_employees ),
))?;
let expected_lowest_salary = Number::from_int(2100, &session)?;
let expected_median_salary = Number::from_int(6200, &session)?;
let rows = lowest_payed_employee.rows()?;
let row = rows.next()?.unwrap();
let department_name : &str = row.get(0)?;
let first_name : &str = row.get(1)?;
let last_name : &str = row.get(2)?;
let salary : Number = row.get(3)?;
assert_eq!(department_name, "Shipping");
assert_eq!(first_name, "TJ");
assert_eq!(last_name, "Olson");
assert_eq!(salary.compare(&expected_lowest_salary)?, Equal);
let row = rows.next()?;
assert!(row.is_none());
let rows = median_salary_employees.rows()?;
let row = rows.next()?.unwrap();
let department_name : &str = row.get(0)?;
let first_name : &str = row.get(1)?;
let last_name : &str = row.get(2)?;
let salary : Number = row.get(3)?;
assert_eq!(department_name, "Sales");
assert_eq!(first_name, "Amit");
assert_eq!(last_name, "Banda");
assert_eq!(salary.compare(&expected_median_salary)?, Equal);
let row = rows.next()?.unwrap();
let department_name : &str = row.get(0)?;
let first_name : &str = row.get(1)?;
let last_name : &str = row.get(2)?;
let salary : Number = row.get(3)?;
assert_eq!(department_name, "Sales");
assert_eq!(first_name, "Charles");
assert_eq!(last_name, "Johnson");
assert_eq!(salary.compare(&expected_median_salary)?, Equal);
let row = rows.next()?;
assert!(row.is_none());
# 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("
# BEGIN
# OPEN :lowest_payed_employee FOR
# SELECT department_name, first_name, last_name, salary
# FROM (
# SELECT first_name, last_name, salary, department_id
# , ROW_NUMBER() OVER (ORDER BY salary) ord
# FROM hr.employees
# ) e
# JOIN hr.departments d
# ON d.department_id = e.department_id
# WHERE ord = 1
# ;
# OPEN :median_salary_employees FOR
# SELECT department_name, first_name, last_name, salary
# FROM (
# SELECT first_name, last_name, salary, department_id
# , MEDIAN(salary) OVER () median_salary
# FROM hr.employees
# ) e
# JOIN hr.departments d
# ON d.department_id = e.department_id
# WHERE salary = median_salary
# ORDER BY department_name, last_name, first_name
# ;
# END;
# ").await?;
# let mut lowest_payed_employee = Cursor::new(&stmt)?;
# let mut median_salary_employees = Cursor::new(&stmt)?;
# stmt.execute((
# ( ":LOWEST_PAYED_EMPLOYEE", &mut lowest_payed_employee ),
# ( ":MEDIAN_SALARY_EMPLOYEES", &mut median_salary_employees ),
# )).await?;
# let expected_lowest_salary = Number::from_int(2100, &session)?;
# let expected_median_salary = Number::from_int(6200, &session)?;
# let rows = lowest_payed_employee.rows().await?;
# let row = rows.next().await?.unwrap();
# let department_name : &str = row.get(0)?;
# let first_name : &str = row.get(1)?;
# let last_name : &str = row.get(2)?;
# let salary : Number = row.get(3)?;
# assert_eq!(department_name, "Shipping");
# assert_eq!(first_name, "TJ");
# assert_eq!(last_name, "Olson");
# assert_eq!(salary.compare(&expected_lowest_salary)?, Equal);
# let row = rows.next().await?;
# assert!(row.is_none());
# let rows = median_salary_employees.rows().await?;
# let row = rows.next().await?.unwrap();
# let department_name : &str = row.get(0)?;
# let first_name : &str = row.get(1)?;
# let last_name : &str = row.get(2)?;
# let salary : Number = row.get(3)?;
# assert_eq!(department_name, "Sales");
# assert_eq!(first_name, "Amit");
# assert_eq!(last_name, "Banda");
# assert_eq!(salary.compare(&expected_median_salary)?, Equal);
# let row = rows.next().await?.unwrap();
# let department_name : &str = row.get(0)?;
# let first_name : &str = row.get(1)?;
# let last_name : &str = row.get(2)?;
# let salary : Number = row.get(3)?;
# assert_eq!(department_name, "Sales");
# assert_eq!(first_name, "Charles");
# assert_eq!(last_name, "Johnson");
# assert_eq!(salary.compare(&expected_median_salary)?, Equal);
# let row = rows.next().await?;
# assert!(row.is_none());
# Ok(()) })
# }
```
See also [`Statement::next_result`] for another method to return REF CURSORs.
*/
pub fn new(stmt: &'a Statement) -> Result<Self> {
let handle = Handle::<OCIStmt>::new(stmt)?;
Ok(
Self {
source: CursorSource::Statement(stmt),
cursor: RefCursor::Handle( handle ),
cols: OnceCell::new(),
max_long: DEFAULT_LONG_BUFFER_SIZE
}
)
}
// next_result
pub(crate) fn implicit(istmt: Ptr<OCIStmt>, stmt: &'a Statement) -> Self {
Self {
source: CursorSource::Statement(stmt),
cursor: RefCursor::Ptr( istmt ),
cols: OnceCell::new(),
max_long: DEFAULT_LONG_BUFFER_SIZE
}
}
// column in a row
pub(crate) fn explicit(handle: Handle<OCIStmt>, row: &'a Row<'a>) -> Self {
Self {
source: CursorSource::Row(row),
cursor: RefCursor::Handle( handle ),
cols: OnceCell::new(),
max_long: DEFAULT_LONG_BUFFER_SIZE
}
}
fn get_attr<V: attr::AttrGet>(&self, attr_type: u32) -> Result<V> {
let stmt: &OCIStmt = self.as_ref();
attr::get(attr_type, OCI_HTYPE_STMT, stmt, self.as_ref())
}
fn set_attr<V: attr::AttrSet>(&self, attr_type: u32, attr_val: V) -> Result<()> {
let stmt: &OCIStmt = self.as_ref();
attr::set(attr_type, attr_val, OCI_HTYPE_STMT, stmt, self.as_ref())
}
/**
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::Cursor;
# 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("
BEGIN
OPEN :subordinates FOR
SELECT employee_id, last_name, first_name
FROM hr.employees
WHERE manager_id = :id
;
END;
")?;
let mut subordinates = Cursor::new(&stmt)?;
stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates)))?;
assert_eq!(subordinates.column_count()?, 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("
# BEGIN
# OPEN :subordinates FOR
# SELECT employee_id, last_name, first_name
# FROM hr.employees
# WHERE manager_id = :id
# ;
# END;
# ").await?;
# let mut subordinates = Cursor::new(&stmt)?;
# stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates))).await?;
# assert_eq!(subordinates.column_count()?, 3);
# Ok(()) })
# }
```
*/
pub fn column_count(&self) -> Result<usize> {
let num_columns = self.get_attr::<u32>(OCI_ATTR_PARAM_COUNT)?;
Ok( num_columns as usize )
}
/**
Returns meta data of the specified column.
# Parameters
- `pos` - 0-based column index
# Returns
- Column metadata or
- None if `pos` is greater than the number of columns in the query or if the prepared
statement is not a SELECT and has no columns.
# 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::{Cursor, 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("
BEGIN
OPEN :subordinates FOR
SELECT employee_id, last_name, first_name
FROM hr.employees
WHERE manager_id = :id
;
END;
")?;
let mut subordinates = Cursor::new(&stmt)?;
stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates)))?;
let mut _rows = subordinates.rows()?;
let col = subordinates.column(0).expect("ID column info");
assert_eq!(col.name()?, "EMPLOYEE_ID", "column name");
assert_eq!(col.data_type()?, ColumnType::Number, "column type");
assert_eq!(col.precision()?, 6, "number precision");
assert_eq!(col.scale()?, 0, "number scale");
assert!(!col.is_null()?, "not null");
assert!(col.is_visible()?, "is visible");
assert!(!col.is_identity()?, "not an identity column");
# 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("
# BEGIN
# OPEN :subordinates FOR
# SELECT employee_id, last_name, first_name
# FROM hr.employees
# WHERE manager_id = :id
# ;
# END;
# ").await?;
# let mut subordinates = Cursor::new(&stmt)?;
# stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates))).await?;
# let mut _rows = subordinates.rows().await?;
# let col = subordinates.column(0).expect("ID column info");
# assert_eq!(col.name()?, "EMPLOYEE_ID", "column name");
# assert_eq!(col.data_type()?, ColumnType::Number, "column type");
# assert_eq!(col.precision()?, 6, "number precision");
# assert_eq!(col.scale()?, 0, "number scale");
# assert!(!col.is_null()?, "not null");
# assert!(col.is_visible()?, "is visible");
# assert!(!col.is_identity()?, "not an identity column");
# 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())
)
}
/**
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 most recent 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::Cursor;
# 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("
BEGIN
OPEN :subordinates FOR
SELECT employee_id, last_name, first_name
FROM hr.employees
WHERE manager_id = :id
ORDER BY employee_id
;
END;
")?;
let mut subordinates = Cursor::new(&stmt)?;
stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates)))?;
subordinates.set_prefetch_rows(5)?;
let rows = subordinates.rows()?;
let mut ids = Vec::new();
while let Some( row ) = rows.next()? {
// EMPLOYEE_ID is NOT NULL, so we can safely unwrap it
let id : usize = row.get(0)?;
ids.push(id);
}
assert_eq!(subordinates.row_count()?, 4);
assert_eq!(ids.len(), 4);
assert_eq!(ids.as_slice(), &[104 as usize, 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("
# BEGIN
# OPEN :subordinates FOR
# SELECT employee_id, last_name, first_name
# FROM hr.employees
# WHERE manager_id = :id
# ORDER BY employee_id
# ;
# END;
# ").await?;
# let mut subordinates = Cursor::new(&stmt)?;
# stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates))).await?;
# subordinates.set_prefetch_rows(5)?;
# let mut rows = subordinates.rows().await?;
# let mut ids = Vec::new();
# while let Some( row ) = rows.next().await? {
# let id : usize = row.get(0)?;
# ids.push(id);
# }
# assert_eq!(subordinates.row_count()?, 4);
# assert_eq!(ids.len(), 4);
# assert_eq!(ids.as_slice(), &[104 as usize, 105, 106, 107]);
# Ok(()) })
# }
```
*/
pub fn row_count(&self) -> Result<usize> {
let num_rows = self.get_attr::<u64>(OCI_ATTR_UB8_ROW_COUNT)?;
Ok( num_rows as usize )
}
/**
Sets the number of top-level rows to be prefetched. The default value is 1 row.
# 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::Cursor;
# 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("
BEGIN
OPEN :subordinates FOR
SELECT employee_id, last_name, first_name
FROM hr.employees
WHERE manager_id = :id
ORDER BY employee_id
;
END;
")?;
let mut subordinates = Cursor::new(&stmt)?;
stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates)))?;
subordinates.set_prefetch_rows(10)?;
# 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("
# BEGIN
# OPEN :subordinates FOR
# SELECT employee_id, last_name, first_name
# FROM hr.employees
# WHERE manager_id = :id
# ORDER BY employee_id
# ;
# END;
# ").await?;
# let mut subordinates = Cursor::new(&stmt)?;
# stmt.execute(((":ID", 103), (":SUBORDINATES", &mut subordinates))).await?;
# subordinates.set_prefetch_rows(10)?;
# 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 "column size"
has to be changed before `query` is run.
# 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::Cursor;
# 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("
# 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 text = "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.";
# let mut id = 0;
# let count = stmt.execute(((":TEXT", &text), (":ID", &mut id)))?;
let stmt = session.prepare("
BEGIN
OPEN :long_texts FOR
SELECT text
FROM long_and_raw_test_data
WHERE id = :id
;
END;
")?;
let mut long_texts = Cursor::new(&stmt)?;
stmt.execute(((":ID", &id), (":LONG_TEXTS", &mut long_texts)))?;
long_texts.set_max_long_size(100_000);
let rows = long_texts.rows()?;
let row = rows.next()?.expect("first (and only) row");
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 text = "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.";
# let mut id = 0;
# let count = stmt.execute(((":TEXT", &text), (":ID", &mut id))).await?;
# let stmt = session.prepare("
# BEGIN
# OPEN :long_texts FOR
# SELECT text
# FROM long_and_raw_test_data
# WHERE id = :id
# ;
# END;
# ").await?;
# let mut long_texts = Cursor::new(&stmt)?;
# stmt.execute(((":ID", &id), (":LONG_TEXTS", &mut long_texts))).await?;
# long_texts.set_max_long_size(100_000);
# let rows = long_texts.rows().await?;
# let row = rows.next().await?.expect("first (and only) row");
# 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;
}
}