Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add and improve doc comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | customDataTypes |
Files: | files | file ages | folders |
SHA1: |
6e7940954df02884bbdeca1b801d9369 |
User & Date: | mistachkin 2016-06-19 22:18:31.516 |
Context
2016-06-19
| ||
22:25 | More comment updates. check-in: b5a21691b4 user: mistachkin tags: customDataTypes | |
22:18 | Add and improve doc comments. check-in: 6e7940954d user: mistachkin tags: customDataTypes | |
21:24 | Further enhancements to the new test suite procedures. check-in: 3febc8dc31 user: mistachkin tags: customDataTypes | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
447 448 449 450 451 452 453 | } #endregion } ///////////////////////////////////////////////////////////////////////////////////////////////// /// <summary> | | > > | | > | | | | | > > | > | > | | | | 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 | } #endregion } ///////////////////////////////////////////////////////////////////////////////////////////////// /// <summary> /// This represents a method that will be called in response to a request to /// bind a parameter to a command. If an exception is thrown, it will cause /// the parameter binding operation to fail -AND- it will continue to unwind /// the call stack. /// </summary> /// <param name="convert"> /// The <see cref="SQLiteConvert" /> instance in use. /// </param> /// <param name="command"> /// The <see cref="SQLiteCommand" /> instance in use. /// </param> /// <param name="flags"> /// The flags associated with the <see cref="SQLiteConnection" /> instance /// in use. /// </param> /// <param name="parameter"> /// The <see cref="SQLiteParameter" /> instance being bound to the command. /// </param> /// <param name="typeName"> /// The database type name associated with this callback. /// </param> /// <param name="index"> /// The ordinal of the parameter being bound to the command. /// </param> /// <param name="userData"> /// The data originally used when registering this callback. /// </param> /// <param name="complete"> /// Non-zero if the default handling for the parameter binding call should /// be skipped (i.e. the parameter should not be bound at all). Great care /// should be used when setting this to non-zero. /// </param> public delegate void SQLiteBindValueCallback( SQLiteConvert convert, SQLiteCommand command, SQLiteConnectionFlags flags, SQLiteParameter parameter, string typeName, int index, object userData, out bool complete ); ///////////////////////////////////////////////////////////////////////////////////////////////// /// <summary> /// This represents a method that will be called in response to a request /// to read a value from a data reader. If an exception is thrown, it will /// cause the data reader operation to fail -AND- it will continue to unwind /// the call stack. /// </summary> /// <param name="convert"> /// The <see cref="SQLiteConvert" /> instance in use. /// </param> /// <param name="dataReader"> /// The <see cref="SQLiteDataReader" /> instance in use. /// </param> /// <param name="flags"> /// The flags associated with the <see cref="SQLiteConnection" /> instance /// in use. /// </param> /// <param name="eventArgs"> /// The parameter and return type data for the column being read from the /// data reader. /// </param> /// <param name="typeName"> /// The database type name associated with this callback. /// </param> /// <param name="index"> /// The zero based index of the column being read from the data reader. /// </param> /// <param name="userData"> /// The data originally used when registering this callback. /// </param> /// <param name="complete"> /// Non-zero if the default handling for the data reader call should be /// skipped. If this is set to non-zero and the necessary return value /// is unavailable or unsuitable, an exception will be thrown. /// </param> public delegate void SQLiteReadValueCallback( SQLiteConvert convert, SQLiteDataReader dataReader, SQLiteConnectionFlags flags, SQLiteReadValueEventArgs eventArgs, string typeName, |
︙ | ︙ |