亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? system.data.sqlite.xml

?? SQLite
?? XML
?? 第 1 頁 / 共 5 頁
字號:
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>System.Data.SQLite</name>
    </assembly>
    <members>
        <member name="T:System.Data.SQLite.SQLiteConnection">
            <summary>
            SQLite implentation of DbConnection.
            </summary>
            <remarks>
            The <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString">ConnectionString</see> property of the SQLiteConnection class can contain the following parameter(s), delimited with a semi-colon:
            <list type="table">
            <listheader>
            <term>Parameter</term>
            <term>Values</term>
            <term>Required</term>
            <term>Default</term>
            </listheader>
            <item>
            <description>Data Source</description>
            <description>{filename}</description>
            <description>Y</description>
            <description></description>
            </item>
            <item>
            <description>Version</description>
            <description>3</description>
            <description>N</description>
            <description>3</description>
            </item>
            <item>
            <description>UseUTF16Encoding</description>
            <description><b>True</b><br/><b>False</b></description>
            <description>N</description>
            <description>False</description>
            </item>
            <item>
            <description>DateTimeFormat</description>
            <description><b>Ticks</b> - Use DateTime.Ticks<br/><b>ISO8601</b> - Use ISO8601 DateTime format</description>
            <description>N</description>
            <description>ISO8601</description>
            </item>
            <item>
            <description>BinaryGUID</description>
            <description><b>True</b> - Store GUID columns in binary form<br/><b>False</b> - Store GUID columns as text</description>
            <description>N</description>
            <description>True</description>
            </item>
            <item>
            <description>Cache Size</description>
            <description>{size in bytes}</description>
            <description>N</description>
            <description>2000</description>
            </item>
            <item>
            <description>Synchronous</description>
            <description><b>Normal</b> - Normal file flushing behavior<br/><b>Full</b> - Full flushing after all writes<br/><b>Off</b> - Underlying OS flushes I/O's</description>
            <description>N</description>
            <description>Normal</description>
            </item>
            <item>
            <description>Page Size</description>
            <description>{size in bytes}</description>
            <description>N</description>
            <description>1024</description>
            </item>
            <item>
            <description>Password</description>
            <description>{password}</description>
            <description>N</description>
            <description></description>
            </item>
            <item>
            <description>Enlist</description>
            <description><b>Y</b> - Automatically enlist in distributed transactions<br/><b>N</b> - No automatic enlistment</description>
            <description>N</description>
            <description>Y</description>
            </item>
            <item>
            <description>Pooling</description>
            <description><b>True</b> - Use connection pooling<br/><b>False</b> - Do not use connection pooling</description>
            <description>N</description>
            <description>False</description>
            </item>
            <item>
            <description>FailIfMissing</description>
            <description><b>True</b> - Don't create the database if it does not exist, throw an error instead<br/><b>False</b> - Automatically create the database if it does not exist</description>
            <description>N</description>
            <description>False</description>
            </item>
            <item>
            <description>Max Page Count</description>
            <description>{size in pages} - Limits the maximum number of pages (limits the size) of the database</description>
            <description>N</description>
            <description>0</description>
            </item>
            <item>
            <description>Legacy Format</description>
            <description><b>True</b> - Use the more compatible legacy 3.x database format<br/><b>False</b> - Use the newer 3.3x database format which compresses numbers more effectively</description>
            <description>N</description>
            <description>True</description>
            </item>
            <item>
            <description>Default Timeout</description>
            <description>{time in seconds}<br/>The default command timeout</description>
            <description>N</description>
            <description>30</description>
            </item>
            </list>
            </remarks>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._connectionState">
            <summary>
            State of the current connection
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._connectionString">
            <summary>
            The connection string
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._transactionLevel">
            <summary>
            Nesting level of the transactions open on the connection
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._enlistment">
            <summary>
            Whether or not the connection is enlisted in a distrubuted transaction
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._sql">
            <summary>
            The base SQLite object to interop with
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._dataSource">
            <summary>
            The database filename minus path and extension
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._password">
            <summary>
            Temporary password storage, emptied after the database has been opened
            </summary>
        </member>
        <member name="F:System.Data.SQLite.SQLiteConnection._defaultTimeout">
            <summary>
            Default command timeout
            </summary>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.#ctor">
            <overloads>
             Constructs a new SQLiteConnection object
             </overloads>
             <summary>
             Default constructor
             </summary>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.String)">
            <summary>
            Initializes the connection with the specified connection string
            </summary>
            <param name="connectionString">The connection string to use on the connection</param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.Data.SQLite.SQLiteConnection)">
            <summary>
            Clones the settings and connection string from an existing connection.  If the existing connection is already open, this
            function will open its own connection, enumerate any attached databases of the original connection, and automatically
            attach to them.
            </summary>
            <param name="connection"></param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.Clone">
            <summary>
            Creates a clone of the connection.  All attached databases and user-defined functions are cloned.  If the existing connection is open, the cloned connection 
            will also be opened.
            </summary>
            <returns></returns>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.Dispose(System.Boolean)">
            <summary>
            Disposes of the SQLiteConnection, closing it if it is active.
            </summary>
            <param name="disposing">True if the connection is being explicitly closed.</param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.CreateFile(System.String)">
            <summary>
            Creates a database file.  This just creates a zero-byte file which SQLite
            will turn into a database when the file is opened properly.
            </summary>
            <param name="databaseFileName">The file to create</param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.CompressFile(System.String)">
            <summary>
            On NTFS volumes, this function turns on the compression attribute for the given file.
            It must not be open or referenced at the time of the function call.
            </summary>
            <param name="databaseFileName">The file to compress</param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.DecompressFile(System.String)">
            <summary>
            On NTFS volumes, this function removes the compression attribute for the given file.
            It must not be open or referenced at the time of the function call.
            </summary>
            <param name="databaseFileName">The file to decompress</param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.OnStateChange(System.Data.ConnectionState)">
            <summary>
            Raises the state change event when the state of the connection changes
            </summary>
            <param name="newState">The new state.  If it is different from the previous state, an event is raised.</param>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel,System.Boolean)">
            <summary>
            Creates a new SQLiteTransaction if one isn't already active on the connection.
            </summary>
            <param name="isolationLevel">SQLite doesn't support varying isolation levels, so this parameter is ignored.</param>
            <param name="deferredLock">When TRUE, SQLite defers obtaining a write lock until a write operation is requested.
            When FALSE, a writelock is obtained immediately.  The default is TRUE, but in a multi-threaded multi-writer 
            environment, one may instead choose to lock the database immediately to avoid any possible writer deadlock.</param>
            <returns>Returns a SQLiteTransaction object.</returns>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Boolean)">
            <summary>
            Creates a new SQLiteTransaction if one isn't already active on the connection.
            </summary>
            <param name="deferredLock">When TRUE, SQLite defers obtaining a write lock until a write operation is requested.
            When FALSE, a writelock is obtained immediately.  The default is TRUE, but in a multi-threaded multi-writer 
            environment, one may instead choose to lock the database immediately to avoid any possible writer deadlock.</param>
            <returns>Returns a SQLiteTransaction object.</returns>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel)">
            <summary>
            Creates a new SQLiteTransaction if one isn't already active on the connection.
            </summary>
            <param name="isolationLevel">SQLite supports only serializable transactions.</param>
            <returns>Returns a SQLiteTransaction object.</returns>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction">
            <summary>
            Creates a new SQLiteTransaction if one isn't already active on the connection.
            </summary>
            <returns>Returns a SQLiteTransaction object.</returns>
        </member>
        <member name="M:System.Data.SQLite.SQLiteConnection.BeginDbTransaction(System.Data.IsolationLevel)">
            <summary>
            Forwards to the local BeginTransaction() function
            </summary>
            <param name="isolationLevel"></param>
            <returns></returns>
        </member>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕成人av| 91精品国产综合久久福利| 日韩色视频在线观看| 亚洲三级视频在线观看| 久久精品国产成人一区二区三区| 成人国产电影网| 2020国产精品久久精品美国| 亚洲国产成人av| 99视频精品免费视频| 精品国产91久久久久久久妲己| 一区二区三区欧美| 成人国产免费视频| 精品区一区二区| 亚洲免费三区一区二区| 国模少妇一区二区三区| 在线视频一区二区三| 国产性色一区二区| 精品一区二区日韩| 91精品国产色综合久久ai换脸 | 91丨九色丨蝌蚪丨老版| 日韩视频一区二区| 日产欧产美韩系列久久99| 91麻豆福利精品推荐| 国产精品三级视频| 国产黄色精品视频| 久久先锋影音av鲁色资源| 蜜桃在线一区二区三区| 欧美日韩久久久| 亚洲一区二区精品久久av| 91色九色蝌蚪| **性色生活片久久毛片| 成人爱爱电影网址| 国产精品卡一卡二卡三| 成人av在线资源网站| 国产精品久久久久婷婷二区次| 国产mv日韩mv欧美| 国产精品色一区二区三区| 成人性色生活片免费看爆迷你毛片| 久久久三级国产网站| 国产精品影视网| 欧美国产日韩亚洲一区| 成人一区二区三区视频在线观看| 久久九九全国免费| 成人国产一区二区三区精品| 国产精品久久久久久久久晋中 | 欧美午夜理伦三级在线观看| 亚洲男人的天堂av| 在线视频一区二区免费| 亚洲一区二区欧美| 9191成人精品久久| 捆绑紧缚一区二区三区视频| 欧美videos大乳护士334| 韩国毛片一区二区三区| 国产亚洲一区二区三区四区| 韩国一区二区三区| 亚洲国产成人在线| 国产成人福利片| 亚洲欧洲99久久| 91免费国产在线观看| 亚洲精品欧美在线| 欧美日韩国产小视频| 日韩电影在线观看网站| 日韩三级高清在线| 久久精品国产亚洲a| 精品国产青草久久久久福利| 国产精品一二三四区| 国产精品国产三级国产三级人妇 | 免费人成黄页网站在线一区二区| 日韩你懂的在线播放| 国产一区二区三区蝌蚪| 亚洲欧洲成人av每日更新| 色香蕉久久蜜桃| 亚洲成人一区在线| 日韩欧美国产不卡| 不卡高清视频专区| 亚洲高清免费观看| 日韩精品一区二区三区蜜臀| 国产露脸91国语对白| 亚洲美女区一区| 欧美蜜桃一区二区三区| 国模少妇一区二区三区| 亚洲另类在线视频| 日韩一区二区三区电影在线观看| 国产91露脸合集magnet| 亚洲一区二区三区自拍| www精品美女久久久tv| 91丨porny丨户外露出| 日韩成人免费在线| 国产精品成人一区二区艾草| 欧美卡1卡2卡| 成人h版在线观看| 天使萌一区二区三区免费观看| 国产亚洲精品久| 欧美三日本三级三级在线播放| 激情综合色丁香一区二区| 中文字幕一区二区日韩精品绯色| 欧美日韩高清在线| 国产999精品久久久久久| 视频在线在亚洲| 国产精品福利一区二区三区| 日韩一二在线观看| 色欧美日韩亚洲| 国产精品自拍三区| 日韩精品国产欧美| 亚洲欧美日韩小说| 精品国产乱码久久久久久久| 一本色道久久综合亚洲精品按摩| 免费不卡在线视频| 亚洲精品视频在线| 精品国精品国产| 欧美少妇xxx| aaa国产一区| 国产精品996| 美脚の诱脚舐め脚责91| 亚洲精品视频观看| 国产精品色在线观看| 欧美电影免费观看完整版| 欧洲亚洲精品在线| 成人久久视频在线观看| 紧缚奴在线一区二区三区| 性做久久久久久免费观看| 国产精品久久久久天堂| 久久久久久久久久美女| 欧美二区三区的天堂| 色狠狠一区二区三区香蕉| 丁香六月久久综合狠狠色| 九九国产精品视频| 天堂一区二区在线| 亚洲国产成人tv| 一区二区三区在线视频播放| 国产精品久久久久久久第一福利| 久久亚洲综合色| 日韩欧美激情四射| 欧美一区在线视频| 88在线观看91蜜桃国自产| 在线亚洲一区观看| 色悠悠久久综合| 91在线看国产| 不卡一二三区首页| 成人久久久精品乱码一区二区三区| 精品一区二区三区视频| 久久国内精品视频| 免费精品视频在线| 免费在线观看成人| 日韩成人免费看| 免费久久99精品国产| 日韩不卡手机在线v区| 丝袜a∨在线一区二区三区不卡| 亚洲制服丝袜av| 一区二区三区日韩欧美精品| 亚洲精品成人精品456| 综合分类小说区另类春色亚洲小说欧美| 日本一区二区久久| 国产精品美女一区二区| 中文字幕中文字幕在线一区 | 欧美亚洲一区二区在线观看| 色婷婷久久综合| 在线日韩av片| 欧美日韩精品电影| 欧美日产在线观看| 67194成人在线观看| 欧美一级夜夜爽| 欧美va亚洲va国产综合| 久久久久97国产精华液好用吗| 2023国产一二三区日本精品2022| 久久久久久夜精品精品免费| 国产日韩精品一区| 国产精品久久久久久久久免费桃花 | 成人综合婷婷国产精品久久蜜臀 | 久久精品国产免费| 狠狠色狠狠色综合日日91app| 韩国成人在线视频| 丰满岳乱妇一区二区三区| av电影在线观看完整版一区二区| 91蜜桃免费观看视频| 欧美色欧美亚洲另类二区| 日韩区在线观看| 欧美激情中文不卡| 亚洲欧美日韩电影| 日韩精品一级二级| 国产一区二区福利视频| 不卡电影免费在线播放一区| 91久久香蕉国产日韩欧美9色| 欧美无人高清视频在线观看| 欧美精品日韩一区| 久久午夜色播影院免费高清| 国产精品每日更新在线播放网址| 亚洲裸体xxx| 奇米精品一区二区三区四区 | 国产中文字幕一区| 成人激情午夜影院| 欧美日韩中文一区| 亚洲精品一区二区三区影院| 国产精品久久久久一区| 亚洲成a人v欧美综合天堂| 久久激五月天综合精品| av电影在线观看完整版一区二区| 91啪九色porn原创视频在线观看| 欧美欧美欧美欧美首页| 国产视频一区不卡|