System.Data.SQLite.xml 692 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Data.SQLite</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Data.SQLite.AssemblySourceIdAttribute">
  8. <summary>
  9. Defines a source code identifier custom attribute for an assembly
  10. manifest.
  11. </summary>
  12. </member>
  13. <member name="M:System.Data.SQLite.AssemblySourceIdAttribute.#ctor(System.String)">
  14. <summary>
  15. Constructs an instance of this attribute class using the specified
  16. source code identifier value.
  17. </summary>
  18. <param name="value">
  19. The source code identifier value to use.
  20. </param>
  21. </member>
  22. <member name="P:System.Data.SQLite.AssemblySourceIdAttribute.SourceId">
  23. <summary>
  24. Gets the source code identifier value.
  25. </summary>
  26. </member>
  27. <member name="T:System.Data.SQLite.AssemblySourceTimeStampAttribute">
  28. <summary>
  29. Defines a source code time-stamp custom attribute for an assembly
  30. manifest.
  31. </summary>
  32. </member>
  33. <member name="M:System.Data.SQLite.AssemblySourceTimeStampAttribute.#ctor(System.String)">
  34. <summary>
  35. Constructs an instance of this attribute class using the specified
  36. source code time-stamp value.
  37. </summary>
  38. <param name="value">
  39. The source code time-stamp value to use.
  40. </param>
  41. </member>
  42. <member name="P:System.Data.SQLite.AssemblySourceTimeStampAttribute.SourceTimeStamp">
  43. <summary>
  44. Gets the source code time-stamp value.
  45. </summary>
  46. </member>
  47. <member name="T:System.Data.SQLite.SQLiteLogCallback">
  48. <summary>
  49. This is the method signature for the SQLite core library logging callback
  50. function for use with sqlite3_log() and the SQLITE_CONFIG_LOG.
  51. WARNING: This delegate is used more-or-less directly by native code, do
  52. not modify its type signature.
  53. </summary>
  54. <param name="pUserData">
  55. The extra data associated with this message, if any.
  56. </param>
  57. <param name="errorCode">
  58. The error code associated with this message.
  59. </param>
  60. <param name="pMessage">
  61. The message string to be logged.
  62. </param>
  63. </member>
  64. <member name="T:System.Data.SQLite.SQLite3">
  65. <summary>
  66. This class implements SQLiteBase completely, and is the guts of the code that interop's SQLite with .NET
  67. </summary>
  68. </member>
  69. <member name="T:System.Data.SQLite.SQLiteBase">
  70. <summary>
  71. This internal class provides the foundation of SQLite support. It defines all the abstract members needed to implement
  72. a SQLite data provider, and inherits from SQLiteConvert which allows for simple translations of string to and from SQLite.
  73. </summary>
  74. </member>
  75. <member name="T:System.Data.SQLite.SQLiteConvert">
  76. <summary>
  77. This base class provides datatype conversion services for the SQLite provider.
  78. </summary>
  79. </member>
  80. <member name="F:System.Data.SQLite.SQLiteConvert.FallbackDefaultDbType">
  81. <summary>
  82. The fallback default database type when one cannot be obtained from an
  83. existing connection instance.
  84. </summary>
  85. </member>
  86. <member name="F:System.Data.SQLite.SQLiteConvert.FullFormat">
  87. <summary>
  88. The format string for DateTime values when using the InvariantCulture or CurrentCulture formats.
  89. </summary>
  90. </member>
  91. <member name="F:System.Data.SQLite.SQLiteConvert.FallbackDefaultTypeName">
  92. <summary>
  93. The fallback default database type name when one cannot be obtained from
  94. an existing connection instance.
  95. </summary>
  96. </member>
  97. <member name="F:System.Data.SQLite.SQLiteConvert.UnixEpoch">
  98. <summary>
  99. The value for the Unix epoch (e.g. January 1, 1970 at midnight, in UTC).
  100. </summary>
  101. </member>
  102. <member name="F:System.Data.SQLite.SQLiteConvert.OleAutomationEpochAsJulianDay">
  103. <summary>
  104. The value of the OLE Automation epoch represented as a Julian day. This
  105. field cannot be removed as the test suite relies upon it.
  106. </summary>
  107. </member>
  108. <member name="F:System.Data.SQLite.SQLiteConvert.MinimumJd">
  109. <summary>
  110. This is the minimum Julian Day value supported by this library
  111. (148731163200000).
  112. </summary>
  113. </member>
  114. <member name="F:System.Data.SQLite.SQLiteConvert.MaximumJd">
  115. <summary>
  116. This is the maximum Julian Day value supported by this library
  117. (464269060799000).
  118. </summary>
  119. </member>
  120. <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormats">
  121. <summary>
  122. An array of ISO-8601 DateTime formats that we support parsing.
  123. </summary>
  124. </member>
  125. <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormatUtc">
  126. <summary>
  127. The internal default format for UTC DateTime values when converting
  128. to a string.
  129. </summary>
  130. </member>
  131. <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormatLocal">
  132. <summary>
  133. The internal default format for local DateTime values when converting
  134. to a string.
  135. </summary>
  136. </member>
  137. <member name="F:System.Data.SQLite.SQLiteConvert._utf8">
  138. <summary>
  139. An UTF-8 Encoding instance, so we can convert strings to and from UTF-8
  140. </summary>
  141. </member>
  142. <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormat">
  143. <summary>
  144. The default DateTime format for this instance.
  145. </summary>
  146. </member>
  147. <member name="F:System.Data.SQLite.SQLiteConvert._datetimeKind">
  148. <summary>
  149. The default DateTimeKind for this instance.
  150. </summary>
  151. </member>
  152. <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormatString">
  153. <summary>
  154. The default DateTime format string for this instance.
  155. </summary>
  156. </member>
  157. <member name="M:System.Data.SQLite.SQLiteConvert.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String)">
  158. <summary>
  159. Initializes the conversion class
  160. </summary>
  161. <param name="fmt">The default date/time format to use for this instance</param>
  162. <param name="kind">The DateTimeKind to use.</param>
  163. <param name="fmtString">The DateTime format string to use.</param>
  164. </member>
  165. <member name="M:System.Data.SQLite.SQLiteConvert.ToUTF8(System.String)">
  166. <summary>
  167. Converts a string to a UTF-8 encoded byte array sized to include a null-terminating character.
  168. </summary>
  169. <param name="sourceText">The string to convert to UTF-8</param>
  170. <returns>A byte array containing the converted string plus an extra 0 terminating byte at the end of the array.</returns>
  171. </member>
  172. <member name="M:System.Data.SQLite.SQLiteConvert.ToUTF8(System.DateTime)">
  173. <summary>
  174. Convert a DateTime to a UTF-8 encoded, zero-terminated byte array.
  175. </summary>
  176. <remarks>
  177. This function is a convenience function, which first calls ToString() on the DateTime, and then calls ToUTF8() with the
  178. string result.
  179. </remarks>
  180. <param name="dateTimeValue">The DateTime to convert.</param>
  181. <returns>The UTF-8 encoded string, including a 0 terminating byte at the end of the array.</returns>
  182. </member>
  183. <member name="M:System.Data.SQLite.SQLiteConvert.ToString(System.IntPtr,System.Int32)">
  184. <summary>
  185. Converts a UTF-8 encoded IntPtr of the specified length into a .NET string
  186. </summary>
  187. <param name="nativestring">The pointer to the memory where the UTF-8 string is encoded</param>
  188. <param name="nativestringlen">The number of bytes to decode</param>
  189. <returns>A string containing the translated character(s)</returns>
  190. </member>
  191. <member name="M:System.Data.SQLite.SQLiteConvert.UTF8ToString(System.IntPtr,System.Int32)">
  192. <summary>
  193. Converts a UTF-8 encoded IntPtr of the specified length into a .NET string
  194. </summary>
  195. <param name="nativestring">The pointer to the memory where the UTF-8 string is encoded</param>
  196. <param name="nativestringlen">The number of bytes to decode</param>
  197. <returns>A string containing the translated character(s)</returns>
  198. </member>
  199. <member name="M:System.Data.SQLite.SQLiteConvert.isValidJd(System.Int64)">
  200. <summary>
  201. Checks if the specified <see cref="T:System.Int64"/> is within the
  202. supported range for a Julian Day value.
  203. </summary>
  204. <param name="jd">
  205. The Julian Day value to check.
  206. </param>
  207. <returns>
  208. Non-zero if the specified Julian Day value is in the supported
  209. range; otherwise, zero.
  210. </returns>
  211. </member>
  212. <member name="M:System.Data.SQLite.SQLiteConvert.DoubleToJd(System.Double)">
  213. <summary>
  214. Converts a Julian Day value from a <see cref="T:System.Double"/> to an
  215. <see cref="T:System.Int64"/>.
  216. </summary>
  217. <param name="julianDay">
  218. The Julian Day <see cref="T:System.Double"/> value to convert.
  219. </param>
  220. <returns>
  221. The resulting Julian Day <see cref="T:System.Int64"/> value.
  222. </returns>
  223. </member>
  224. <member name="M:System.Data.SQLite.SQLiteConvert.JdToDouble(System.Int64)">
  225. <summary>
  226. Converts a Julian Day value from an <see cref="T:System.Int64"/> to a
  227. <see cref="T:System.Double"/>.
  228. </summary>
  229. <param name="jd">
  230. The Julian Day <see cref="T:System.Int64"/> value to convert.
  231. </param>
  232. <returns>
  233. The resulting Julian Day <see cref="T:System.Double"/> value.
  234. </returns>
  235. </member>
  236. <member name="M:System.Data.SQLite.SQLiteConvert.computeYMD(System.Int64,System.Nullable{System.DateTime})">
  237. <summary>
  238. Converts a Julian Day value to a <see cref="T:System.DateTime"/>.
  239. This method was translated from the "computeYMD" function in the
  240. "date.c" file belonging to the SQLite core library.
  241. </summary>
  242. <param name="jd">
  243. The Julian Day value to convert.
  244. </param>
  245. <param name="badValue">
  246. The <see cref="T:System.DateTime"/> value to return in the event that the
  247. Julian Day is out of the supported range. If this value is null,
  248. an exception will be thrown instead.
  249. </param>
  250. <returns>
  251. A <see cref="T:System.DateTime"/> value that contains the year, month, and
  252. day values that are closest to the specified Julian Day value.
  253. </returns>
  254. </member>
  255. <member name="M:System.Data.SQLite.SQLiteConvert.computeHMS(System.Int64,System.Nullable{System.DateTime})">
  256. <summary>
  257. Converts a Julian Day value to a <see cref="T:System.DateTime"/>.
  258. This method was translated from the "computeHMS" function in the
  259. "date.c" file belonging to the SQLite core library.
  260. </summary>
  261. <param name="jd">
  262. The Julian Day value to convert.
  263. </param>
  264. <param name="badValue">
  265. The <see cref="T:System.DateTime"/> value to return in the event that the
  266. Julian Day value is out of the supported range. If this value is
  267. null, an exception will be thrown instead.
  268. </param>
  269. <returns>
  270. A <see cref="T:System.DateTime"/> value that contains the hour, minute, and
  271. second, and millisecond values that are closest to the specified
  272. Julian Day value.
  273. </returns>
  274. </member>
  275. <member name="M:System.Data.SQLite.SQLiteConvert.computeJD(System.DateTime)">
  276. <summary>
  277. Converts a <see cref="T:System.DateTime"/> to a Julian Day value.
  278. This method was translated from the "computeJD" function in
  279. the "date.c" file belonging to the SQLite core library.
  280. Since the range of Julian Day values supported by this method
  281. includes all possible (valid) values of a <see cref="T:System.DateTime"/>
  282. value, it should be extremely difficult for this method to
  283. raise an exception or return an undefined result.
  284. </summary>
  285. <param name="dateTime">
  286. The <see cref="T:System.DateTime"/> value to convert. This value
  287. will be within the range of <see cref="F:System.DateTime.MinValue"/>
  288. (00:00:00.0000000, January 1, 0001) to
  289. <see cref="F:System.DateTime.MaxValue"/> (23:59:59.9999999, December
  290. 31, 9999).
  291. </param>
  292. <returns>
  293. The nearest Julian Day value corresponding to the specified
  294. <see cref="T:System.DateTime"/> value.
  295. </returns>
  296. </member>
  297. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.String)">
  298. <summary>
  299. Converts a string into a DateTime, using the DateTimeFormat, DateTimeKind,
  300. and DateTimeFormatString specified for the connection when it was opened.
  301. </summary>
  302. <remarks>
  303. Acceptable ISO8601 DateTime formats are:
  304. <list type="bullet">
  305. <item><description>THHmmssK</description></item>
  306. <item><description>THHmmK</description></item>
  307. <item><description>HH:mm:ss.FFFFFFFK</description></item>
  308. <item><description>HH:mm:ssK</description></item>
  309. <item><description>HH:mmK</description></item>
  310. <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFFK</description></item>
  311. <item><description>yyyy-MM-dd HH:mm:ssK</description></item>
  312. <item><description>yyyy-MM-dd HH:mmK</description></item>
  313. <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFFK</description></item>
  314. <item><description>yyyy-MM-ddTHH:mmK</description></item>
  315. <item><description>yyyy-MM-ddTHH:mm:ssK</description></item>
  316. <item><description>yyyyMMddHHmmssK</description></item>
  317. <item><description>yyyyMMddHHmmK</description></item>
  318. <item><description>yyyyMMddTHHmmssFFFFFFFK</description></item>
  319. <item><description>THHmmss</description></item>
  320. <item><description>THHmm</description></item>
  321. <item><description>HH:mm:ss.FFFFFFF</description></item>
  322. <item><description>HH:mm:ss</description></item>
  323. <item><description>HH:mm</description></item>
  324. <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFF</description></item>
  325. <item><description>yyyy-MM-dd HH:mm:ss</description></item>
  326. <item><description>yyyy-MM-dd HH:mm</description></item>
  327. <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFF</description></item>
  328. <item><description>yyyy-MM-ddTHH:mm</description></item>
  329. <item><description>yyyy-MM-ddTHH:mm:ss</description></item>
  330. <item><description>yyyyMMddHHmmss</description></item>
  331. <item><description>yyyyMMddHHmm</description></item>
  332. <item><description>yyyyMMddTHHmmssFFFFFFF</description></item>
  333. <item><description>yyyy-MM-dd</description></item>
  334. <item><description>yyyyMMdd</description></item>
  335. <item><description>yy-MM-dd</description></item>
  336. </list>
  337. If the string cannot be matched to one of the above formats -OR-
  338. the DateTimeFormatString if one was provided, an exception will
  339. be thrown.
  340. </remarks>
  341. <param name="dateText">The string containing either a long integer number of 100-nanosecond units since
  342. System.DateTime.MinValue, a Julian day double, an integer number of seconds since the Unix epoch, a
  343. culture-independent formatted date and time string, a formatted date and time string in the current
  344. culture, or an ISO8601-format string.</param>
  345. <returns>A DateTime value</returns>
  346. </member>
  347. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.String,System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String)">
  348. <summary>
  349. Converts a string into a DateTime, using the specified DateTimeFormat,
  350. DateTimeKind and DateTimeFormatString.
  351. </summary>
  352. <remarks>
  353. Acceptable ISO8601 DateTime formats are:
  354. <list type="bullet">
  355. <item><description>THHmmssK</description></item>
  356. <item><description>THHmmK</description></item>
  357. <item><description>HH:mm:ss.FFFFFFFK</description></item>
  358. <item><description>HH:mm:ssK</description></item>
  359. <item><description>HH:mmK</description></item>
  360. <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFFK</description></item>
  361. <item><description>yyyy-MM-dd HH:mm:ssK</description></item>
  362. <item><description>yyyy-MM-dd HH:mmK</description></item>
  363. <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFFK</description></item>
  364. <item><description>yyyy-MM-ddTHH:mmK</description></item>
  365. <item><description>yyyy-MM-ddTHH:mm:ssK</description></item>
  366. <item><description>yyyyMMddHHmmssK</description></item>
  367. <item><description>yyyyMMddHHmmK</description></item>
  368. <item><description>yyyyMMddTHHmmssFFFFFFFK</description></item>
  369. <item><description>THHmmss</description></item>
  370. <item><description>THHmm</description></item>
  371. <item><description>HH:mm:ss.FFFFFFF</description></item>
  372. <item><description>HH:mm:ss</description></item>
  373. <item><description>HH:mm</description></item>
  374. <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFF</description></item>
  375. <item><description>yyyy-MM-dd HH:mm:ss</description></item>
  376. <item><description>yyyy-MM-dd HH:mm</description></item>
  377. <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFF</description></item>
  378. <item><description>yyyy-MM-ddTHH:mm</description></item>
  379. <item><description>yyyy-MM-ddTHH:mm:ss</description></item>
  380. <item><description>yyyyMMddHHmmss</description></item>
  381. <item><description>yyyyMMddHHmm</description></item>
  382. <item><description>yyyyMMddTHHmmssFFFFFFF</description></item>
  383. <item><description>yyyy-MM-dd</description></item>
  384. <item><description>yyyyMMdd</description></item>
  385. <item><description>yy-MM-dd</description></item>
  386. </list>
  387. If the string cannot be matched to one of the above formats -OR-
  388. the DateTimeFormatString if one was provided, an exception will
  389. be thrown.
  390. </remarks>
  391. <param name="dateText">The string containing either a long integer number of 100-nanosecond units since
  392. System.DateTime.MinValue, a Julian day double, an integer number of seconds since the Unix epoch, a
  393. culture-independent formatted date and time string, a formatted date and time string in the current
  394. culture, or an ISO8601-format string.</param>
  395. <param name="format">The SQLiteDateFormats to use.</param>
  396. <param name="kind">The DateTimeKind to use.</param>
  397. <param name="formatString">The DateTime format string to use.</param>
  398. <returns>A DateTime value</returns>
  399. </member>
  400. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Double)">
  401. <summary>
  402. Converts a julianday value into a DateTime
  403. </summary>
  404. <param name="julianDay">The value to convert</param>
  405. <returns>A .NET DateTime</returns>
  406. </member>
  407. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Double,System.DateTimeKind)">
  408. <summary>
  409. Converts a julianday value into a DateTime
  410. </summary>
  411. <param name="julianDay">The value to convert</param>
  412. <param name="kind">The DateTimeKind to use.</param>
  413. <returns>A .NET DateTime</returns>
  414. </member>
  415. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Int32,System.DateTimeKind)">
  416. <summary>
  417. Converts the specified number of seconds from the Unix epoch into a
  418. <see cref="T:System.DateTime"/> value.
  419. </summary>
  420. <param name="seconds">
  421. The number of whole seconds since the Unix epoch.
  422. </param>
  423. <param name="kind">
  424. Either Utc or Local time.
  425. </param>
  426. <returns>
  427. The new <see cref="T:System.DateTime"/> value.
  428. </returns>
  429. </member>
  430. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Int64,System.DateTimeKind)">
  431. <summary>
  432. Converts the specified number of ticks since the epoch into a
  433. <see cref="T:System.DateTime"/> value.
  434. </summary>
  435. <param name="ticks">
  436. The number of whole ticks since the epoch.
  437. </param>
  438. <param name="kind">
  439. Either Utc or Local time.
  440. </param>
  441. <returns>
  442. The new <see cref="T:System.DateTime"/> value.
  443. </returns>
  444. </member>
  445. <member name="M:System.Data.SQLite.SQLiteConvert.ToJulianDay(System.DateTime)">
  446. <summary>
  447. Converts a DateTime struct to a JulianDay double
  448. </summary>
  449. <param name="value">The DateTime to convert</param>
  450. <returns>The JulianDay value the Datetime represents</returns>
  451. </member>
  452. <member name="M:System.Data.SQLite.SQLiteConvert.ToUnixEpoch(System.DateTime)">
  453. <summary>
  454. Converts a DateTime struct to the whole number of seconds since the
  455. Unix epoch.
  456. </summary>
  457. <param name="value">The DateTime to convert</param>
  458. <returns>The whole number of seconds since the Unix epoch</returns>
  459. </member>
  460. <member name="M:System.Data.SQLite.SQLiteConvert.GetDateTimeKindFormat(System.DateTimeKind,System.String)">
  461. <summary>
  462. Returns the DateTime format string to use for the specified DateTimeKind.
  463. If <paramref name="formatString" /> is not null, it will be returned verbatim.
  464. </summary>
  465. <param name="kind">The DateTimeKind to use.</param>
  466. <param name="formatString">The DateTime format string to use.</param>
  467. <returns>
  468. The DateTime format string to use for the specified DateTimeKind.
  469. </returns>
  470. </member>
  471. <member name="M:System.Data.SQLite.SQLiteConvert.ToString(System.DateTime)">
  472. <summary>
  473. Converts a string into a DateTime, using the DateTimeFormat, DateTimeKind,
  474. and DateTimeFormatString specified for the connection when it was opened.
  475. </summary>
  476. <param name="dateValue">The DateTime value to convert</param>
  477. <returns>Either a string containing the long integer number of 100-nanosecond units since System.DateTime.MinValue, a
  478. Julian day double, an integer number of seconds since the Unix epoch, a culture-independent formatted date and time
  479. string, a formatted date and time string in the current culture, or an ISO8601-format date/time string.</returns>
  480. </member>
  481. <member name="M:System.Data.SQLite.SQLiteConvert.ToString(System.DateTime,System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String)">
  482. <summary>
  483. Converts a string into a DateTime, using the DateTimeFormat, DateTimeKind,
  484. and DateTimeFormatString specified for the connection when it was opened.
  485. </summary>
  486. <param name="dateValue">The DateTime value to convert</param>
  487. <param name="format">The SQLiteDateFormats to use.</param>
  488. <param name="kind">The DateTimeKind to use.</param>
  489. <param name="formatString">The DateTime format string to use.</param>
  490. <returns>Either a string containing the long integer number of 100-nanosecond units since System.DateTime.MinValue, a
  491. Julian day double, an integer number of seconds since the Unix epoch, a culture-independent formatted date and time
  492. string, a formatted date and time string in the current culture, or an ISO8601-format date/time string.</returns>
  493. </member>
  494. <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.IntPtr,System.Int32)">
  495. <summary>
  496. Internal function to convert a UTF-8 encoded IntPtr of the specified length to a DateTime.
  497. </summary>
  498. <remarks>
  499. This is a convenience function, which first calls ToString() on the IntPtr to convert it to a string, then calls
  500. ToDateTime() on the string to return a DateTime.
  501. </remarks>
  502. <param name="ptr">A pointer to the UTF-8 encoded string</param>
  503. <param name="len">The length in bytes of the string</param>
  504. <returns>The parsed DateTime value</returns>
  505. </member>
  506. <member name="M:System.Data.SQLite.SQLiteConvert.Split(System.String,System.Char)">
  507. <summary>
  508. Smart method of splitting a string. Skips quoted elements, removes the quotes.
  509. </summary>
  510. <remarks>
  511. This split function works somewhat like the String.Split() function in that it breaks apart a string into
  512. pieces and returns the pieces as an array. The primary differences are:
  513. <list type="bullet">
  514. <item><description>Only one character can be provided as a separator character</description></item>
  515. <item><description>Quoted text inside the string is skipped over when searching for the separator, and the quotes are removed.</description></item>
  516. </list>
  517. Thus, if splitting the following string looking for a comma:<br/>
  518. One,Two, "Three, Four", Five<br/>
  519. <br/>
  520. The resulting array would contain<br/>
  521. [0] One<br/>
  522. [1] Two<br/>
  523. [2] Three, Four<br/>
  524. [3] Five<br/>
  525. <br/>
  526. Note that the leading and trailing spaces were removed from each item during the split.
  527. </remarks>
  528. <param name="source">Source string to split apart</param>
  529. <param name="separator">Separator character</param>
  530. <returns>A string array of the split up elements</returns>
  531. </member>
  532. <member name="M:System.Data.SQLite.SQLiteConvert.NewSplit(System.String,System.Char,System.Boolean,System.String@)">
  533. <summary>
  534. Splits the specified string into multiple strings based on a separator
  535. and returns the result as an array of strings.
  536. </summary>
  537. <param name="value">
  538. The string to split into pieces based on the separator character. If
  539. this string is null, null will always be returned. If this string is
  540. empty, an array of zero strings will always be returned.
  541. </param>
  542. <param name="separator">
  543. The character used to divide the original string into sub-strings.
  544. This character cannot be a backslash or a double-quote; otherwise, no
  545. work will be performed and null will be returned.
  546. </param>
  547. <param name="keepQuote">
  548. If this parameter is non-zero, all double-quote characters will be
  549. retained in the returned list of strings; otherwise, they will be
  550. dropped.
  551. </param>
  552. <param name="error">
  553. Upon failure, this parameter will be modified to contain an appropriate
  554. error message.
  555. </param>
  556. <returns>
  557. The new array of strings or null if the input string is null -OR- the
  558. separator character is a backslash or a double-quote -OR- the string
  559. contains an unbalanced backslash or double-quote character.
  560. </returns>
  561. </member>
  562. <member name="M:System.Data.SQLite.SQLiteConvert.ToStringWithProvider(System.Object,System.IFormatProvider)">
  563. <summary>
  564. Queries and returns the string representation for an object, using the
  565. specified (or current) format provider.
  566. </summary>
  567. <param name="obj">
  568. The object instance to return the string representation for.
  569. </param>
  570. <param name="provider">
  571. The format provider to use -OR- null if the current format provider for
  572. the thread should be used instead.
  573. </param>
  574. <returns>
  575. The string representation for the object instance -OR- null if the
  576. object instance is also null.
  577. </returns>
  578. </member>
  579. <member name="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.Object,System.IFormatProvider,System.Boolean)">
  580. <summary>
  581. Attempts to convert an arbitrary object to the Boolean data type.
  582. Null object values are converted to false. Throws an exception
  583. upon failure.
  584. </summary>
  585. <param name="obj">
  586. The object value to convert.
  587. </param>
  588. <param name="provider">
  589. The format provider to use.
  590. </param>
  591. <param name="viaFramework">
  592. If non-zero, a string value will be converted using the
  593. <see cref="M:System.Convert.ToBoolean(System.Object,System.IFormatProvider)"/>
  594. method; otherwise, the <see cref="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.String)"/>
  595. method will be used.
  596. </param>
  597. <returns>
  598. The converted boolean value.
  599. </returns>
  600. </member>
  601. <member name="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.Object)">
  602. <summary>
  603. Convert a value to true or false.
  604. </summary>
  605. <param name="source">A string or number representing true or false</param>
  606. <returns></returns>
  607. </member>
  608. <member name="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.String)">
  609. <summary>
  610. Convert a string to true or false.
  611. </summary>
  612. <param name="source">A string representing true or false</param>
  613. <returns></returns>
  614. <remarks>
  615. "yes", "no", "y", "n", "0", "1", "on", "off" as well as Boolean.FalseString and Boolean.TrueString will all be
  616. converted to a proper boolean value.
  617. </remarks>
  618. </member>
  619. <member name="M:System.Data.SQLite.SQLiteConvert.SQLiteTypeToType(System.Data.SQLite.SQLiteType)">
  620. <summary>
  621. Converts a SQLiteType to a .NET Type object
  622. </summary>
  623. <param name="t">The SQLiteType to convert</param>
  624. <returns>Returns a .NET Type object</returns>
  625. </member>
  626. <member name="M:System.Data.SQLite.SQLiteConvert.TypeToDbType(System.Type)">
  627. <summary>
  628. For a given intrinsic type, return a DbType
  629. </summary>
  630. <param name="typ">The native type to convert</param>
  631. <returns>The corresponding (closest match) DbType</returns>
  632. </member>
  633. <member name="M:System.Data.SQLite.SQLiteConvert.DbTypeToColumnSize(System.Data.DbType)">
  634. <summary>
  635. Returns the ColumnSize for the given DbType
  636. </summary>
  637. <param name="typ">The DbType to get the size of</param>
  638. <returns></returns>
  639. </member>
  640. <member name="M:System.Data.SQLite.SQLiteConvert.GetDefaultTypeName(System.Data.SQLite.SQLiteConnection)">
  641. <summary>
  642. Determines the default database type name to be used when a
  643. per-connection value is not available.
  644. </summary>
  645. <param name="connection">
  646. The connection context for type mappings, if any.
  647. </param>
  648. <returns>
  649. The default database type name to use.
  650. </returns>
  651. </member>
  652. <member name="M:System.Data.SQLite.SQLiteConvert.DefaultTypeNameWarning(System.Data.DbType,System.Data.SQLite.SQLiteConnectionFlags,System.String)">
  653. <summary>
  654. If applicable, issues a trace log message warning about falling back to
  655. the default database type name.
  656. </summary>
  657. <param name="dbType">
  658. The database value type.
  659. </param>
  660. <param name="flags">
  661. The flags associated with the parent connection object.
  662. </param>
  663. <param name="typeName">
  664. The textual name of the database type.
  665. </param>
  666. </member>
  667. <member name="M:System.Data.SQLite.SQLiteConvert.DefaultDbTypeWarning(System.String,System.Data.SQLite.SQLiteConnectionFlags,System.Nullable{System.Data.DbType})">
  668. <summary>
  669. If applicable, issues a trace log message warning about falling back to
  670. the default database value type.
  671. </summary>
  672. <param name="typeName">
  673. The textual name of the database type.
  674. </param>
  675. <param name="flags">
  676. The flags associated with the parent connection object.
  677. </param>
  678. <param name="dbType">
  679. The database value type.
  680. </param>
  681. </member>
  682. <member name="M:System.Data.SQLite.SQLiteConvert.DbTypeToTypeName(System.Data.SQLite.SQLiteConnection,System.Data.DbType,System.Data.SQLite.SQLiteConnectionFlags)">
  683. <summary>
  684. For a given database value type, return the "closest-match" textual database type name.
  685. </summary>
  686. <param name="connection">The connection context for custom type mappings, if any.</param>
  687. <param name="dbType">The database value type.</param>
  688. <param name="flags">The flags associated with the parent connection object.</param>
  689. <returns>The type name or an empty string if it cannot be determined.</returns>
  690. </member>
  691. <member name="M:System.Data.SQLite.SQLiteConvert.DbTypeToType(System.Data.DbType)">
  692. <summary>
  693. Convert a DbType to a Type
  694. </summary>
  695. <param name="typ">The DbType to convert from</param>
  696. <returns>The closest-match .NET type</returns>
  697. </member>
  698. <member name="M:System.Data.SQLite.SQLiteConvert.TypeToAffinity(System.Type)">
  699. <summary>
  700. For a given type, return the closest-match SQLite TypeAffinity, which only understands a very limited subset of types.
  701. </summary>
  702. <param name="typ">The type to evaluate</param>
  703. <returns>The SQLite type affinity for that type.</returns>
  704. </member>
  705. <member name="M:System.Data.SQLite.SQLiteConvert.GetSQLiteDbTypeMap">
  706. <summary>
  707. Builds and returns a map containing the database column types
  708. recognized by this provider.
  709. </summary>
  710. <returns>
  711. A map containing the database column types recognized by this
  712. provider.
  713. </returns>
  714. </member>
  715. <member name="M:System.Data.SQLite.SQLiteConvert.IsStringDbType(System.Data.DbType)">
  716. <summary>
  717. Determines if a database type is considered to be a string.
  718. </summary>
  719. <param name="type">
  720. The database type to check.
  721. </param>
  722. <returns>
  723. Non-zero if the database type is considered to be a string, zero
  724. otherwise.
  725. </returns>
  726. </member>
  727. <member name="M:System.Data.SQLite.SQLiteConvert.SettingValueToString(System.Object)">
  728. <summary>
  729. Determines and returns the runtime configuration setting string that
  730. should be used in place of the specified object value.
  731. </summary>
  732. <param name="value">
  733. The object value to convert to a string.
  734. </param>
  735. <returns>
  736. Either the string to use in place of the object value -OR- null if it
  737. cannot be determined.
  738. </returns>
  739. </member>
  740. <member name="M:System.Data.SQLite.SQLiteConvert.GetDefaultDbType(System.Data.SQLite.SQLiteConnection)">
  741. <summary>
  742. Determines the default <see cref="T:System.Data.DbType"/> value to be used when a
  743. per-connection value is not available.
  744. </summary>
  745. <param name="connection">
  746. The connection context for type mappings, if any.
  747. </param>
  748. <returns>
  749. The default <see cref="T:System.Data.DbType"/> value to use.
  750. </returns>
  751. </member>
  752. <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeNull(System.String)">
  753. <summary>
  754. Determines if the specified textual value appears to be a
  755. <see cref="T:System.DBNull"/> value.
  756. </summary>
  757. <param name="text">
  758. The textual value to inspect.
  759. </param>
  760. <returns>
  761. Non-zero if the text looks like a <see cref="T:System.DBNull"/> value,
  762. zero otherwise.
  763. </returns>
  764. </member>
  765. <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeInt64(System.String)">
  766. <summary>
  767. Determines if the specified textual value appears to be an
  768. <see cref="T:System.Int64"/> value.
  769. </summary>
  770. <param name="text">
  771. The textual value to inspect.
  772. </param>
  773. <returns>
  774. Non-zero if the text looks like an <see cref="T:System.Int64"/> value,
  775. zero otherwise.
  776. </returns>
  777. </member>
  778. <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeDouble(System.String)">
  779. <summary>
  780. Determines if the specified textual value appears to be a
  781. <see cref="T:System.Double"/> value.
  782. </summary>
  783. <param name="text">
  784. The textual value to inspect.
  785. </param>
  786. <returns>
  787. Non-zero if the text looks like a <see cref="T:System.Double"/> value,
  788. zero otherwise.
  789. </returns>
  790. </member>
  791. <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeDateTime(System.Data.SQLite.SQLiteConvert,System.String)">
  792. <summary>
  793. Determines if the specified textual value appears to be a
  794. <see cref="T:System.DateTime"/> value.
  795. </summary>
  796. <param name="convert">
  797. The <see cref="T:System.Data.SQLite.SQLiteConvert"/> object instance configured with
  798. the chosen <see cref="T:System.DateTime"/> format.
  799. </param>
  800. <param name="text">
  801. The textual value to inspect.
  802. </param>
  803. <returns>
  804. Non-zero if the text looks like a <see cref="T:System.DateTime"/> in the
  805. configured format, zero otherwise.
  806. </returns>
  807. </member>
  808. <member name="M:System.Data.SQLite.SQLiteConvert.TypeNameToDbType(System.Data.SQLite.SQLiteConnection,System.String,System.Data.SQLite.SQLiteConnectionFlags)">
  809. <summary>
  810. For a given textual database type name, return the "closest-match" database type.
  811. This method is called during query result processing; therefore, its performance
  812. is critical.
  813. </summary>
  814. <param name="connection">The connection context for custom type mappings, if any.</param>
  815. <param name="typeName">The textual name of the database type to match.</param>
  816. <param name="flags">The flags associated with the parent connection object.</param>
  817. <returns>The .NET DBType the text evaluates to.</returns>
  818. </member>
  819. <member name="F:System.Data.SQLite.SQLiteBase.COR_E_EXCEPTION">
  820. <summary>
  821. The error code used for logging exceptions caught in user-provided
  822. code.
  823. </summary>
  824. </member>
  825. <member name="M:System.Data.SQLite.SQLiteBase.SetMemoryStatus(System.Boolean)">
  826. <summary>
  827. Sets the status of the memory usage tracking subsystem in the SQLite core library. By default, this is enabled.
  828. If this is disabled, memory usage tracking will not be performed. This is not really a per-connection value, it is
  829. global to the process.
  830. </summary>
  831. <param name="value">Non-zero to enable memory usage tracking, zero otherwise.</param>
  832. <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  833. </member>
  834. <member name="M:System.Data.SQLite.SQLiteBase.ReleaseMemory">
  835. <summary>
  836. Attempts to free as much heap memory as possible for the database connection.
  837. </summary>
  838. <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  839. </member>
  840. <member name="M:System.Data.SQLite.SQLiteBase.Shutdown">
  841. <summary>
  842. Shutdown the SQLite engine so that it can be restarted with different config options.
  843. We depend on auto initialization to recover.
  844. </summary>
  845. </member>
  846. <member name="M:System.Data.SQLite.SQLiteBase.IsOpen">
  847. <summary>
  848. Determines if the associated native connection handle is open.
  849. </summary>
  850. <returns>
  851. Non-zero if a database connection is open.
  852. </returns>
  853. </member>
  854. <member name="M:System.Data.SQLite.SQLiteBase.Open(System.String,System.Data.SQLite.SQLiteConnectionFlags,System.Data.SQLite.SQLiteOpenFlagsEnum,System.Int32,System.Boolean)">
  855. <summary>
  856. Opens a database.
  857. </summary>
  858. <remarks>
  859. Implementers should call SQLiteFunction.BindFunctions() and save the array after opening a connection
  860. to bind all attributed user-defined functions and collating sequences to the new connection.
  861. </remarks>
  862. <param name="strFilename">The filename of the database to open. SQLite automatically creates it if it doesn't exist.</param>
  863. <param name="connectionFlags">The flags associated with the parent connection object</param>
  864. <param name="openFlags">The open flags to use when creating the connection</param>
  865. <param name="maxPoolSize">The maximum size of the pool for the given filename</param>
  866. <param name="usePool">If true, the connection can be pulled from the connection pool</param>
  867. </member>
  868. <member name="M:System.Data.SQLite.SQLiteBase.Close(System.Boolean)">
  869. <summary>
  870. Closes the currently-open database.
  871. </summary>
  872. <remarks>
  873. After the database has been closed implemeters should call SQLiteFunction.UnbindFunctions() to deallocate all interop allocated
  874. memory associated with the user-defined functions and collating sequences tied to the closed connection.
  875. </remarks>
  876. <param name="canThrow">Non-zero if the operation is allowed to throw exceptions, zero otherwise.</param>
  877. </member>
  878. <member name="M:System.Data.SQLite.SQLiteBase.SetTimeout(System.Int32)">
  879. <summary>
  880. Sets the busy timeout on the connection. SQLiteCommand will call this before executing any command.
  881. </summary>
  882. <param name="nTimeoutMS">The number of milliseconds to wait before returning SQLITE_BUSY</param>
  883. </member>
  884. <member name="M:System.Data.SQLite.SQLiteBase.GetLastError">
  885. <summary>
  886. Returns the text of the last error issued by SQLite
  887. </summary>
  888. <returns></returns>
  889. </member>
  890. <member name="M:System.Data.SQLite.SQLiteBase.GetLastError(System.String)">
  891. <summary>
  892. Returns the text of the last error issued by SQLite -OR- the specified default error text if
  893. none is available from the SQLite core library.
  894. </summary>
  895. <param name="defValue">
  896. The error text to return in the event that one is not available from the SQLite core library.
  897. </param>
  898. <returns>
  899. The error text.
  900. </returns>
  901. </member>
  902. <member name="M:System.Data.SQLite.SQLiteBase.ClearPool">
  903. <summary>
  904. When pooling is enabled, force this connection to be disposed rather than returned to the pool
  905. </summary>
  906. </member>
  907. <member name="M:System.Data.SQLite.SQLiteBase.CountPool">
  908. <summary>
  909. When pooling is enabled, returns the number of pool entries matching the current file name.
  910. </summary>
  911. <returns>The number of pool entries matching the current file name.</returns>
  912. </member>
  913. <member name="M:System.Data.SQLite.SQLiteBase.Prepare(System.Data.SQLite.SQLiteConnection,System.String,System.Data.SQLite.SQLiteStatement,System.UInt32,System.String@)">
  914. <summary>
  915. Prepares a SQL statement for execution.
  916. </summary>
  917. <param name="cnn">The source connection preparing the command. Can be null for any caller except LINQ</param>
  918. <param name="strSql">The SQL command text to prepare</param>
  919. <param name="previous">The previous statement in a multi-statement command, or null if no previous statement exists</param>
  920. <param name="timeoutMS">The timeout to wait before aborting the prepare</param>
  921. <param name="strRemain">The remainder of the statement that was not processed. Each call to prepare parses the
  922. SQL up to to either the end of the text or to the first semi-colon delimiter. The remaining text is returned
  923. here for a subsequent call to Prepare() until all the text has been processed.</param>
  924. <returns>Returns an initialized SQLiteStatement.</returns>
  925. </member>
  926. <member name="M:System.Data.SQLite.SQLiteBase.Step(System.Data.SQLite.SQLiteStatement)">
  927. <summary>
  928. Steps through a prepared statement.
  929. </summary>
  930. <param name="stmt">The SQLiteStatement to step through</param>
  931. <returns>True if a row was returned, False if not.</returns>
  932. </member>
  933. <member name="M:System.Data.SQLite.SQLiteBase.IsReadOnly(System.Data.SQLite.SQLiteStatement)">
  934. <summary>
  935. Returns non-zero if the specified statement is read-only in nature.
  936. </summary>
  937. <param name="stmt">The statement to check.</param>
  938. <returns>True if the outer query is read-only.</returns>
  939. </member>
  940. <member name="M:System.Data.SQLite.SQLiteBase.Reset(System.Data.SQLite.SQLiteStatement)">
  941. <summary>
  942. Resets a prepared statement so it can be executed again. If the error returned is SQLITE_SCHEMA,
  943. transparently attempt to rebuild the SQL statement and throw an error if that was not possible.
  944. </summary>
  945. <param name="stmt">The statement to reset</param>
  946. <returns>Returns -1 if the schema changed while resetting, 0 if the reset was sucessful or 6 (SQLITE_LOCKED) if the reset failed due to a lock</returns>
  947. </member>
  948. <member name="M:System.Data.SQLite.SQLiteBase.Cancel">
  949. <summary>
  950. Attempts to interrupt the query currently executing on the associated
  951. native database connection.
  952. </summary>
  953. </member>
  954. <member name="M:System.Data.SQLite.SQLiteBase.BindFunction(System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction,System.Data.SQLite.SQLiteConnectionFlags)">
  955. <summary>
  956. This function binds a user-defined functions to the connection.
  957. </summary>
  958. <param name="functionAttribute">
  959. The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  960. the metadata for the function to be bound.
  961. </param>
  962. <param name="function">
  963. The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  964. function to be bound.
  965. </param>
  966. <param name="flags">
  967. The flags associated with the parent connection object.
  968. </param>
  969. </member>
  970. <member name="M:System.Data.SQLite.SQLiteBase.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  971. <summary>
  972. Calls the native SQLite core library in order to create a disposable
  973. module containing the implementation of a virtual table.
  974. </summary>
  975. <param name="module">
  976. The module object to be used when creating the native disposable module.
  977. </param>
  978. <param name="flags">
  979. The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  980. </param>
  981. </member>
  982. <member name="M:System.Data.SQLite.SQLiteBase.DisposeModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  983. <summary>
  984. Calls the native SQLite core library in order to cleanup the resources
  985. associated with a module containing the implementation of a virtual table.
  986. </summary>
  987. <param name="module">
  988. The module object previously passed to the <see cref="M:System.Data.SQLite.SQLiteBase.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)"/>
  989. method.
  990. </param>
  991. <param name="flags">
  992. The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  993. </param>
  994. </member>
  995. <member name="M:System.Data.SQLite.SQLiteBase.DeclareVirtualTable(System.Data.SQLite.SQLiteModule,System.String,System.String@)">
  996. <summary>
  997. Calls the native SQLite core library in order to declare a virtual table
  998. in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  999. or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  1000. </summary>
  1001. <param name="module">
  1002. The virtual table module that is to be responsible for the virtual table
  1003. being declared.
  1004. </param>
  1005. <param name="strSql">
  1006. The string containing the SQL statement describing the virtual table to
  1007. be declared.
  1008. </param>
  1009. <param name="error">
  1010. Upon success, the contents of this parameter are undefined. Upon failure,
  1011. it should contain an appropriate error message.
  1012. </param>
  1013. <returns>
  1014. A standard SQLite return code.
  1015. </returns>
  1016. </member>
  1017. <member name="M:System.Data.SQLite.SQLiteBase.DeclareVirtualFunction(System.Data.SQLite.SQLiteModule,System.Int32,System.String,System.String@)">
  1018. <summary>
  1019. Calls the native SQLite core library in order to declare a virtual table
  1020. function in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  1021. or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  1022. </summary>
  1023. <param name="module">
  1024. The virtual table module that is to be responsible for the virtual table
  1025. function being declared.
  1026. </param>
  1027. <param name="argumentCount">
  1028. The number of arguments to the function being declared.
  1029. </param>
  1030. <param name="name">
  1031. The name of the function being declared.
  1032. </param>
  1033. <param name="error">
  1034. Upon success, the contents of this parameter are undefined. Upon failure,
  1035. it should contain an appropriate error message.
  1036. </param>
  1037. <returns>
  1038. A standard SQLite return code.
  1039. </returns>
  1040. </member>
  1041. <member name="M:System.Data.SQLite.SQLiteBase.SetLoadExtension(System.Boolean)">
  1042. <summary>
  1043. Enables or disabled extension loading by SQLite.
  1044. </summary>
  1045. <param name="bOnOff">
  1046. True to enable loading of extensions, false to disable.
  1047. </param>
  1048. </member>
  1049. <member name="M:System.Data.SQLite.SQLiteBase.LoadExtension(System.String,System.String)">
  1050. <summary>
  1051. Loads a SQLite extension library from the named file.
  1052. </summary>
  1053. <param name="fileName">
  1054. The name of the dynamic link library file containing the extension.
  1055. </param>
  1056. <param name="procName">
  1057. The name of the exported function used to initialize the extension.
  1058. If null, the default "sqlite3_extension_init" will be used.
  1059. </param>
  1060. </member>
  1061. <member name="M:System.Data.SQLite.SQLiteBase.SetExtendedResultCodes(System.Boolean)">
  1062. <summary>
  1063. Enables or disabled extened result codes returned by SQLite
  1064. </summary>
  1065. <param name="bOnOff">true to enable extended result codes, false to disable.</param>
  1066. <returns></returns>
  1067. </member>
  1068. <member name="M:System.Data.SQLite.SQLiteBase.ResultCode">
  1069. <summary>
  1070. Returns the numeric result code for the most recent failed SQLite API call
  1071. associated with the database connection.
  1072. </summary>
  1073. <returns>Result code</returns>
  1074. </member>
  1075. <member name="M:System.Data.SQLite.SQLiteBase.ExtendedResultCode">
  1076. <summary>
  1077. Returns the extended numeric result code for the most recent failed SQLite API call
  1078. associated with the database connection.
  1079. </summary>
  1080. <returns>Extended result code</returns>
  1081. </member>
  1082. <member name="M:System.Data.SQLite.SQLiteBase.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  1083. <summary>
  1084. Add a log message via the SQLite sqlite3_log interface.
  1085. </summary>
  1086. <param name="iErrCode">Error code to be logged with the message.</param>
  1087. <param name="zMessage">String to be logged. Unlike the SQLite sqlite3_log()
  1088. interface, this should be pre-formatted. Consider using the
  1089. String.Format() function.</param>
  1090. <returns></returns>
  1091. </member>
  1092. <member name="M:System.Data.SQLite.SQLiteBase.IsInitialized">
  1093. <summary>
  1094. Checks if the SQLite core library has been initialized in the current process.
  1095. </summary>
  1096. <returns>
  1097. Non-zero if the SQLite core library has been initialized in the current process,
  1098. zero otherwise.
  1099. </returns>
  1100. </member>
  1101. <member name="M:System.Data.SQLite.SQLiteBase.InitializeBackup(System.Data.SQLite.SQLiteConnection,System.String,System.String)">
  1102. <summary>
  1103. Creates a new SQLite backup object based on the provided destination
  1104. database connection. The source database connection is the one
  1105. associated with this object. The source and destination database
  1106. connections cannot be the same.
  1107. </summary>
  1108. <param name="destCnn">The destination database connection.</param>
  1109. <param name="destName">The destination database name.</param>
  1110. <param name="sourceName">The source database name.</param>
  1111. <returns>The newly created backup object.</returns>
  1112. </member>
  1113. <member name="M:System.Data.SQLite.SQLiteBase.StepBackup(System.Data.SQLite.SQLiteBackup,System.Int32,System.Boolean@)">
  1114. <summary>
  1115. Copies up to N pages from the source database to the destination
  1116. database associated with the specified backup object.
  1117. </summary>
  1118. <param name="backup">The backup object to use.</param>
  1119. <param name="nPage">
  1120. The number of pages to copy or negative to copy all remaining pages.
  1121. </param>
  1122. <param name="retry">
  1123. Set to true if the operation needs to be retried due to database
  1124. locking issues.
  1125. </param>
  1126. <returns>
  1127. True if there are more pages to be copied, false otherwise.
  1128. </returns>
  1129. </member>
  1130. <member name="M:System.Data.SQLite.SQLiteBase.RemainingBackup(System.Data.SQLite.SQLiteBackup)">
  1131. <summary>
  1132. Returns the number of pages remaining to be copied from the source
  1133. database to the destination database associated with the specified
  1134. backup object.
  1135. </summary>
  1136. <param name="backup">The backup object to check.</param>
  1137. <returns>The number of pages remaining to be copied.</returns>
  1138. </member>
  1139. <member name="M:System.Data.SQLite.SQLiteBase.PageCountBackup(System.Data.SQLite.SQLiteBackup)">
  1140. <summary>
  1141. Returns the total number of pages in the source database associated
  1142. with the specified backup object.
  1143. </summary>
  1144. <param name="backup">The backup object to check.</param>
  1145. <returns>The total number of pages in the source database.</returns>
  1146. </member>
  1147. <member name="M:System.Data.SQLite.SQLiteBase.FinishBackup(System.Data.SQLite.SQLiteBackup)">
  1148. <summary>
  1149. Destroys the backup object, rolling back any backup that may be in
  1150. progess.
  1151. </summary>
  1152. <param name="backup">The backup object to destroy.</param>
  1153. </member>
  1154. <member name="M:System.Data.SQLite.SQLiteBase.FallbackGetErrorString(System.Data.SQLite.SQLiteErrorCode)">
  1155. <summary>
  1156. Returns the error message for the specified SQLite return code using
  1157. the internal static lookup table.
  1158. </summary>
  1159. <param name="rc">The SQLite return code.</param>
  1160. <returns>The error message or null if it cannot be found.</returns>
  1161. </member>
  1162. <member name="P:System.Data.SQLite.SQLiteBase.Version">
  1163. <summary>
  1164. Returns a string representing the active version of SQLite
  1165. </summary>
  1166. </member>
  1167. <member name="P:System.Data.SQLite.SQLiteBase.VersionNumber">
  1168. <summary>
  1169. Returns an integer representing the active version of SQLite
  1170. </summary>
  1171. </member>
  1172. <member name="P:System.Data.SQLite.SQLiteBase.LastInsertRowId">
  1173. <summary>
  1174. Returns the rowid of the most recent successful INSERT into the database from this connection.
  1175. </summary>
  1176. </member>
  1177. <member name="P:System.Data.SQLite.SQLiteBase.Changes">
  1178. <summary>
  1179. Returns the number of changes the last executing insert/update caused.
  1180. </summary>
  1181. </member>
  1182. <member name="P:System.Data.SQLite.SQLiteBase.MemoryUsed">
  1183. <summary>
  1184. Returns the amount of memory (in bytes) currently in use by the SQLite core library. This is not really a per-connection
  1185. value, it is global to the process.
  1186. </summary>
  1187. </member>
  1188. <member name="P:System.Data.SQLite.SQLiteBase.MemoryHighwater">
  1189. <summary>
  1190. Returns the maximum amount of memory (in bytes) used by the SQLite core library since the high-water mark was last reset.
  1191. This is not really a per-connection value, it is global to the process.
  1192. </summary>
  1193. </member>
  1194. <member name="P:System.Data.SQLite.SQLiteBase.OwnHandle">
  1195. <summary>
  1196. Returns non-zero if the underlying native connection handle is owned by this instance.
  1197. </summary>
  1198. </member>
  1199. <member name="P:System.Data.SQLite.SQLiteBase.AutoCommit">
  1200. <summary>
  1201. Returns non-zero if the given database connection is in autocommit mode.
  1202. Autocommit mode is on by default. Autocommit mode is disabled by a BEGIN
  1203. statement. Autocommit mode is re-enabled by a COMMIT or ROLLBACK.
  1204. </summary>
  1205. </member>
  1206. <member name="F:System.Data.SQLite.SQLite3._sql">
  1207. <summary>
  1208. The opaque pointer returned to us by the sqlite provider
  1209. </summary>
  1210. </member>
  1211. <member name="F:System.Data.SQLite.SQLite3._functions">
  1212. <summary>
  1213. The user-defined functions registered on this connection
  1214. </summary>
  1215. </member>
  1216. <member name="F:System.Data.SQLite.SQLite3._modules">
  1217. <summary>
  1218. The modules created using this connection.
  1219. </summary>
  1220. </member>
  1221. <member name="M:System.Data.SQLite.SQLite3.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String,System.IntPtr,System.String,System.Boolean)">
  1222. <summary>
  1223. Constructs the object used to interact with the SQLite core library
  1224. using the UTF-8 text encoding.
  1225. </summary>
  1226. <param name="fmt">
  1227. The DateTime format to be used when converting string values to a
  1228. DateTime and binding DateTime parameters.
  1229. </param>
  1230. <param name="kind">
  1231. The <see cref="T:System.DateTimeKind"/> to be used when creating DateTime
  1232. values.
  1233. </param>
  1234. <param name="fmtString">
  1235. The format string to be used when parsing and formatting DateTime
  1236. values.
  1237. </param>
  1238. <param name="db">
  1239. The native handle to be associated with the database connection.
  1240. </param>
  1241. <param name="fileName">
  1242. The fully qualified file name associated with <paramref name="db "/>.
  1243. </param>
  1244. <param name="ownHandle">
  1245. Non-zero if the newly created object instance will need to dispose
  1246. of <paramref name="db"/> when it is no longer needed.
  1247. </param>
  1248. </member>
  1249. <member name="M:System.Data.SQLite.SQLite3.DisposeModules">
  1250. <summary>
  1251. This method attempts to dispose of all the <see cref="T:System.Data.SQLite.SQLiteModule"/> derived
  1252. object instances currently associated with the native database connection.
  1253. </summary>
  1254. </member>
  1255. <member name="M:System.Data.SQLite.SQLite3.Cancel">
  1256. <summary>
  1257. Attempts to interrupt the query currently executing on the associated
  1258. native database connection.
  1259. </summary>
  1260. </member>
  1261. <member name="M:System.Data.SQLite.SQLite3.BindFunction(System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction,System.Data.SQLite.SQLiteConnectionFlags)">
  1262. <summary>
  1263. This function binds a user-defined function to the connection.
  1264. </summary>
  1265. <param name="functionAttribute">
  1266. The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  1267. the metadata for the function to be bound.
  1268. </param>
  1269. <param name="function">
  1270. The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  1271. function to be bound.
  1272. </param>
  1273. <param name="flags">
  1274. The flags associated with the parent connection object.
  1275. </param>
  1276. </member>
  1277. <member name="M:System.Data.SQLite.SQLite3.ReleaseMemory">
  1278. <summary>
  1279. Attempts to free as much heap memory as possible for the database connection.
  1280. </summary>
  1281. <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  1282. </member>
  1283. <member name="M:System.Data.SQLite.SQLite3.StaticReleaseMemory(System.Int32,System.Boolean,System.Boolean,System.Int32@,System.Boolean@,System.UInt32@)">
  1284. <summary>
  1285. Attempts to free N bytes of heap memory by deallocating non-essential memory
  1286. allocations held by the database library. Memory used to cache database pages
  1287. to improve performance is an example of non-essential memory. This is a no-op
  1288. returning zero if the SQLite core library was not compiled with the compile-time
  1289. option SQLITE_ENABLE_MEMORY_MANAGEMENT. Optionally, attempts to reset and/or
  1290. compact the Win32 native heap, if applicable.
  1291. </summary>
  1292. <param name="nBytes">
  1293. The requested number of bytes to free.
  1294. </param>
  1295. <param name="reset">
  1296. Non-zero to attempt a heap reset.
  1297. </param>
  1298. <param name="compact">
  1299. Non-zero to attempt heap compaction.
  1300. </param>
  1301. <param name="nFree">
  1302. The number of bytes actually freed. This value may be zero.
  1303. </param>
  1304. <param name="resetOk">
  1305. This value will be non-zero if the heap reset was successful.
  1306. </param>
  1307. <param name="nLargest">
  1308. The size of the largest committed free block in the heap, in bytes.
  1309. This value will be zero unless heap compaction is enabled.
  1310. </param>
  1311. <returns>
  1312. A standard SQLite return code (i.e. zero for success and non-zero
  1313. for failure).
  1314. </returns>
  1315. </member>
  1316. <member name="M:System.Data.SQLite.SQLite3.Shutdown">
  1317. <summary>
  1318. Shutdown the SQLite engine so that it can be restarted with different
  1319. configuration options. We depend on auto initialization to recover.
  1320. </summary>
  1321. <returns>Returns a standard SQLite result code.</returns>
  1322. </member>
  1323. <member name="M:System.Data.SQLite.SQLite3.StaticShutdown(System.Boolean)">
  1324. <summary>
  1325. Shutdown the SQLite engine so that it can be restarted with different
  1326. configuration options. We depend on auto initialization to recover.
  1327. </summary>
  1328. <param name="directories">
  1329. Non-zero to reset the database and temporary directories to their
  1330. default values, which should be null for both. This parameter has no
  1331. effect on non-Windows operating systems.
  1332. </param>
  1333. <returns>Returns a standard SQLite result code.</returns>
  1334. </member>
  1335. <member name="M:System.Data.SQLite.SQLite3.IsOpen">
  1336. <summary>
  1337. Determines if the associated native connection handle is open.
  1338. </summary>
  1339. <returns>
  1340. Non-zero if the associated native connection handle is open.
  1341. </returns>
  1342. </member>
  1343. <member name="F:System.Data.SQLite.SQLite3.have_errstr">
  1344. <summary>
  1345. Has the sqlite3_errstr() core library API been checked for yet?
  1346. If so, is it present?
  1347. </summary>
  1348. </member>
  1349. <member name="M:System.Data.SQLite.SQLite3.GetErrorString(System.Data.SQLite.SQLiteErrorCode)">
  1350. <summary>
  1351. Returns the error message for the specified SQLite return code using
  1352. the sqlite3_errstr() function, falling back to the internal lookup
  1353. table if necessary.
  1354. </summary>
  1355. <param name="rc">The SQLite return code.</param>
  1356. <returns>The error message or null if it cannot be found.</returns>
  1357. </member>
  1358. <member name="F:System.Data.SQLite.SQLite3.have_stmt_readonly">
  1359. <summary>
  1360. Has the sqlite3_stmt_readonly() core library API been checked for yet?
  1361. If so, is it present?
  1362. </summary>
  1363. </member>
  1364. <member name="M:System.Data.SQLite.SQLite3.IsReadOnly(System.Data.SQLite.SQLiteStatement)">
  1365. <summary>
  1366. Returns non-zero if the specified statement is read-only in nature.
  1367. </summary>
  1368. <param name="stmt">The statement to check.</param>
  1369. <returns>True if the outer query is read-only.</returns>
  1370. </member>
  1371. <member name="F:System.Data.SQLite.SQLite3.forceLogPrepare">
  1372. <summary>
  1373. This field is used to keep track of whether or not the
  1374. "SQLite_ForceLogPrepare" environment variable has been queried. If so,
  1375. it will only be non-zero if the environment variable was present.
  1376. </summary>
  1377. </member>
  1378. <member name="M:System.Data.SQLite.SQLite3.ForceLogPrepare">
  1379. <summary>
  1380. Determines if all calls to prepare a SQL query will be logged,
  1381. regardless of the flags for the associated connection.
  1382. </summary>
  1383. <returns>
  1384. Non-zero to log all calls to prepare a SQL query.
  1385. </returns>
  1386. </member>
  1387. <member name="M:System.Data.SQLite.SQLite3.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  1388. <summary>
  1389. Calls the native SQLite core library in order to create a disposable
  1390. module containing the implementation of a virtual table.
  1391. </summary>
  1392. <param name="module">
  1393. The module object to be used when creating the native disposable module.
  1394. </param>
  1395. <param name="flags">
  1396. The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  1397. </param>
  1398. </member>
  1399. <member name="M:System.Data.SQLite.SQLite3.DisposeModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  1400. <summary>
  1401. Calls the native SQLite core library in order to cleanup the resources
  1402. associated with a module containing the implementation of a virtual table.
  1403. </summary>
  1404. <param name="module">
  1405. The module object previously passed to the <see cref="M:System.Data.SQLite.SQLite3.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)"/>
  1406. method.
  1407. </param>
  1408. <param name="flags">
  1409. The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  1410. </param>
  1411. </member>
  1412. <member name="M:System.Data.SQLite.SQLite3.DeclareVirtualTable(System.Data.SQLite.SQLiteModule,System.String,System.String@)">
  1413. <summary>
  1414. Calls the native SQLite core library in order to declare a virtual table
  1415. in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  1416. or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  1417. </summary>
  1418. <param name="module">
  1419. The virtual table module that is to be responsible for the virtual table
  1420. being declared.
  1421. </param>
  1422. <param name="strSql">
  1423. The string containing the SQL statement describing the virtual table to
  1424. be declared.
  1425. </param>
  1426. <param name="error">
  1427. Upon success, the contents of this parameter are undefined. Upon failure,
  1428. it should contain an appropriate error message.
  1429. </param>
  1430. <returns>
  1431. A standard SQLite return code.
  1432. </returns>
  1433. </member>
  1434. <member name="M:System.Data.SQLite.SQLite3.DeclareVirtualFunction(System.Data.SQLite.SQLiteModule,System.Int32,System.String,System.String@)">
  1435. <summary>
  1436. Calls the native SQLite core library in order to declare a virtual table
  1437. function in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  1438. or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  1439. </summary>
  1440. <param name="module">
  1441. The virtual table module that is to be responsible for the virtual table
  1442. function being declared.
  1443. </param>
  1444. <param name="argumentCount">
  1445. The number of arguments to the function being declared.
  1446. </param>
  1447. <param name="name">
  1448. The name of the function being declared.
  1449. </param>
  1450. <param name="error">
  1451. Upon success, the contents of this parameter are undefined. Upon failure,
  1452. it should contain an appropriate error message.
  1453. </param>
  1454. <returns>
  1455. A standard SQLite return code.
  1456. </returns>
  1457. </member>
  1458. <member name="M:System.Data.SQLite.SQLite3.SetLoadExtension(System.Boolean)">
  1459. <summary>
  1460. Enables or disabled extension loading by SQLite.
  1461. </summary>
  1462. <param name="bOnOff">
  1463. True to enable loading of extensions, false to disable.
  1464. </param>
  1465. </member>
  1466. <member name="M:System.Data.SQLite.SQLite3.LoadExtension(System.String,System.String)">
  1467. <summary>
  1468. Loads a SQLite extension library from the named file.
  1469. </summary>
  1470. <param name="fileName">
  1471. The name of the dynamic link library file containing the extension.
  1472. </param>
  1473. <param name="procName">
  1474. The name of the exported function used to initialize the extension.
  1475. If null, the default "sqlite3_extension_init" will be used.
  1476. </param>
  1477. </member>
  1478. <member name="M:System.Data.SQLite.SQLite3.SetExtendedResultCodes(System.Boolean)">
  1479. Enables or disabled extended result codes returned by SQLite
  1480. </member>
  1481. <member name="M:System.Data.SQLite.SQLite3.ResultCode">
  1482. Gets the last SQLite error code
  1483. </member>
  1484. <member name="M:System.Data.SQLite.SQLite3.ExtendedResultCode">
  1485. Gets the last SQLite extended error code
  1486. </member>
  1487. <member name="M:System.Data.SQLite.SQLite3.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  1488. Add a log message via the SQLite sqlite3_log interface.
  1489. </member>
  1490. <member name="M:System.Data.SQLite.SQLite3.StaticLogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  1491. Add a log message via the SQLite sqlite3_log interface.
  1492. </member>
  1493. <member name="M:System.Data.SQLite.SQLite3.SetLogCallback(System.Data.SQLite.SQLiteLogCallback)">
  1494. <summary>
  1495. Allows the setting of a logging callback invoked by SQLite when a
  1496. log event occurs. Only one callback may be set. If NULL is passed,
  1497. the logging callback is unregistered.
  1498. </summary>
  1499. <param name="func">The callback function to invoke.</param>
  1500. <returns>Returns a result code</returns>
  1501. </member>
  1502. <member name="M:System.Data.SQLite.SQLite3.InitializeBackup(System.Data.SQLite.SQLiteConnection,System.String,System.String)">
  1503. <summary>
  1504. Creates a new SQLite backup object based on the provided destination
  1505. database connection. The source database connection is the one
  1506. associated with this object. The source and destination database
  1507. connections cannot be the same.
  1508. </summary>
  1509. <param name="destCnn">The destination database connection.</param>
  1510. <param name="destName">The destination database name.</param>
  1511. <param name="sourceName">The source database name.</param>
  1512. <returns>The newly created backup object.</returns>
  1513. </member>
  1514. <member name="M:System.Data.SQLite.SQLite3.StepBackup(System.Data.SQLite.SQLiteBackup,System.Int32,System.Boolean@)">
  1515. <summary>
  1516. Copies up to N pages from the source database to the destination
  1517. database associated with the specified backup object.
  1518. </summary>
  1519. <param name="backup">The backup object to use.</param>
  1520. <param name="nPage">
  1521. The number of pages to copy, negative to copy all remaining pages.
  1522. </param>
  1523. <param name="retry">
  1524. Set to true if the operation needs to be retried due to database
  1525. locking issues; otherwise, set to false.
  1526. </param>
  1527. <returns>
  1528. True if there are more pages to be copied, false otherwise.
  1529. </returns>
  1530. </member>
  1531. <member name="M:System.Data.SQLite.SQLite3.RemainingBackup(System.Data.SQLite.SQLiteBackup)">
  1532. <summary>
  1533. Returns the number of pages remaining to be copied from the source
  1534. database to the destination database associated with the specified
  1535. backup object.
  1536. </summary>
  1537. <param name="backup">The backup object to check.</param>
  1538. <returns>The number of pages remaining to be copied.</returns>
  1539. </member>
  1540. <member name="M:System.Data.SQLite.SQLite3.PageCountBackup(System.Data.SQLite.SQLiteBackup)">
  1541. <summary>
  1542. Returns the total number of pages in the source database associated
  1543. with the specified backup object.
  1544. </summary>
  1545. <param name="backup">The backup object to check.</param>
  1546. <returns>The total number of pages in the source database.</returns>
  1547. </member>
  1548. <member name="M:System.Data.SQLite.SQLite3.FinishBackup(System.Data.SQLite.SQLiteBackup)">
  1549. <summary>
  1550. Destroys the backup object, rolling back any backup that may be in
  1551. progess.
  1552. </summary>
  1553. <param name="backup">The backup object to destroy.</param>
  1554. </member>
  1555. <member name="M:System.Data.SQLite.SQLite3.IsInitialized">
  1556. <summary>
  1557. Determines if the SQLite core library has been initialized for the
  1558. current process.
  1559. </summary>
  1560. <returns>
  1561. A boolean indicating whether or not the SQLite core library has been
  1562. initialized for the current process.
  1563. </returns>
  1564. </member>
  1565. <member name="M:System.Data.SQLite.SQLite3.StaticIsInitialized">
  1566. <summary>
  1567. Determines if the SQLite core library has been initialized for the
  1568. current process.
  1569. </summary>
  1570. <returns>
  1571. A boolean indicating whether or not the SQLite core library has been
  1572. initialized for the current process.
  1573. </returns>
  1574. </member>
  1575. <member name="M:System.Data.SQLite.SQLite3.GetValue(System.Data.SQLite.SQLiteStatement,System.Data.SQLite.SQLiteConnectionFlags,System.Int32,System.Data.SQLite.SQLiteType)">
  1576. <summary>
  1577. Helper function to retrieve a column of data from an active statement.
  1578. </summary>
  1579. <param name="stmt">The statement being step()'d through</param>
  1580. <param name="flags">The flags associated with the connection.</param>
  1581. <param name="index">The column index to retrieve</param>
  1582. <param name="typ">The type of data contained in the column. If Uninitialized, this function will retrieve the datatype information.</param>
  1583. <returns>Returns the data in the column</returns>
  1584. </member>
  1585. <member name="P:System.Data.SQLite.SQLite3.OwnHandle">
  1586. <summary>
  1587. Returns non-zero if the underlying native connection handle is owned
  1588. by this instance.
  1589. </summary>
  1590. </member>
  1591. <member name="T:System.Data.SQLite.SQLite3_UTF16">
  1592. <summary>
  1593. Alternate SQLite3 object, overriding many text behaviors to support UTF-16 (Unicode)
  1594. </summary>
  1595. </member>
  1596. <member name="M:System.Data.SQLite.SQLite3_UTF16.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String,System.IntPtr,System.String,System.Boolean)">
  1597. <summary>
  1598. Constructs the object used to interact with the SQLite core library
  1599. using the UTF-8 text encoding.
  1600. </summary>
  1601. <param name="fmt">
  1602. The DateTime format to be used when converting string values to a
  1603. DateTime and binding DateTime parameters.
  1604. </param>
  1605. <param name="kind">
  1606. The <see cref="T:System.DateTimeKind"/> to be used when creating DateTime
  1607. values.
  1608. </param>
  1609. <param name="fmtString">
  1610. The format string to be used when parsing and formatting DateTime
  1611. values.
  1612. </param>
  1613. <param name="db">
  1614. The native handle to be associated with the database connection.
  1615. </param>
  1616. <param name="fileName">
  1617. The fully qualified file name associated with <paramref name="db"/>.
  1618. </param>
  1619. <param name="ownHandle">
  1620. Non-zero if the newly created object instance will need to dispose
  1621. of <paramref name="db"/> when it is no longer needed.
  1622. </param>
  1623. </member>
  1624. <member name="M:System.Data.SQLite.SQLite3_UTF16.ToString(System.IntPtr,System.Int32)">
  1625. <summary>
  1626. Overrides SQLiteConvert.ToString() to marshal UTF-16 strings instead of UTF-8
  1627. </summary>
  1628. <param name="b">A pointer to a UTF-16 string</param>
  1629. <param name="nbytelen">The length (IN BYTES) of the string</param>
  1630. <returns>A .NET string</returns>
  1631. </member>
  1632. <member name="T:System.Data.SQLite.SQLiteBackup">
  1633. <summary>
  1634. Represents a single SQL backup in SQLite.
  1635. </summary>
  1636. </member>
  1637. <member name="F:System.Data.SQLite.SQLiteBackup._sql">
  1638. <summary>
  1639. The underlying SQLite object this backup is bound to.
  1640. </summary>
  1641. </member>
  1642. <member name="F:System.Data.SQLite.SQLiteBackup._sqlite_backup">
  1643. <summary>
  1644. The actual backup handle.
  1645. </summary>
  1646. </member>
  1647. <member name="F:System.Data.SQLite.SQLiteBackup._destDb">
  1648. <summary>
  1649. The destination database for the backup.
  1650. </summary>
  1651. </member>
  1652. <member name="F:System.Data.SQLite.SQLiteBackup._zDestName">
  1653. <summary>
  1654. The destination database name for the backup.
  1655. </summary>
  1656. </member>
  1657. <member name="F:System.Data.SQLite.SQLiteBackup._sourceDb">
  1658. <summary>
  1659. The source database for the backup.
  1660. </summary>
  1661. </member>
  1662. <member name="F:System.Data.SQLite.SQLiteBackup._zSourceName">
  1663. <summary>
  1664. The source database name for the backup.
  1665. </summary>
  1666. </member>
  1667. <member name="F:System.Data.SQLite.SQLiteBackup._stepResult">
  1668. <summary>
  1669. The last result from the StepBackup method of the SQLite3 class.
  1670. This is used to determine if the call to the FinishBackup method of
  1671. the SQLite3 class should throw an exception when it receives a non-Ok
  1672. return code from the core SQLite library.
  1673. </summary>
  1674. </member>
  1675. <member name="M:System.Data.SQLite.SQLiteBackup.#ctor(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteBackupHandle,System.IntPtr,System.Byte[],System.IntPtr,System.Byte[])">
  1676. <summary>
  1677. Initializes the backup.
  1678. </summary>
  1679. <param name="sqlbase">The base SQLite object.</param>
  1680. <param name="backup">The backup handle.</param>
  1681. <param name="destDb">The destination database for the backup.</param>
  1682. <param name="zDestName">The destination database name for the backup.</param>
  1683. <param name="sourceDb">The source database for the backup.</param>
  1684. <param name="zSourceName">The source database name for the backup.</param>
  1685. </member>
  1686. <member name="M:System.Data.SQLite.SQLiteBackup.Dispose">
  1687. <summary>
  1688. Disposes and finalizes the backup.
  1689. </summary>
  1690. </member>
  1691. <member name="T:System.Data.SQLite.ISQLiteSchemaExtensions">
  1692. <summary>
  1693. </summary>
  1694. </member>
  1695. <member name="M:System.Data.SQLite.ISQLiteSchemaExtensions.BuildTempSchema(System.Data.SQLite.SQLiteConnection)">
  1696. <summary>
  1697. Creates temporary tables on the connection so schema information can be queried.
  1698. </summary>
  1699. <param name="connection">
  1700. The connection upon which to build the schema tables.
  1701. </param>
  1702. </member>
  1703. <member name="T:System.Data.SQLite.SQLiteConnectionFlags">
  1704. <summary>
  1705. The extra behavioral flags that can be applied to a connection.
  1706. </summary>
  1707. </member>
  1708. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.None">
  1709. <summary>
  1710. No extra flags.
  1711. </summary>
  1712. </member>
  1713. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogPrepare">
  1714. <summary>
  1715. Enable logging of all SQL statements to be prepared.
  1716. </summary>
  1717. </member>
  1718. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogPreBind">
  1719. <summary>
  1720. Enable logging of all bound parameter types and raw values.
  1721. </summary>
  1722. </member>
  1723. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogBind">
  1724. <summary>
  1725. Enable logging of all bound parameter strongly typed values.
  1726. </summary>
  1727. </member>
  1728. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogCallbackException">
  1729. <summary>
  1730. Enable logging of all exceptions caught from user-provided
  1731. managed code called from native code via delegates.
  1732. </summary>
  1733. </member>
  1734. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogBackup">
  1735. <summary>
  1736. Enable logging of backup API errors.
  1737. </summary>
  1738. </member>
  1739. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoExtensionFunctions">
  1740. <summary>
  1741. Skip adding the extension functions provided by the native
  1742. interop assembly.
  1743. </summary>
  1744. </member>
  1745. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindUInt32AsInt64">
  1746. <summary>
  1747. When binding parameter values with the <see cref="T:System.UInt32"/>
  1748. type, use the interop method that accepts an <see cref="T:System.Int64"/>
  1749. value.
  1750. </summary>
  1751. </member>
  1752. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindAllAsText">
  1753. <summary>
  1754. When binding parameter values, always bind them as though they were
  1755. plain text (i.e. no numeric, date/time, or other conversions should
  1756. be attempted).
  1757. </summary>
  1758. </member>
  1759. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.GetAllAsText">
  1760. <summary>
  1761. When returning column values, always return them as though they were
  1762. plain text (i.e. no numeric, date/time, or other conversions should
  1763. be attempted).
  1764. </summary>
  1765. </member>
  1766. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoLoadExtension">
  1767. <summary>
  1768. Prevent this <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance from
  1769. loading extensions.
  1770. </summary>
  1771. </member>
  1772. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoCreateModule">
  1773. <summary>
  1774. Prevent this <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance from
  1775. creating virtual table modules.
  1776. </summary>
  1777. </member>
  1778. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoBindFunctions">
  1779. <summary>
  1780. Skip binding any functions provided by other managed assemblies when
  1781. opening the connection.
  1782. </summary>
  1783. </member>
  1784. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoLogModule">
  1785. <summary>
  1786. Skip setting the logging related properties of the
  1787. <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance that was passed to
  1788. the <see cref="M:System.Data.SQLite.SQLiteConnection.CreateModule(System.Data.SQLite.SQLiteModule)"/> method.
  1789. </summary>
  1790. </member>
  1791. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogModuleError">
  1792. <summary>
  1793. Enable logging of all virtual table module errors seen by the
  1794. <see cref="M:System.Data.SQLite.SQLiteModule.SetTableError(System.IntPtr,System.String)"/> method.
  1795. </summary>
  1796. </member>
  1797. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogModuleException">
  1798. <summary>
  1799. Enable logging of certain virtual table module exceptions that cannot
  1800. be easily discovered via other means.
  1801. </summary>
  1802. </member>
  1803. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.TraceWarning">
  1804. <summary>
  1805. Enable tracing of potentially important [non-fatal] error conditions
  1806. that cannot be easily reported through other means.
  1807. </summary>
  1808. </member>
  1809. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.ConvertInvariantText">
  1810. <summary>
  1811. When binding parameter values, always use the invariant culture when
  1812. converting their values from strings.
  1813. </summary>
  1814. </member>
  1815. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindInvariantText">
  1816. <summary>
  1817. When binding parameter values, always use the invariant culture when
  1818. converting their values to strings.
  1819. </summary>
  1820. </member>
  1821. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoConnectionPool">
  1822. <summary>
  1823. Disable using the connection pool by default. If the "Pooling"
  1824. connection string property is specified, its value will override
  1825. this flag. The precise outcome of combining this flag with the
  1826. <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionPool"/> flag is unspecified; however,
  1827. one of the flags will be in effect.
  1828. </summary>
  1829. </member>
  1830. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionPool">
  1831. <summary>
  1832. Enable using the connection pool by default. If the "Pooling"
  1833. connection string property is specified, its value will override
  1834. this flag. The precise outcome of combining this flag with the
  1835. <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.NoConnectionPool"/> flag is unspecified; however,
  1836. one of the flags will be in effect.
  1837. </summary>
  1838. </member>
  1839. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionTypes">
  1840. <summary>
  1841. Enable using per-connection mappings between type names and
  1842. <see cref="T:System.Data.DbType"/> values. Also see the
  1843. <see cref="M:System.Data.SQLite.SQLiteConnection.ClearTypeMappings"/>,
  1844. <see cref="M:System.Data.SQLite.SQLiteConnection.GetTypeMappings"/>, and
  1845. <see cref="M:System.Data.SQLite.SQLiteConnection.AddTypeMapping(System.String,System.Data.DbType,System.Boolean)"/> methods. These
  1846. per-connection mappings, when present, override the corresponding
  1847. global mappings.
  1848. </summary>
  1849. </member>
  1850. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoGlobalTypes">
  1851. <summary>
  1852. Disable using global mappings between type names and
  1853. <see cref="T:System.Data.DbType"/> values. This may be useful in some very narrow
  1854. cases; however, if there are no per-connection type mappings, the
  1855. fallback defaults will be used for both type names and their
  1856. associated <see cref="T:System.Data.DbType"/> values. Therefore, use of this flag
  1857. is not recommended.
  1858. </summary>
  1859. </member>
  1860. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.StickyHasRows">
  1861. <summary>
  1862. When the <see cref="P:System.Data.SQLite.SQLiteDataReader.HasRows"/> property is used, it
  1863. should return non-zero if there were ever any rows in the associated
  1864. result sets.
  1865. </summary>
  1866. </member>
  1867. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.StrictEnlistment">
  1868. <summary>
  1869. Enable "strict" transaction enlistment semantics. Setting this flag
  1870. will cause an exception to be thrown if an attempt is made to enlist
  1871. in a transaction with an unavailable or unsupported isolation level.
  1872. In the future, more extensive checks may be enabled by this flag as
  1873. well.
  1874. </summary>
  1875. </member>
  1876. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.MapIsolationLevels">
  1877. <summary>
  1878. Enable mapping of unsupported transaction isolation levels to the
  1879. closest supported transaction isolation level.
  1880. </summary>
  1881. </member>
  1882. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.DetectTextAffinity">
  1883. <summary>
  1884. When returning column values, attempt to detect the affinity of
  1885. textual values by checking if they fully conform to those of the
  1886. <see cref="F:System.Data.SQLite.TypeAffinity.Null"/>,
  1887. <see cref="F:System.Data.SQLite.TypeAffinity.Int64"/>,
  1888. <see cref="F:System.Data.SQLite.TypeAffinity.Double"/>,
  1889. or <see cref="F:System.Data.SQLite.TypeAffinity.DateTime"/> types.
  1890. </summary>
  1891. </member>
  1892. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.DetectStringType">
  1893. <summary>
  1894. When returning column values, attempt to detect the type of
  1895. string values by checking if they fully conform to those of
  1896. the <see cref="F:System.Data.SQLite.TypeAffinity.Null"/>,
  1897. <see cref="F:System.Data.SQLite.TypeAffinity.Int64"/>,
  1898. <see cref="F:System.Data.SQLite.TypeAffinity.Double"/>,
  1899. or <see cref="F:System.Data.SQLite.TypeAffinity.DateTime"/> types.
  1900. </summary>
  1901. </member>
  1902. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoConvertSettings">
  1903. <summary>
  1904. Skip querying runtime configuration settings for use by the
  1905. <see cref="T:System.Data.SQLite.SQLiteConvert"/> class, including the default
  1906. <see cref="T:System.Data.DbType"/> value and default database type name.
  1907. <b>NOTE: If the <see cref="P:System.Data.SQLite.SQLiteConnection.DefaultDbType"/>
  1908. and/or <see cref="P:System.Data.SQLite.SQLiteConnection.DefaultTypeName"/>
  1909. properties are not set explicitly nor set via their connection
  1910. string properties and repeated calls to determine these runtime
  1911. configuration settings are seen to be a problem, this flag
  1912. should be set.</b>
  1913. </summary>
  1914. </member>
  1915. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindDateTimeWithKind">
  1916. <summary>
  1917. When binding parameter values with the <see cref="T:System.DateTime"/>
  1918. type, take their <see cref="T:System.DateTimeKind"/> into account as
  1919. well as that of the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/>.
  1920. </summary>
  1921. </member>
  1922. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindAndGetAllAsText">
  1923. <summary>
  1924. When binding parameter values or returning column values, always
  1925. treat them as though they were plain text (i.e. no numeric,
  1926. date/time, or other conversions should be attempted).
  1927. </summary>
  1928. </member>
  1929. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.ConvertAndBindInvariantText">
  1930. <summary>
  1931. When binding parameter values, always use the invariant culture when
  1932. converting their values to strings or from strings.
  1933. </summary>
  1934. </member>
  1935. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindAndGetAllAsInvariantText">
  1936. <summary>
  1937. When binding parameter values or returning column values, always
  1938. treat them as though they were plain text (i.e. no numeric,
  1939. date/time, or other conversions should be attempted) and always
  1940. use the invariant culture when converting their values to strings.
  1941. </summary>
  1942. </member>
  1943. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.ConvertAndBindAndGetAllAsInvariantText">
  1944. <summary>
  1945. When binding parameter values or returning column values, always
  1946. treat them as though they were plain text (i.e. no numeric,
  1947. date/time, or other conversions should be attempted) and always
  1948. use the invariant culture when converting their values to strings
  1949. or from strings.
  1950. </summary>
  1951. </member>
  1952. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogAll">
  1953. <summary>
  1954. Enable all logging.
  1955. </summary>
  1956. </member>
  1957. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.Default">
  1958. <summary>
  1959. The default extra flags for new connections.
  1960. </summary>
  1961. </member>
  1962. <member name="F:System.Data.SQLite.SQLiteConnectionFlags.DefaultAndLogAll">
  1963. <summary>
  1964. The default extra flags for new connections with all logging enabled.
  1965. </summary>
  1966. </member>
  1967. <member name="T:System.Data.SQLite.SQLiteCommand">
  1968. <summary>
  1969. SQLite implementation of DbCommand.
  1970. </summary>
  1971. </member>
  1972. <member name="F:System.Data.SQLite.SQLiteCommand.DefaultConnectionString">
  1973. <summary>
  1974. The default connection string to be used when creating a temporary
  1975. connection to execute a command via the static
  1976. <see cref="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.String,System.Object[])"/> or
  1977. <see cref="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.Data.CommandBehavior,System.String,System.Object[])"/>
  1978. methods.
  1979. </summary>
  1980. </member>
  1981. <member name="F:System.Data.SQLite.SQLiteCommand._commandText">
  1982. <summary>
  1983. The command text this command is based on
  1984. </summary>
  1985. </member>
  1986. <member name="F:System.Data.SQLite.SQLiteCommand._cnn">
  1987. <summary>
  1988. The connection the command is associated with
  1989. </summary>
  1990. </member>
  1991. <member name="F:System.Data.SQLite.SQLiteCommand._version">
  1992. <summary>
  1993. The version of the connection the command is associated with
  1994. </summary>
  1995. </member>
  1996. <member name="F:System.Data.SQLite.SQLiteCommand._activeReader">
  1997. <summary>
  1998. Indicates whether or not a DataReader is active on the command.
  1999. </summary>
  2000. </member>
  2001. <member name="F:System.Data.SQLite.SQLiteCommand._commandTimeout">
  2002. <summary>
  2003. The timeout for the command, kludged because SQLite doesn't support per-command timeout values
  2004. </summary>
  2005. </member>
  2006. <member name="F:System.Data.SQLite.SQLiteCommand._designTimeVisible">
  2007. <summary>
  2008. Designer support
  2009. </summary>
  2010. </member>
  2011. <member name="F:System.Data.SQLite.SQLiteCommand._updateRowSource">
  2012. <summary>
  2013. Used by DbDataAdapter to determine updating behavior
  2014. </summary>
  2015. </member>
  2016. <member name="F:System.Data.SQLite.SQLiteCommand._parameterCollection">
  2017. <summary>
  2018. The collection of parameters for the command
  2019. </summary>
  2020. </member>
  2021. <member name="F:System.Data.SQLite.SQLiteCommand._statementList">
  2022. <summary>
  2023. The SQL command text, broken into individual SQL statements as they are executed
  2024. </summary>
  2025. </member>
  2026. <member name="F:System.Data.SQLite.SQLiteCommand._remainingText">
  2027. <summary>
  2028. Unprocessed SQL text that has not been executed
  2029. </summary>
  2030. </member>
  2031. <member name="F:System.Data.SQLite.SQLiteCommand._transaction">
  2032. <summary>
  2033. Transaction associated with this command
  2034. </summary>
  2035. </member>
  2036. <member name="M:System.Data.SQLite.SQLiteCommand.#ctor">
  2037. <overloads>
  2038. Constructs a new SQLiteCommand
  2039. </overloads>
  2040. <summary>
  2041. Default constructor
  2042. </summary>
  2043. </member>
  2044. <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.String)">
  2045. <summary>
  2046. Initializes the command with the given command text
  2047. </summary>
  2048. <param name="commandText">The SQL command text</param>
  2049. </member>
  2050. <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.String,System.Data.SQLite.SQLiteConnection)">
  2051. <summary>
  2052. Initializes the command with the given SQL command text and attach the command to the specified
  2053. connection.
  2054. </summary>
  2055. <param name="commandText">The SQL command text</param>
  2056. <param name="connection">The connection to associate with the command</param>
  2057. </member>
  2058. <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.Data.SQLite.SQLiteConnection)">
  2059. <summary>
  2060. Initializes the command and associates it with the specified connection.
  2061. </summary>
  2062. <param name="connection">The connection to associate with the command</param>
  2063. </member>
  2064. <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.String,System.Data.SQLite.SQLiteConnection,System.Data.SQLite.SQLiteTransaction)">
  2065. <summary>
  2066. Initializes a command with the given SQL, connection and transaction
  2067. </summary>
  2068. <param name="commandText">The SQL command text</param>
  2069. <param name="connection">The connection to associate with the command</param>
  2070. <param name="transaction">The transaction the command should be associated with</param>
  2071. </member>
  2072. <member name="M:System.Data.SQLite.SQLiteCommand.Dispose(System.Boolean)">
  2073. <summary>
  2074. Disposes of the command and clears all member variables
  2075. </summary>
  2076. <param name="disposing">Whether or not the class is being explicitly or implicitly disposed</param>
  2077. </member>
  2078. <member name="M:System.Data.SQLite.SQLiteCommand.GetFlags(System.Data.SQLite.SQLiteCommand)">
  2079. <summary>
  2080. This method attempts to query the flags associated with the database
  2081. connection in use. If the database connection is disposed, the default
  2082. flags will be returned.
  2083. </summary>
  2084. <param name="command">
  2085. The command containing the databse connection to query the flags from.
  2086. </param>
  2087. <returns>
  2088. The connection flags value.
  2089. </returns>
  2090. </member>
  2091. <member name="M:System.Data.SQLite.SQLiteCommand.ClearCommands">
  2092. <summary>
  2093. Clears and destroys all statements currently prepared
  2094. </summary>
  2095. </member>
  2096. <member name="M:System.Data.SQLite.SQLiteCommand.BuildNextCommand">
  2097. <summary>
  2098. Builds an array of prepared statements for each complete SQL statement in the command text
  2099. </summary>
  2100. </member>
  2101. <member name="M:System.Data.SQLite.SQLiteCommand.Cancel">
  2102. <summary>
  2103. Not implemented
  2104. </summary>
  2105. </member>
  2106. <member name="M:System.Data.SQLite.SQLiteCommand.CreateDbParameter">
  2107. <summary>
  2108. Forwards to the local CreateParameter() function
  2109. </summary>
  2110. <returns></returns>
  2111. </member>
  2112. <member name="M:System.Data.SQLite.SQLiteCommand.CreateParameter">
  2113. <summary>
  2114. Create a new parameter
  2115. </summary>
  2116. <returns></returns>
  2117. </member>
  2118. <member name="M:System.Data.SQLite.SQLiteCommand.InitializeForReader">
  2119. <summary>
  2120. This function ensures there are no active readers, that we have a valid connection,
  2121. that the connection is open, that all statements are prepared and all parameters are assigned
  2122. in preparation for allocating a data reader.
  2123. </summary>
  2124. </member>
  2125. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteDbDataReader(System.Data.CommandBehavior)">
  2126. <summary>
  2127. Creates a new SQLiteDataReader to execute/iterate the array of SQLite prepared statements
  2128. </summary>
  2129. <param name="behavior">The behavior the data reader should adopt</param>
  2130. <returns>Returns a SQLiteDataReader object</returns>
  2131. </member>
  2132. <member name="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.String,System.Object[])">
  2133. <summary>
  2134. This method creates a new connection, executes the query using the given
  2135. execution type, closes the connection, and returns the results. If the
  2136. connection string is null, a temporary in-memory database connection will
  2137. be used.
  2138. </summary>
  2139. <param name="commandText">
  2140. The text of the command to be executed.
  2141. </param>
  2142. <param name="executeType">
  2143. The execution type for the command. This is used to determine which method
  2144. of the command object to call, which then determines the type of results
  2145. returned, if any.
  2146. </param>
  2147. <param name="connectionString">
  2148. The connection string to the database to be opened, used, and closed. If
  2149. this parameter is null, a temporary in-memory databse will be used.
  2150. </param>
  2151. <param name="args">
  2152. The SQL parameter values to be used when building the command object to be
  2153. executed, if any.
  2154. </param>
  2155. <returns>
  2156. The results of the query -OR- null if no results were produced from the
  2157. given execution type.
  2158. </returns>
  2159. </member>
  2160. <member name="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.Data.CommandBehavior,System.String,System.Object[])">
  2161. <summary>
  2162. This method creates a new connection, executes the query using the given
  2163. execution type and command behavior, closes the connection unless a data
  2164. reader is created, and returns the results. If the connection string is
  2165. null, a temporary in-memory database connection will be used.
  2166. </summary>
  2167. <param name="commandText">
  2168. The text of the command to be executed.
  2169. </param>
  2170. <param name="executeType">
  2171. The execution type for the command. This is used to determine which method
  2172. of the command object to call, which then determines the type of results
  2173. returned, if any.
  2174. </param>
  2175. <param name="commandBehavior">
  2176. The command behavior flags for the command.
  2177. </param>
  2178. <param name="connectionString">
  2179. The connection string to the database to be opened, used, and closed. If
  2180. this parameter is null, a temporary in-memory databse will be used.
  2181. </param>
  2182. <param name="args">
  2183. The SQL parameter values to be used when building the command object to be
  2184. executed, if any.
  2185. </param>
  2186. <returns>
  2187. The results of the query -OR- null if no results were produced from the
  2188. given execution type.
  2189. </returns>
  2190. </member>
  2191. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteReader(System.Data.CommandBehavior)">
  2192. <summary>
  2193. Overrides the default behavior to return a SQLiteDataReader specialization class
  2194. </summary>
  2195. <param name="behavior">The flags to be associated with the reader.</param>
  2196. <returns>A SQLiteDataReader</returns>
  2197. </member>
  2198. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteReader">
  2199. <summary>
  2200. Overrides the default behavior of DbDataReader to return a specialized SQLiteDataReader class
  2201. </summary>
  2202. <returns>A SQLiteDataReader</returns>
  2203. </member>
  2204. <member name="M:System.Data.SQLite.SQLiteCommand.ClearDataReader">
  2205. <summary>
  2206. Called by the SQLiteDataReader when the data reader is closed.
  2207. </summary>
  2208. </member>
  2209. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery">
  2210. <summary>
  2211. Execute the command and return the number of rows inserted/updated affected by it.
  2212. </summary>
  2213. <returns>The number of rows inserted/updated affected by it.</returns>
  2214. </member>
  2215. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery(System.Data.CommandBehavior)">
  2216. <summary>
  2217. Execute the command and return the number of rows inserted/updated affected by it.
  2218. </summary>
  2219. <param name="behavior">The flags to be associated with the reader.</param>
  2220. <returns>The number of rows inserted/updated affected by it.</returns>
  2221. </member>
  2222. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar">
  2223. <summary>
  2224. Execute the command and return the first column of the first row of the resultset
  2225. (if present), or null if no resultset was returned.
  2226. </summary>
  2227. <returns>The first column of the first row of the first resultset from the query.</returns>
  2228. </member>
  2229. <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar(System.Data.CommandBehavior)">
  2230. <summary>
  2231. Execute the command and return the first column of the first row of the resultset
  2232. (if present), or null if no resultset was returned.
  2233. </summary>
  2234. <param name="behavior">The flags to be associated with the reader.</param>
  2235. <returns>The first column of the first row of the first resultset from the query.</returns>
  2236. </member>
  2237. <member name="M:System.Data.SQLite.SQLiteCommand.Prepare">
  2238. <summary>
  2239. Does nothing. Commands are prepared as they are executed the first time, and kept in prepared state afterwards.
  2240. </summary>
  2241. </member>
  2242. <member name="M:System.Data.SQLite.SQLiteCommand.Clone">
  2243. <summary>
  2244. Clones a command, including all its parameters
  2245. </summary>
  2246. <returns>A new SQLiteCommand with the same commandtext, connection and parameters</returns>
  2247. </member>
  2248. <member name="P:System.Data.SQLite.SQLiteCommand.CommandText">
  2249. <summary>
  2250. The SQL command text associated with the command
  2251. </summary>
  2252. </member>
  2253. <member name="P:System.Data.SQLite.SQLiteCommand.CommandTimeout">
  2254. <summary>
  2255. The amount of time to wait for the connection to become available before erroring out
  2256. </summary>
  2257. </member>
  2258. <member name="P:System.Data.SQLite.SQLiteCommand.CommandType">
  2259. <summary>
  2260. The type of the command. SQLite only supports CommandType.Text
  2261. </summary>
  2262. </member>
  2263. <member name="P:System.Data.SQLite.SQLiteCommand.Connection">
  2264. <summary>
  2265. The connection associated with this command
  2266. </summary>
  2267. </member>
  2268. <member name="P:System.Data.SQLite.SQLiteCommand.DbConnection">
  2269. <summary>
  2270. Forwards to the local Connection property
  2271. </summary>
  2272. </member>
  2273. <member name="P:System.Data.SQLite.SQLiteCommand.Parameters">
  2274. <summary>
  2275. Returns the SQLiteParameterCollection for the given command
  2276. </summary>
  2277. </member>
  2278. <member name="P:System.Data.SQLite.SQLiteCommand.DbParameterCollection">
  2279. <summary>
  2280. Forwards to the local Parameters property
  2281. </summary>
  2282. </member>
  2283. <member name="P:System.Data.SQLite.SQLiteCommand.Transaction">
  2284. <summary>
  2285. The transaction associated with this command. SQLite only supports one transaction per connection, so this property forwards to the
  2286. command's underlying connection.
  2287. </summary>
  2288. </member>
  2289. <member name="P:System.Data.SQLite.SQLiteCommand.DbTransaction">
  2290. <summary>
  2291. Forwards to the local Transaction property
  2292. </summary>
  2293. </member>
  2294. <member name="P:System.Data.SQLite.SQLiteCommand.UpdatedRowSource">
  2295. <summary>
  2296. Sets the method the SQLiteCommandBuilder uses to determine how to update inserted or updated rows in a DataTable.
  2297. </summary>
  2298. </member>
  2299. <member name="P:System.Data.SQLite.SQLiteCommand.DesignTimeVisible">
  2300. <summary>
  2301. Determines if the command is visible at design time. Defaults to True.
  2302. </summary>
  2303. </member>
  2304. <member name="T:System.Data.SQLite.SQLiteCommandBuilder">
  2305. <summary>
  2306. SQLite implementation of DbCommandBuilder.
  2307. </summary>
  2308. </member>
  2309. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.#ctor">
  2310. <summary>
  2311. Default constructor
  2312. </summary>
  2313. </member>
  2314. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.#ctor(System.Data.SQLite.SQLiteDataAdapter)">
  2315. <summary>
  2316. Initializes the command builder and associates it with the specified data adapter.
  2317. </summary>
  2318. <param name="adp"></param>
  2319. </member>
  2320. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)">
  2321. <summary>
  2322. Minimal amount of parameter processing. Primarily sets the DbType for the parameter equal to the provider type in the schema
  2323. </summary>
  2324. <param name="parameter">The parameter to use in applying custom behaviors to a row</param>
  2325. <param name="row">The row to apply the parameter to</param>
  2326. <param name="statementType">The type of statement</param>
  2327. <param name="whereClause">Whether the application of the parameter is part of a WHERE clause</param>
  2328. </member>
  2329. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetParameterName(System.String)">
  2330. <summary>
  2331. Returns a valid named parameter
  2332. </summary>
  2333. <param name="parameterName">The name of the parameter</param>
  2334. <returns>Error</returns>
  2335. </member>
  2336. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetParameterName(System.Int32)">
  2337. <summary>
  2338. Returns a named parameter for the given ordinal
  2339. </summary>
  2340. <param name="parameterOrdinal">The i of the parameter</param>
  2341. <returns>Error</returns>
  2342. </member>
  2343. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetParameterPlaceholder(System.Int32)">
  2344. <summary>
  2345. Returns a placeholder character for the specified parameter i.
  2346. </summary>
  2347. <param name="parameterOrdinal">The index of the parameter to provide a placeholder for</param>
  2348. <returns>Returns a named parameter</returns>
  2349. </member>
  2350. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)">
  2351. <summary>
  2352. Sets the handler for receiving row updating events. Used by the DbCommandBuilder to autogenerate SQL
  2353. statements that may not have previously been generated.
  2354. </summary>
  2355. <param name="adapter">A data adapter to receive events on.</param>
  2356. </member>
  2357. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetDeleteCommand">
  2358. <summary>
  2359. Returns the automatically-generated SQLite command to delete rows from the database
  2360. </summary>
  2361. <returns></returns>
  2362. </member>
  2363. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetDeleteCommand(System.Boolean)">
  2364. <summary>
  2365. Returns the automatically-generated SQLite command to delete rows from the database
  2366. </summary>
  2367. <param name="useColumnsForParameterNames"></param>
  2368. <returns></returns>
  2369. </member>
  2370. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand">
  2371. <summary>
  2372. Returns the automatically-generated SQLite command to update rows in the database
  2373. </summary>
  2374. <returns></returns>
  2375. </member>
  2376. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand(System.Boolean)">
  2377. <summary>
  2378. Returns the automatically-generated SQLite command to update rows in the database
  2379. </summary>
  2380. <param name="useColumnsForParameterNames"></param>
  2381. <returns></returns>
  2382. </member>
  2383. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand">
  2384. <summary>
  2385. Returns the automatically-generated SQLite command to insert rows into the database
  2386. </summary>
  2387. <returns></returns>
  2388. </member>
  2389. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand(System.Boolean)">
  2390. <summary>
  2391. Returns the automatically-generated SQLite command to insert rows into the database
  2392. </summary>
  2393. <param name="useColumnsForParameterNames"></param>
  2394. <returns></returns>
  2395. </member>
  2396. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.QuoteIdentifier(System.String)">
  2397. <summary>
  2398. Places brackets around an identifier
  2399. </summary>
  2400. <param name="unquotedIdentifier">The identifier to quote</param>
  2401. <returns>The bracketed identifier</returns>
  2402. </member>
  2403. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.UnquoteIdentifier(System.String)">
  2404. <summary>
  2405. Removes brackets around an identifier
  2406. </summary>
  2407. <param name="quotedIdentifier">The quoted (bracketed) identifier</param>
  2408. <returns>The undecorated identifier</returns>
  2409. </member>
  2410. <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetSchemaTable(System.Data.Common.DbCommand)">
  2411. <summary>
  2412. Override helper, which can help the base command builder choose the right keys for the given query
  2413. </summary>
  2414. <param name="sourceCommand"></param>
  2415. <returns></returns>
  2416. </member>
  2417. <member name="P:System.Data.SQLite.SQLiteCommandBuilder.DataAdapter">
  2418. <summary>
  2419. Gets/sets the DataAdapter for this CommandBuilder
  2420. </summary>
  2421. </member>
  2422. <member name="P:System.Data.SQLite.SQLiteCommandBuilder.CatalogLocation">
  2423. <summary>
  2424. Overridden to hide its property from the designer
  2425. </summary>
  2426. </member>
  2427. <member name="P:System.Data.SQLite.SQLiteCommandBuilder.CatalogSeparator">
  2428. <summary>
  2429. Overridden to hide its property from the designer
  2430. </summary>
  2431. </member>
  2432. <member name="P:System.Data.SQLite.SQLiteCommandBuilder.QuotePrefix">
  2433. <summary>
  2434. Overridden to hide its property from the designer
  2435. </summary>
  2436. </member>
  2437. <member name="P:System.Data.SQLite.SQLiteCommandBuilder.QuoteSuffix">
  2438. <summary>
  2439. Overridden to hide its property from the designer
  2440. </summary>
  2441. </member>
  2442. <member name="P:System.Data.SQLite.SQLiteCommandBuilder.SchemaSeparator">
  2443. <summary>
  2444. Overridden to hide its property from the designer
  2445. </summary>
  2446. </member>
  2447. <member name="T:System.Data.SQLite.ConnectionEventArgs">
  2448. <summary>
  2449. Event data for connection event handlers.
  2450. </summary>
  2451. </member>
  2452. <member name="F:System.Data.SQLite.ConnectionEventArgs.EventType">
  2453. <summary>
  2454. The type of event being raised.
  2455. </summary>
  2456. </member>
  2457. <member name="F:System.Data.SQLite.ConnectionEventArgs.EventArgs">
  2458. <summary>
  2459. The <see cref="T:System.Data.StateChangeEventArgs"/> associated with this event, if any.
  2460. </summary>
  2461. </member>
  2462. <member name="F:System.Data.SQLite.ConnectionEventArgs.Transaction">
  2463. <summary>
  2464. The transaction associated with this event, if any.
  2465. </summary>
  2466. </member>
  2467. <member name="F:System.Data.SQLite.ConnectionEventArgs.Command">
  2468. <summary>
  2469. The command associated with this event, if any.
  2470. </summary>
  2471. </member>
  2472. <member name="F:System.Data.SQLite.ConnectionEventArgs.DataReader">
  2473. <summary>
  2474. The data reader associated with this event, if any.
  2475. </summary>
  2476. </member>
  2477. <member name="F:System.Data.SQLite.ConnectionEventArgs.CriticalHandle">
  2478. <summary>
  2479. The critical handle associated with this event, if any.
  2480. </summary>
  2481. </member>
  2482. <member name="F:System.Data.SQLite.ConnectionEventArgs.Text">
  2483. <summary>
  2484. Command or message text associated with this event, if any.
  2485. </summary>
  2486. </member>
  2487. <member name="F:System.Data.SQLite.ConnectionEventArgs.Data">
  2488. <summary>
  2489. Extra data associated with this event, if any.
  2490. </summary>
  2491. </member>
  2492. <member name="M:System.Data.SQLite.ConnectionEventArgs.#ctor(System.Data.SQLite.SQLiteConnectionEventType,System.Data.StateChangeEventArgs,System.Data.IDbTransaction,System.Data.IDbCommand,System.Data.IDataReader,System.Runtime.InteropServices.CriticalHandle,System.String,System.Object)">
  2493. <summary>
  2494. Constructs the object.
  2495. </summary>
  2496. <param name="eventType">The type of event being raised.</param>
  2497. <param name="eventArgs">The base <see cref="F:System.Data.SQLite.ConnectionEventArgs.EventArgs"/> associated
  2498. with this event, if any.</param>
  2499. <param name="transaction">The transaction associated with this event, if any.</param>
  2500. <param name="command">The command associated with this event, if any.</param>
  2501. <param name="dataReader">The data reader associated with this event, if any.</param>
  2502. <param name="criticalHandle">The critical handle associated with this event, if any.</param>
  2503. <param name="text">The command or message text, if any.</param>
  2504. <param name="data">The extra data, if any.</param>
  2505. </member>
  2506. <member name="T:System.Data.SQLite.SQLiteConnectionEventHandler">
  2507. <summary>
  2508. Raised when an event pertaining to a connection occurs.
  2509. </summary>
  2510. <param name="sender">The connection involved.</param>
  2511. <param name="e">Extra information about the event.</param>
  2512. </member>
  2513. <member name="T:System.Data.SQLite.SQLiteConnection">
  2514. <summary>
  2515. SQLite implentation of DbConnection.
  2516. </summary>
  2517. <remarks>
  2518. The <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString"/> property can contain the following parameter(s), delimited with a semi-colon:
  2519. <list type="table">
  2520. <listheader>
  2521. <term>Parameter</term>
  2522. <term>Values</term>
  2523. <term>Required</term>
  2524. <term>Default</term>
  2525. </listheader>
  2526. <item>
  2527. <description>Data Source</description>
  2528. <description>
  2529. This may be a file name, the string ":memory:", or any supported URI (starting with SQLite 3.7.7).
  2530. Starting with release 1.0.86.0, in order to use more than one consecutive backslash (e.g. for a
  2531. UNC path), each of the adjoining backslash characters must be doubled (e.g. "\\Network\Share\test.db"
  2532. would become "\\\\Network\Share\test.db").
  2533. </description>
  2534. <description>Y</description>
  2535. <description></description>
  2536. </item>
  2537. <item>
  2538. <description>Version</description>
  2539. <description>3</description>
  2540. <description>N</description>
  2541. <description>3</description>
  2542. </item>
  2543. <item>
  2544. <description>UseUTF16Encoding</description>
  2545. <description><b>True</b><br/><b>False</b></description>
  2546. <description>N</description>
  2547. <description>False</description>
  2548. </item>
  2549. <item>
  2550. <description>DateTimeFormat</description>
  2551. <description>
  2552. <b>Ticks</b> - Use the value of DateTime.Ticks.<br/>
  2553. <b>ISO8601</b> - Use the ISO-8601 format. Uses the "yyyy-MM-dd HH:mm:ss.FFFFFFFK" format for UTC
  2554. DateTime values and "yyyy-MM-dd HH:mm:ss.FFFFFFF" format for local DateTime values).<br/>
  2555. <b>JulianDay</b> - The interval of time in days and fractions of a day since January 1, 4713 BC.<br/>
  2556. <b>UnixEpoch</b> - The whole number of seconds since the Unix epoch (January 1, 1970).<br/>
  2557. <b>InvariantCulture</b> - Any culture-independent string value that the .NET Framework can interpret as a valid DateTime.<br/>
  2558. <b>CurrentCulture</b> - Any string value that the .NET Framework can interpret as a valid DateTime using the current culture.</description>
  2559. <description>N</description>
  2560. <description>ISO8601</description>
  2561. </item>
  2562. <item>
  2563. <description>DateTimeKind</description>
  2564. <description><b>Unspecified</b> - Not specified as either UTC or local time.<br/><b>Utc</b> - The time represented is UTC.<br/><b>Local</b> - The time represented is local time.</description>
  2565. <description>N</description>
  2566. <description>Unspecified</description>
  2567. </item>
  2568. <item>
  2569. <description>DateTimeFormatString</description>
  2570. <description>The exact DateTime format string to use for all formatting and parsing of all DateTime
  2571. values for this connection.</description>
  2572. <description>N</description>
  2573. <description>null</description>
  2574. </item>
  2575. <item>
  2576. <description>BaseSchemaName</description>
  2577. <description>Some base data classes in the framework (e.g. those that build SQL queries dynamically)
  2578. assume that an ADO.NET provider cannot support an alternate catalog (i.e. database) without supporting
  2579. alternate schemas as well; however, SQLite does not fit into this model. Therefore, this value is used
  2580. as a placeholder and removed prior to preparing any SQL statements that may contain it.</description>
  2581. <description>N</description>
  2582. <description>sqlite_default_schema</description>
  2583. </item>
  2584. <item>
  2585. <description>BinaryGUID</description>
  2586. <description><b>True</b> - Store GUID columns in binary form<br/><b>False</b> - Store GUID columns as text</description>
  2587. <description>N</description>
  2588. <description>True</description>
  2589. </item>
  2590. <item>
  2591. <description>Cache Size</description>
  2592. <description>{size in bytes}</description>
  2593. <description>N</description>
  2594. <description>2000</description>
  2595. </item>
  2596. <item>
  2597. <description>Synchronous</description>
  2598. <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>
  2599. <description>N</description>
  2600. <description>Full</description>
  2601. </item>
  2602. <item>
  2603. <description>Page Size</description>
  2604. <description>{size in bytes}</description>
  2605. <description>N</description>
  2606. <description>1024</description>
  2607. </item>
  2608. <item>
  2609. <description>Password</description>
  2610. <description>{password} - Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  2611. <description>N</description>
  2612. <description></description>
  2613. </item>
  2614. <item>
  2615. <description>HexPassword</description>
  2616. <description>{hexPassword} - Must contain a sequence of zero or more hexadecimal encoded byte values without a leading "0x" prefix. Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  2617. <description>N</description>
  2618. <description></description>
  2619. </item>
  2620. <item>
  2621. <description>Enlist</description>
  2622. <description><b>Y</b> - Automatically enlist in distributed transactions<br/><b>N</b> - No automatic enlistment</description>
  2623. <description>N</description>
  2624. <description>Y</description>
  2625. </item>
  2626. <item>
  2627. <description>Pooling</description>
  2628. <description>
  2629. <b>True</b> - Use connection pooling.<br/>
  2630. <b>False</b> - Do not use connection pooling.<br/><br/>
  2631. <b>WARNING:</b> When using the default connection pool implementation,
  2632. setting this property to True should be avoided by applications that make
  2633. use of COM (either directly or indirectly) due to possible deadlocks that
  2634. can occur during the finalization of some COM objects.
  2635. </description>
  2636. <description>N</description>
  2637. <description>False</description>
  2638. </item>
  2639. <item>
  2640. <description>FailIfMissing</description>
  2641. <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>
  2642. <description>N</description>
  2643. <description>False</description>
  2644. </item>
  2645. <item>
  2646. <description>Max Page Count</description>
  2647. <description>{size in pages} - Limits the maximum number of pages (limits the size) of the database</description>
  2648. <description>N</description>
  2649. <description>0</description>
  2650. </item>
  2651. <item>
  2652. <description>Legacy Format</description>
  2653. <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>
  2654. <description>N</description>
  2655. <description>False</description>
  2656. </item>
  2657. <item>
  2658. <description>Default Timeout</description>
  2659. <description>{time in seconds}<br/>The default command timeout</description>
  2660. <description>N</description>
  2661. <description>30</description>
  2662. </item>
  2663. <item>
  2664. <description>Journal Mode</description>
  2665. <description><b>Delete</b> - Delete the journal file after a commit<br/><b>Persist</b> - Zero out and leave the journal file on disk after a commit<br/><b>Off</b> - Disable the rollback journal entirely</description>
  2666. <description>N</description>
  2667. <description>Delete</description>
  2668. </item>
  2669. <item>
  2670. <description>Read Only</description>
  2671. <description><b>True</b> - Open the database for read only access<br/><b>False</b> - Open the database for normal read/write access</description>
  2672. <description>N</description>
  2673. <description>False</description>
  2674. </item>
  2675. <item>
  2676. <description>Max Pool Size</description>
  2677. <description>The maximum number of connections for the given connection string that can be in the connection pool</description>
  2678. <description>N</description>
  2679. <description>100</description>
  2680. </item>
  2681. <item>
  2682. <description>Default IsolationLevel</description>
  2683. <description>The default transaciton isolation level</description>
  2684. <description>N</description>
  2685. <description>Serializable</description>
  2686. </item>
  2687. <item>
  2688. <description>Foreign Keys</description>
  2689. <description>Enable foreign key constraints</description>
  2690. <description>N</description>
  2691. <description>False</description>
  2692. </item>
  2693. <item>
  2694. <description>Flags</description>
  2695. <description>Extra behavioral flags for the connection. See the <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for possible values.</description>
  2696. <description>N</description>
  2697. <description>Default</description>
  2698. </item>
  2699. <item>
  2700. <description>SetDefaults</description>
  2701. <description>
  2702. <b>True</b> - Apply the default connection settings to the opened database.<br/>
  2703. <b>False</b> - Skip applying the default connection settings to the opened database.
  2704. </description>
  2705. <description>N</description>
  2706. <description>True</description>
  2707. </item>
  2708. <item>
  2709. <description>ToFullPath</description>
  2710. <description>
  2711. <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/>
  2712. <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening.
  2713. </description>
  2714. <description>N</description>
  2715. <description>True</description>
  2716. </item>
  2717. <item>
  2718. <description>PrepareRetries</description>
  2719. <description>
  2720. The maximum number of retries when preparing SQL to be executed. This
  2721. normally only applies to preparation errors resulting from the database
  2722. schema being changed.
  2723. </description>
  2724. <description>N</description>
  2725. <description>3</description>
  2726. </item>
  2727. </list>
  2728. </remarks>
  2729. </member>
  2730. <member name="F:System.Data.SQLite.SQLiteConnection.BadDbType">
  2731. <summary>
  2732. The "invalid value" for the <see cref="T:System.Data.DbType"/> enumeration used
  2733. by the <see cref="P:System.Data.SQLite.SQLiteConnection.DefaultDbType"/> property. This constant is shared
  2734. by this class and the SQLiteConnectionStringBuilder class.
  2735. </summary>
  2736. </member>
  2737. <member name="F:System.Data.SQLite.SQLiteConnection.DefaultBaseSchemaName">
  2738. <summary>
  2739. The default "stub" (i.e. placeholder) base schema name to use when
  2740. returning column schema information. Used as the initial value of
  2741. the BaseSchemaName property. This should start with "sqlite_*"
  2742. because those names are reserved for use by SQLite (i.e. they cannot
  2743. be confused with the names of user objects).
  2744. </summary>
  2745. </member>
  2746. <member name="F:System.Data.SQLite.SQLiteConnection._assembly">
  2747. <summary>
  2748. The managed assembly containing this type.
  2749. </summary>
  2750. </member>
  2751. <member name="F:System.Data.SQLite.SQLiteConnection._syncRoot">
  2752. <summary>
  2753. Object used to synchronize access to the static instance data
  2754. for this class.
  2755. </summary>
  2756. </member>
  2757. <member name="F:System.Data.SQLite.SQLiteConnection._sharedFlags">
  2758. <summary>
  2759. The extra connection flags to be used for all opened connections.
  2760. </summary>
  2761. </member>
  2762. <member name="F:System.Data.SQLite.SQLiteConnection._connectionState">
  2763. <summary>
  2764. State of the current connection
  2765. </summary>
  2766. </member>
  2767. <member name="F:System.Data.SQLite.SQLiteConnection._connectionString">
  2768. <summary>
  2769. The connection string
  2770. </summary>
  2771. </member>
  2772. <member name="F:System.Data.SQLite.SQLiteConnection._transactionLevel">
  2773. <summary>
  2774. Nesting level of the transactions open on the connection
  2775. </summary>
  2776. </member>
  2777. <member name="F:System.Data.SQLite.SQLiteConnection._noDispose">
  2778. <summary>
  2779. If this flag is non-zero, the <see cref="M:System.Data.SQLite.SQLiteConnection.Dispose"/> method will have
  2780. no effect; however, the <see cref="M:System.Data.SQLite.SQLiteConnection.Close"/> method will continue to
  2781. behave as normal.
  2782. </summary>
  2783. </member>
  2784. <member name="F:System.Data.SQLite.SQLiteConnection._disposing">
  2785. <summary>
  2786. If set, then the connection is currently being disposed.
  2787. </summary>
  2788. </member>
  2789. <member name="F:System.Data.SQLite.SQLiteConnection._defaultIsolation">
  2790. <summary>
  2791. The default isolation level for new transactions
  2792. </summary>
  2793. </member>
  2794. <member name="F:System.Data.SQLite.SQLiteConnection._enlistment">
  2795. <summary>
  2796. Whether or not the connection is enlisted in a distrubuted transaction
  2797. </summary>
  2798. </member>
  2799. <member name="F:System.Data.SQLite.SQLiteConnection._typeNames">
  2800. <summary>
  2801. The per-connection mappings between type names and <see cref="T:System.Data.DbType"/>
  2802. values. These mappings override the corresponding global mappings.
  2803. </summary>
  2804. </member>
  2805. <member name="F:System.Data.SQLite.SQLiteConnection._sql">
  2806. <summary>
  2807. The base SQLite object to interop with
  2808. </summary>
  2809. </member>
  2810. <member name="F:System.Data.SQLite.SQLiteConnection._dataSource">
  2811. <summary>
  2812. The database filename minus path and extension
  2813. </summary>
  2814. </member>
  2815. <member name="F:System.Data.SQLite.SQLiteConnection._password">
  2816. <summary>
  2817. Temporary password storage, emptied after the database has been opened
  2818. </summary>
  2819. </member>
  2820. <member name="F:System.Data.SQLite.SQLiteConnection._baseSchemaName">
  2821. <summary>
  2822. The "stub" (i.e. placeholder) base schema name to use when returning
  2823. column schema information.
  2824. </summary>
  2825. </member>
  2826. <member name="F:System.Data.SQLite.SQLiteConnection._flags">
  2827. <summary>
  2828. The extra behavioral flags for this connection, if any. See the
  2829. <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for a list of
  2830. possible values.
  2831. </summary>
  2832. </member>
  2833. <member name="F:System.Data.SQLite.SQLiteConnection._cachedSettings">
  2834. <summary>
  2835. The cached values for all settings that have been fetched on behalf
  2836. of this connection. This cache may be cleared by calling the
  2837. <see cref="M:System.Data.SQLite.SQLiteConnection.ClearCachedSettings"/> method.
  2838. </summary>
  2839. </member>
  2840. <member name="F:System.Data.SQLite.SQLiteConnection._defaultDbType">
  2841. <summary>
  2842. The default databse type for this connection. This value will only
  2843. be used if the <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionTypes"/>
  2844. flag is set.
  2845. </summary>
  2846. </member>
  2847. <member name="F:System.Data.SQLite.SQLiteConnection._defaultTypeName">
  2848. <summary>
  2849. The default databse type name for this connection. This value will only
  2850. be used if the <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionTypes"/>
  2851. flag is set.
  2852. </summary>
  2853. </member>
  2854. <member name="F:System.Data.SQLite.SQLiteConnection._defaultTimeout">
  2855. <summary>
  2856. Default command timeout
  2857. </summary>
  2858. </member>
  2859. <member name="F:System.Data.SQLite.SQLiteConnection._prepareRetries">
  2860. <summary>
  2861. The maximum number of retries when preparing SQL to be executed. This
  2862. normally only applies to preparation errors resulting from the database
  2863. schema being changed.
  2864. </summary>
  2865. </member>
  2866. <member name="F:System.Data.SQLite.SQLiteConnection._parseViaFramework">
  2867. <summary>
  2868. Non-zero if the built-in (i.e. framework provided) connection string
  2869. parser should be used when opening the connection.
  2870. </summary>
  2871. </member>
  2872. <member name="M:System.Data.SQLite.SQLiteConnection.#ctor">
  2873. <overloads>
  2874. Constructs a new SQLiteConnection object
  2875. </overloads>
  2876. <summary>
  2877. Default constructor
  2878. </summary>
  2879. </member>
  2880. <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.String)">
  2881. <summary>
  2882. Initializes the connection with the specified connection string.
  2883. </summary>
  2884. <param name="connectionString">The connection string to use.</param>
  2885. </member>
  2886. <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.IntPtr,System.String,System.Boolean)">
  2887. <summary>
  2888. Initializes the connection with a pre-existing native connection handle.
  2889. This constructor overload is intended to be used only by the private
  2890. <see cref="M:System.Data.SQLite.SQLiteModule.CreateOrConnect(System.Boolean,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  2891. </summary>
  2892. <param name="db">
  2893. The native connection handle to use.
  2894. </param>
  2895. <param name="fileName">
  2896. The file name corresponding to the native connection handle.
  2897. </param>
  2898. <param name="ownHandle">
  2899. Non-zero if this instance owns the native connection handle and
  2900. should dispose of it when it is no longer needed.
  2901. </param>
  2902. </member>
  2903. <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.String,System.Boolean)">
  2904. <summary>
  2905. Initializes the connection with the specified connection string.
  2906. </summary>
  2907. <param name="connectionString">
  2908. The connection string to use.
  2909. </param>
  2910. <param name="parseViaFramework">
  2911. Non-zero to parse the connection string using the built-in (i.e.
  2912. framework provided) parser when opening the connection.
  2913. </param>
  2914. </member>
  2915. <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.Data.SQLite.SQLiteConnection)">
  2916. <summary>
  2917. Clones the settings and connection string from an existing connection. If the existing connection is already open, this
  2918. function will open its own connection, enumerate any attached databases of the original connection, and automatically
  2919. attach to them.
  2920. </summary>
  2921. <param name="connection">The connection to copy the settings from.</param>
  2922. </member>
  2923. <member name="M:System.Data.SQLite.SQLiteConnection.OnChanged(System.Data.SQLite.SQLiteConnection,System.Data.SQLite.ConnectionEventArgs)">
  2924. <summary>
  2925. Raises the <see cref="E:System.Data.SQLite.SQLiteConnection.Changed"/> event.
  2926. </summary>
  2927. <param name="connection">
  2928. The connection associated with this event. If this parameter is not
  2929. null and the specified connection cannot raise events, then the
  2930. registered event handlers will not be invoked.
  2931. </param>
  2932. <param name="e">
  2933. A <see cref="T:System.Data.SQLite.ConnectionEventArgs"/> that contains the event data.
  2934. </param>
  2935. </member>
  2936. <member name="M:System.Data.SQLite.SQLiteConnection.CreateHandle(System.IntPtr)">
  2937. <summary>
  2938. Creates and returns a new managed database connection handle. This
  2939. method is intended to be used by implementations of the
  2940. <see cref="T:System.Data.SQLite.ISQLiteConnectionPool"/> interface only. In theory, it
  2941. could be used by other classes; however, that usage is not supported.
  2942. </summary>
  2943. <param name="nativeHandle">
  2944. This must be a native database connection handle returned by the
  2945. SQLite core library and it must remain valid and open during the
  2946. entire duration of the calling method.
  2947. </param>
  2948. <returns>
  2949. The new managed database connection handle or null if it cannot be
  2950. created.
  2951. </returns>
  2952. </member>
  2953. <member name="M:System.Data.SQLite.SQLiteConnection.BackupDatabase(System.Data.SQLite.SQLiteConnection,System.String,System.String,System.Int32,System.Data.SQLite.SQLiteBackupCallback,System.Int32)">
  2954. <summary>
  2955. Backs up the database, using the specified database connection as the
  2956. destination.
  2957. </summary>
  2958. <param name="destination">The destination database connection.</param>
  2959. <param name="destinationName">The destination database name.</param>
  2960. <param name="sourceName">The source database name.</param>
  2961. <param name="pages">
  2962. The number of pages to copy or negative to copy all remaining pages.
  2963. </param>
  2964. <param name="callback">
  2965. The method to invoke between each step of the backup process. This
  2966. parameter may be null (i.e. no callbacks will be performed).
  2967. </param>
  2968. <param name="retryMilliseconds">
  2969. The number of milliseconds to sleep after encountering a locking error
  2970. during the backup process. A value less than zero means that no sleep
  2971. should be performed.
  2972. </param>
  2973. </member>
  2974. <member name="M:System.Data.SQLite.SQLiteConnection.ClearCachedSettings">
  2975. <summary>
  2976. Clears the per-connection cached settings.
  2977. </summary>
  2978. <returns>
  2979. The total number of per-connection settings cleared.
  2980. </returns>
  2981. </member>
  2982. <member name="M:System.Data.SQLite.SQLiteConnection.TryGetCachedSetting(System.String,System.String,System.Object@)">
  2983. <summary>
  2984. Queries and returns the value of the specified setting, using the
  2985. cached setting names and values for this connection, when available.
  2986. </summary>
  2987. <param name="name">
  2988. The name of the setting.
  2989. </param>
  2990. <param name="default">
  2991. The value to be returned if the setting has not been set explicitly
  2992. or cannot be determined.
  2993. </param>
  2994. <param name="value">
  2995. The value of the cached setting is stored here if found; otherwise,
  2996. the value of <paramref name="default" /> is stored here.
  2997. </param>
  2998. <returns>
  2999. Non-zero if the cached setting was found; otherwise, zero.
  3000. </returns>
  3001. </member>
  3002. <member name="M:System.Data.SQLite.SQLiteConnection.SetCachedSetting(System.String,System.Object)">
  3003. <summary>
  3004. Adds or sets the cached setting specified by <paramref name="name" />
  3005. to the value specified by <paramref name="value" />.
  3006. </summary>
  3007. <param name="name">
  3008. The name of the cached setting to add or replace.
  3009. </param>
  3010. <param name="value">
  3011. The new value of the cached setting.
  3012. </param>
  3013. </member>
  3014. <member name="M:System.Data.SQLite.SQLiteConnection.ClearTypeMappings">
  3015. <summary>
  3016. Clears the per-connection type mappings.
  3017. </summary>
  3018. <returns>
  3019. The total number of per-connection type mappings cleared.
  3020. </returns>
  3021. </member>
  3022. <member name="M:System.Data.SQLite.SQLiteConnection.GetTypeMappings">
  3023. <summary>
  3024. Returns the per-connection type mappings.
  3025. </summary>
  3026. <returns>
  3027. The per-connection type mappings -OR- null if they are unavailable.
  3028. </returns>
  3029. </member>
  3030. <member name="M:System.Data.SQLite.SQLiteConnection.AddTypeMapping(System.String,System.Data.DbType,System.Boolean)">
  3031. <summary>
  3032. Adds a per-connection type mapping, possibly replacing one or more
  3033. that already exist.
  3034. </summary>
  3035. <param name="typeName">
  3036. The case-insensitive database type name (e.g. "MYDATE"). The value
  3037. of this parameter cannot be null. Using an empty string value (or
  3038. a string value consisting entirely of whitespace) for this parameter
  3039. is not recommended.
  3040. </param>
  3041. <param name="dataType">
  3042. The <see cref="T:System.Data.DbType"/> value that should be associated with the
  3043. specified type name.
  3044. </param>
  3045. <param name="primary">
  3046. Non-zero if this mapping should be considered to be the primary one
  3047. for the specified <see cref="T:System.Data.DbType"/>.
  3048. </param>
  3049. <returns>
  3050. A negative value if nothing was done. Zero if no per-connection type
  3051. mappings were replaced (i.e. it was a pure add operation). More than
  3052. zero if some per-connection type mappings were replaced.
  3053. </returns>
  3054. </member>
  3055. <member name="M:System.Data.SQLite.SQLiteConnection.BindFunction(System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction)">
  3056. <summary>
  3057. Attempts to bind the specified <see cref="T:System.Data.SQLite.SQLiteFunction"/> object
  3058. instance to this connection.
  3059. </summary>
  3060. <param name="functionAttribute">
  3061. The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  3062. the metadata for the function to be bound.
  3063. </param>
  3064. <param name="function">
  3065. The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  3066. function to be bound.
  3067. </param>
  3068. </member>
  3069. <member name="M:System.Data.SQLite.SQLiteConnection.ParseConnectionString(System.String,System.Boolean,System.Boolean)">
  3070. <summary>
  3071. Parses a connection string into component parts using the custom
  3072. connection string parser. An exception may be thrown if the syntax
  3073. of the connection string is incorrect.
  3074. </summary>
  3075. <param name="connectionString">
  3076. The connection string to parse.
  3077. </param>
  3078. <param name="parseViaFramework">
  3079. Non-zero to parse the connection string using the algorithm provided
  3080. by the framework itself. This is not applicable when running on the
  3081. .NET Compact Framework.
  3082. </param>
  3083. <param name="allowNameOnly">
  3084. Non-zero if names are allowed without values.
  3085. </param>
  3086. <returns>
  3087. The list of key/value pairs corresponding to the parameters specified
  3088. within the connection string.
  3089. </returns>
  3090. </member>
  3091. <member name="M:System.Data.SQLite.SQLiteConnection.Dispose">
  3092. <summary>
  3093. Disposes and finalizes the connection, if applicable.
  3094. </summary>
  3095. </member>
  3096. <member name="M:System.Data.SQLite.SQLiteConnection.Clone">
  3097. <summary>
  3098. Creates a clone of the connection. All attached databases and user-defined functions are cloned. If the existing connection is open, the cloned connection
  3099. will also be opened.
  3100. </summary>
  3101. <returns></returns>
  3102. </member>
  3103. <member name="M:System.Data.SQLite.SQLiteConnection.CreateFile(System.String)">
  3104. <summary>
  3105. Creates a database file. This just creates a zero-byte file which SQLite
  3106. will turn into a database when the file is opened properly.
  3107. </summary>
  3108. <param name="databaseFileName">The file to create</param>
  3109. </member>
  3110. <member name="M:System.Data.SQLite.SQLiteConnection.OnStateChange(System.Data.ConnectionState,System.Data.StateChangeEventArgs@)">
  3111. <summary>
  3112. Raises the state change event when the state of the connection changes
  3113. </summary>
  3114. <param name="newState">The new connection state. If this is different
  3115. from the previous state, the <see cref="E:System.Data.SQLite.SQLiteConnection.StateChange"/> event is
  3116. raised.</param>
  3117. <param name="eventArgs">The event data created for the raised event, if
  3118. it was actually raised.</param>
  3119. </member>
  3120. <member name="M:System.Data.SQLite.SQLiteConnection.GetFallbackDefaultIsolationLevel">
  3121. <summary>
  3122. Determines and returns the fallback default isolation level when one cannot be
  3123. obtained from an existing connection instance.
  3124. </summary>
  3125. <returns>
  3126. The fallback default isolation level for this connection instance -OR-
  3127. <see cref="F:System.Data.IsolationLevel.Unspecified"/> if it cannot be determined.
  3128. </returns>
  3129. </member>
  3130. <member name="M:System.Data.SQLite.SQLiteConnection.GetDefaultIsolationLevel">
  3131. <summary>
  3132. Determines and returns the default isolation level for this connection instance.
  3133. </summary>
  3134. <returns>
  3135. The default isolation level for this connection instance -OR-
  3136. <see cref="F:System.Data.IsolationLevel.Unspecified"/> if it cannot be determined.
  3137. </returns>
  3138. </member>
  3139. <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel,System.Boolean)">
  3140. <summary>
  3141. OBSOLETE. Creates a new SQLiteTransaction if one isn't already active on the connection.
  3142. </summary>
  3143. <param name="isolationLevel">This parameter is ignored.</param>
  3144. <param name="deferredLock">When TRUE, SQLite defers obtaining a write lock until a write operation is requested.
  3145. When FALSE, a writelock is obtained immediately. The default is TRUE, but in a multi-threaded multi-writer
  3146. environment, one may instead choose to lock the database immediately to avoid any possible writer deadlock.</param>
  3147. <returns>Returns a SQLiteTransaction object.</returns>
  3148. </member>
  3149. <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Boolean)">
  3150. <summary>
  3151. OBSOLETE. Creates a new SQLiteTransaction if one isn't already active on the connection.
  3152. </summary>
  3153. <param name="deferredLock">When TRUE, SQLite defers obtaining a write lock until a write operation is requested.
  3154. When FALSE, a writelock is obtained immediately. The default is false, but in a multi-threaded multi-writer
  3155. environment, one may instead choose to lock the database immediately to avoid any possible writer deadlock.</param>
  3156. <returns>Returns a SQLiteTransaction object.</returns>
  3157. </member>
  3158. <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel)">
  3159. <summary>
  3160. Creates a new <see cref="T:System.Data.SQLite.SQLiteTransaction"/> if one isn't already active on the connection.
  3161. </summary>
  3162. <param name="isolationLevel">Supported isolation levels are Serializable, ReadCommitted and Unspecified.</param>
  3163. <remarks>
  3164. Unspecified will use the default isolation level specified in the connection string. If no isolation level is specified in the
  3165. connection string, Serializable is used.
  3166. Serializable transactions are the default. In this mode, the engine gets an immediate lock on the database, and no other threads
  3167. may begin a transaction. Other threads may read from the database, but not write.
  3168. With a ReadCommitted isolation level, locks are deferred and elevated as needed. It is possible for multiple threads to start
  3169. a transaction in ReadCommitted mode, but if a thread attempts to commit a transaction while another thread
  3170. has a ReadCommitted lock, it may timeout or cause a deadlock on both threads until both threads' CommandTimeout's are reached.
  3171. </remarks>
  3172. <returns>Returns a SQLiteTransaction object.</returns>
  3173. </member>
  3174. <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction">
  3175. <summary>
  3176. Creates a new <see cref="T:System.Data.SQLite.SQLiteTransaction"/> if one isn't already
  3177. active on the connection.
  3178. </summary>
  3179. <returns>Returns the new transaction object.</returns>
  3180. </member>
  3181. <member name="M:System.Data.SQLite.SQLiteConnection.BeginDbTransaction(System.Data.IsolationLevel)">
  3182. <summary>
  3183. Forwards to the local <see cref="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel)"/> function
  3184. </summary>
  3185. <param name="isolationLevel">Supported isolation levels are Unspecified, Serializable, and ReadCommitted</param>
  3186. <returns></returns>
  3187. </member>
  3188. <member name="M:System.Data.SQLite.SQLiteConnection.ChangeDatabase(System.String)">
  3189. <summary>
  3190. This method is not implemented; however, the <see cref="E:System.Data.SQLite.SQLiteConnection.Changed"/>
  3191. event will still be raised.
  3192. </summary>
  3193. <param name="databaseName"></param>
  3194. </member>
  3195. <member name="M:System.Data.SQLite.SQLiteConnection.Close">
  3196. <summary>
  3197. When the database connection is closed, all commands linked to this connection are automatically reset.
  3198. </summary>
  3199. </member>
  3200. <member name="M:System.Data.SQLite.SQLiteConnection.ClearPool(System.Data.SQLite.SQLiteConnection)">
  3201. <summary>
  3202. Clears the connection pool associated with the connection. Any other active connections using the same database file
  3203. will be discarded instead of returned to the pool when they are closed.
  3204. </summary>
  3205. <param name="connection"></param>
  3206. </member>
  3207. <member name="M:System.Data.SQLite.SQLiteConnection.ClearAllPools">
  3208. <summary>
  3209. Clears all connection pools. Any active connections will be discarded instead of sent to the pool when they are closed.
  3210. </summary>
  3211. </member>
  3212. <member name="M:System.Data.SQLite.SQLiteConnection.CreateCommand">
  3213. <summary>
  3214. Create a new <see cref="T:System.Data.SQLite.SQLiteCommand"/> and associate it with this connection.
  3215. </summary>
  3216. <returns>Returns a new command object already assigned to this connection.</returns>
  3217. </member>
  3218. <member name="M:System.Data.SQLite.SQLiteConnection.CreateDbCommand">
  3219. <summary>
  3220. Forwards to the local <see cref="M:System.Data.SQLite.SQLiteConnection.CreateCommand"/> function.
  3221. </summary>
  3222. <returns></returns>
  3223. </member>
  3224. <member name="M:System.Data.SQLite.SQLiteConnection.ParseConnectionString(System.String,System.Boolean)">
  3225. <summary>
  3226. Parses a connection string into component parts using the custom
  3227. connection string parser. An exception may be thrown if the syntax
  3228. of the connection string is incorrect.
  3229. </summary>
  3230. <param name="connectionString">
  3231. The connection string to parse.
  3232. </param>
  3233. <param name="allowNameOnly">
  3234. Non-zero if names are allowed without values.
  3235. </param>
  3236. <returns>
  3237. The list of key/value pairs corresponding to the parameters specified
  3238. within the connection string.
  3239. </returns>
  3240. </member>
  3241. <member name="M:System.Data.SQLite.SQLiteConnection.ParseConnectionStringViaFramework(System.String,System.Boolean)">
  3242. <summary>
  3243. Parses a connection string using the built-in (i.e. framework provided)
  3244. connection string parser class and returns the key/value pairs. An
  3245. exception may be thrown if the connection string is invalid or cannot be
  3246. parsed. When compiled for the .NET Compact Framework, the custom
  3247. connection string parser is always used instead because the framework
  3248. provided one is unavailable there.
  3249. </summary>
  3250. <param name="connectionString">
  3251. The connection string to parse.
  3252. </param>
  3253. <param name="strict">
  3254. Non-zero to throw an exception if any connection string values are not of
  3255. the <see cref="T:System.String"/> type. This is not applicable when running on
  3256. the .NET Compact Framework.
  3257. </param>
  3258. <returns>The list of key/value pairs.</returns>
  3259. </member>
  3260. <member name="M:System.Data.SQLite.SQLiteConnection.EnlistTransaction(System.Transactions.Transaction)">
  3261. <summary>
  3262. Manual distributed transaction enlistment support
  3263. </summary>
  3264. <param name="transaction">The distributed transaction to enlist in</param>
  3265. </member>
  3266. <member name="M:System.Data.SQLite.SQLiteConnection.FindKey(System.Collections.Generic.SortedList{System.String,System.String},System.String,System.String)">
  3267. <summary>
  3268. Looks for a key in the array of key/values of the parameter string. If not found, return the specified default value
  3269. </summary>
  3270. <param name="items">The list to look in</param>
  3271. <param name="key">The key to find</param>
  3272. <param name="defValue">The default value to return if the key is not found</param>
  3273. <returns>The value corresponding to the specified key, or the default value if not found.</returns>
  3274. </member>
  3275. <member name="M:System.Data.SQLite.SQLiteConnection.TryParseEnum(System.Type,System.String,System.Boolean)">
  3276. <summary>
  3277. Attempts to convert the string value to an enumerated value of the specified type.
  3278. </summary>
  3279. <param name="type">The enumerated type to convert the string value to.</param>
  3280. <param name="value">The string value to be converted.</param>
  3281. <param name="ignoreCase">Non-zero to make the conversion case-insensitive.</param>
  3282. <returns>The enumerated value upon success or null upon error.</returns>
  3283. </member>
  3284. <member name="M:System.Data.SQLite.SQLiteConnection.TryParseByte(System.String,System.Globalization.NumberStyles,System.Byte@)">
  3285. <summary>
  3286. Attempts to convert an input string into a byte value.
  3287. </summary>
  3288. <param name="value">
  3289. The string value to be converted.
  3290. </param>
  3291. <param name="style">
  3292. The number styles to use for the conversion.
  3293. </param>
  3294. <param name="result">
  3295. Upon sucess, this will contain the parsed byte value.
  3296. Upon failure, the value of this parameter is undefined.
  3297. </param>
  3298. <returns>
  3299. Non-zero upon success; zero on failure.
  3300. </returns>
  3301. </member>
  3302. <member name="M:System.Data.SQLite.SQLiteConnection.EnableExtensions(System.Boolean)">
  3303. <summary>
  3304. Enables or disabled extension loading.
  3305. </summary>
  3306. <param name="enable">
  3307. True to enable loading of extensions, false to disable.
  3308. </param>
  3309. </member>
  3310. <member name="M:System.Data.SQLite.SQLiteConnection.LoadExtension(System.String)">
  3311. <summary>
  3312. Loads a SQLite extension library from the named dynamic link library file.
  3313. </summary>
  3314. <param name="fileName">
  3315. The name of the dynamic link library file containing the extension.
  3316. </param>
  3317. </member>
  3318. <member name="M:System.Data.SQLite.SQLiteConnection.LoadExtension(System.String,System.String)">
  3319. <summary>
  3320. Loads a SQLite extension library from the named dynamic link library file.
  3321. </summary>
  3322. <param name="fileName">
  3323. The name of the dynamic link library file containing the extension.
  3324. </param>
  3325. <param name="procName">
  3326. The name of the exported function used to initialize the extension.
  3327. If null, the default "sqlite3_extension_init" will be used.
  3328. </param>
  3329. </member>
  3330. <member name="M:System.Data.SQLite.SQLiteConnection.CreateModule(System.Data.SQLite.SQLiteModule)">
  3331. <summary>
  3332. Creates a disposable module containing the implementation of a virtual
  3333. table.
  3334. </summary>
  3335. <param name="module">
  3336. The module object to be used when creating the disposable module.
  3337. </param>
  3338. </member>
  3339. <member name="M:System.Data.SQLite.SQLiteConnection.FromHexString(System.String)">
  3340. <summary>
  3341. Parses a string containing a sequence of zero or more hexadecimal
  3342. encoded byte values and returns the resulting byte array. The
  3343. "0x" prefix is not allowed on the input string.
  3344. </summary>
  3345. <param name="text">
  3346. The input string containing zero or more hexadecimal encoded byte
  3347. values.
  3348. </param>
  3349. <returns>
  3350. A byte array containing the parsed byte values or null if an error
  3351. was encountered.
  3352. </returns>
  3353. </member>
  3354. <member name="M:System.Data.SQLite.SQLiteConnection.ToHexString(System.Byte[])">
  3355. <summary>
  3356. Creates and returns a string containing the hexadecimal encoded byte
  3357. values from the input array.
  3358. </summary>
  3359. <param name="array">
  3360. The input array of bytes.
  3361. </param>
  3362. <returns>
  3363. The resulting string or null upon failure.
  3364. </returns>
  3365. </member>
  3366. <member name="M:System.Data.SQLite.SQLiteConnection.FromHexString(System.String,System.String@)">
  3367. <summary>
  3368. Parses a string containing a sequence of zero or more hexadecimal
  3369. encoded byte values and returns the resulting byte array. The
  3370. "0x" prefix is not allowed on the input string.
  3371. </summary>
  3372. <param name="text">
  3373. The input string containing zero or more hexadecimal encoded byte
  3374. values.
  3375. </param>
  3376. <param name="error">
  3377. Upon failure, this will contain an appropriate error message.
  3378. </param>
  3379. <returns>
  3380. A byte array containing the parsed byte values or null if an error
  3381. was encountered.
  3382. </returns>
  3383. </member>
  3384. <member name="M:System.Data.SQLite.SQLiteConnection.GetDefaultPooling">
  3385. <summary>
  3386. This method figures out what the default connection pool setting should
  3387. be based on the connection flags. When present, the "Pooling" connection
  3388. string property value always overrides the value returned by this method.
  3389. </summary>
  3390. <returns>
  3391. Non-zero if the connection pool should be enabled by default; otherwise,
  3392. zero.
  3393. </returns>
  3394. </member>
  3395. <member name="M:System.Data.SQLite.SQLiteConnection.GetEffectiveIsolationLevel(System.Data.IsolationLevel)">
  3396. <summary>
  3397. Determines the transaction isolation level that should be used by
  3398. the caller, primarily based upon the one specified by the caller.
  3399. If mapping of transaction isolation levels is enabled, the returned
  3400. transaction isolation level may be significantly different than the
  3401. originally specified one.
  3402. </summary>
  3403. <param name="isolationLevel">
  3404. The originally specified transaction isolation level.
  3405. </param>
  3406. <returns>
  3407. The transaction isolation level that should be used.
  3408. </returns>
  3409. </member>
  3410. <member name="M:System.Data.SQLite.SQLiteConnection.Open">
  3411. <summary>
  3412. Opens the connection using the parameters found in the <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString"/>.
  3413. </summary>
  3414. </member>
  3415. <member name="M:System.Data.SQLite.SQLiteConnection.OpenAndReturn">
  3416. <summary>
  3417. Opens the connection using the parameters found in the <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString"/> and then returns it.
  3418. </summary>
  3419. <returns>The current connection object.</returns>
  3420. </member>
  3421. <member name="M:System.Data.SQLite.SQLiteConnection.Cancel">
  3422. <summary>
  3423. This method causes any pending database operation to abort and return at
  3424. its earliest opportunity. This routine is typically called in response
  3425. to a user action such as pressing "Cancel" or Ctrl-C where the user wants
  3426. a long query operation to halt immediately. It is safe to call this
  3427. routine from any thread. However, it is not safe to call this routine
  3428. with a database connection that is closed or might close before this method
  3429. returns.
  3430. </summary>
  3431. </member>
  3432. <member name="M:System.Data.SQLite.SQLiteConnection.GetMemoryStatistics(System.Collections.Generic.IDictionary{System.String,System.Int64}@)">
  3433. <summary>
  3434. Returns various global memory statistics for the SQLite core library via
  3435. a dictionary of key/value pairs. Currently, only the "MemoryUsed" and
  3436. "MemoryHighwater" keys are returned and they have values that correspond
  3437. to the values that could be obtained via the <see cref="P:System.Data.SQLite.SQLiteConnection.MemoryUsed"/>
  3438. and <see cref="P:System.Data.SQLite.SQLiteConnection.MemoryHighwater"/> connection properties.
  3439. </summary>
  3440. <param name="statistics">
  3441. This dictionary will be populated with the global memory statistics. It
  3442. will be created if necessary.
  3443. </param>
  3444. </member>
  3445. <member name="M:System.Data.SQLite.SQLiteConnection.ReleaseMemory">
  3446. <summary>
  3447. Attempts to free as much heap memory as possible for this database connection.
  3448. </summary>
  3449. </member>
  3450. <member name="M:System.Data.SQLite.SQLiteConnection.ReleaseMemory(System.Int32,System.Boolean,System.Boolean,System.Int32@,System.Boolean@,System.UInt32@)">
  3451. <summary>
  3452. Attempts to free N bytes of heap memory by deallocating non-essential memory
  3453. allocations held by the database library. Memory used to cache database pages
  3454. to improve performance is an example of non-essential memory. This is a no-op
  3455. returning zero if the SQLite core library was not compiled with the compile-time
  3456. option SQLITE_ENABLE_MEMORY_MANAGEMENT. Optionally, attempts to reset and/or
  3457. compact the Win32 native heap, if applicable.
  3458. </summary>
  3459. <param name="nBytes">
  3460. The requested number of bytes to free.
  3461. </param>
  3462. <param name="reset">
  3463. Non-zero to attempt a heap reset.
  3464. </param>
  3465. <param name="compact">
  3466. Non-zero to attempt heap compaction.
  3467. </param>
  3468. <param name="nFree">
  3469. The number of bytes actually freed. This value may be zero.
  3470. </param>
  3471. <param name="resetOk">
  3472. This value will be non-zero if the heap reset was successful.
  3473. </param>
  3474. <param name="nLargest">
  3475. The size of the largest committed free block in the heap, in bytes.
  3476. This value will be zero unless heap compaction is enabled.
  3477. </param>
  3478. <returns>
  3479. A standard SQLite return code (i.e. zero for success and non-zero
  3480. for failure).
  3481. </returns>
  3482. </member>
  3483. <member name="M:System.Data.SQLite.SQLiteConnection.SetMemoryStatus(System.Boolean)">
  3484. <summary>
  3485. Sets the status of the memory usage tracking subsystem in the SQLite core library. By default, this is enabled.
  3486. If this is disabled, memory usage tracking will not be performed. This is not really a per-connection value, it is
  3487. global to the process.
  3488. </summary>
  3489. <param name="value">Non-zero to enable memory usage tracking, zero otherwise.</param>
  3490. <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  3491. </member>
  3492. <member name="M:System.Data.SQLite.SQLiteConnection.Shutdown">
  3493. <summary>
  3494. Passes a shutdown request to the SQLite core library. Does not throw
  3495. an exception if the shutdown request fails.
  3496. </summary>
  3497. <returns>
  3498. A standard SQLite return code (i.e. zero for success and non-zero for
  3499. failure).
  3500. </returns>
  3501. </member>
  3502. <member name="M:System.Data.SQLite.SQLiteConnection.Shutdown(System.Boolean,System.Boolean)">
  3503. <summary>
  3504. Passes a shutdown request to the SQLite core library. Throws an
  3505. exception if the shutdown request fails and the no-throw parameter
  3506. is non-zero.
  3507. </summary>
  3508. <param name="directories">
  3509. Non-zero to reset the database and temporary directories to their
  3510. default values, which should be null for both.
  3511. </param>
  3512. <param name="noThrow">
  3513. When non-zero, throw an exception if the shutdown request fails.
  3514. </param>
  3515. </member>
  3516. <member name="M:System.Data.SQLite.SQLiteConnection.SetExtendedResultCodes(System.Boolean)">
  3517. Enables or disabled extended result codes returned by SQLite
  3518. </member>
  3519. <member name="M:System.Data.SQLite.SQLiteConnection.ResultCode">
  3520. Enables or disabled extended result codes returned by SQLite
  3521. </member>
  3522. <member name="M:System.Data.SQLite.SQLiteConnection.ExtendedResultCode">
  3523. Enables or disabled extended result codes returned by SQLite
  3524. </member>
  3525. <member name="M:System.Data.SQLite.SQLiteConnection.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  3526. Add a log message via the SQLite sqlite3_log interface.
  3527. </member>
  3528. <member name="M:System.Data.SQLite.SQLiteConnection.LogMessage(System.Int32,System.String)">
  3529. Add a log message via the SQLite sqlite3_log interface.
  3530. </member>
  3531. <member name="M:System.Data.SQLite.SQLiteConnection.ChangePassword(System.String)">
  3532. <summary>
  3533. Change the password (or assign a password) to an open database.
  3534. </summary>
  3535. <remarks>
  3536. No readers or writers may be active for this process. The database must already be open
  3537. and if it already was password protected, the existing password must already have been supplied.
  3538. </remarks>
  3539. <param name="newPassword">The new password to assign to the database</param>
  3540. </member>
  3541. <member name="M:System.Data.SQLite.SQLiteConnection.ChangePassword(System.Byte[])">
  3542. <summary>
  3543. Change the password (or assign a password) to an open database.
  3544. </summary>
  3545. <remarks>
  3546. No readers or writers may be active for this process. The database must already be open
  3547. and if it already was password protected, the existing password must already have been supplied.
  3548. </remarks>
  3549. <param name="newPassword">The new password to assign to the database</param>
  3550. </member>
  3551. <member name="M:System.Data.SQLite.SQLiteConnection.SetPassword(System.String)">
  3552. <summary>
  3553. Sets the password for a password-protected database. A password-protected database is
  3554. unusable for any operation until the password has been set.
  3555. </summary>
  3556. <param name="databasePassword">The password for the database</param>
  3557. </member>
  3558. <member name="M:System.Data.SQLite.SQLiteConnection.SetPassword(System.Byte[])">
  3559. <summary>
  3560. Sets the password for a password-protected database. A password-protected database is
  3561. unusable for any operation until the password has been set.
  3562. </summary>
  3563. <param name="databasePassword">The password for the database</param>
  3564. </member>
  3565. <member name="M:System.Data.SQLite.SQLiteConnection.SetAvRetry(System.Int32@,System.Int32@)">
  3566. <summary>
  3567. Queries or modifies the number of retries or the retry interval (in milliseconds) for
  3568. certain I/O operations that may fail due to anti-virus software.
  3569. </summary>
  3570. <param name="count">The number of times to retry the I/O operation. A negative value
  3571. will cause the current count to be queried and replace that negative value.</param>
  3572. <param name="interval">The number of milliseconds to wait before retrying the I/O
  3573. operation. This number is multiplied by the number of retry attempts so far to come
  3574. up with the final number of milliseconds to wait. A negative value will cause the
  3575. current interval to be queried and replace that negative value.</param>
  3576. <returns>Zero for success, non-zero for error.</returns>
  3577. </member>
  3578. <member name="M:System.Data.SQLite.SQLiteConnection.SetChunkSize(System.Int32)">
  3579. <summary>
  3580. Sets the chunk size for the primary file associated with this database
  3581. connection.
  3582. </summary>
  3583. <param name="size">
  3584. The new chunk size for the main database, in bytes.
  3585. </param>
  3586. <returns>
  3587. Zero for success, non-zero for error.
  3588. </returns>
  3589. </member>
  3590. <member name="M:System.Data.SQLite.SQLiteConnection.UnwrapString(System.String)">
  3591. <summary>
  3592. Removes one set of surrounding single -OR- double quotes from the string
  3593. value and returns the resulting string value. If the string is null, empty,
  3594. or contains quotes that are not balanced, nothing is done and the original
  3595. string value will be returned.
  3596. </summary>
  3597. <param name="value">The string value to process.</param>
  3598. <returns>
  3599. The string value, modified to remove one set of surrounding single -OR-
  3600. double quotes, if applicable.
  3601. </returns>
  3602. </member>
  3603. <member name="M:System.Data.SQLite.SQLiteConnection.ExpandFileName(System.String,System.Boolean)">
  3604. <summary>
  3605. Expand the filename of the data source, resolving the |DataDirectory|
  3606. macro as appropriate.
  3607. </summary>
  3608. <param name="sourceFile">The database filename to expand</param>
  3609. <param name="toFullPath">
  3610. Non-zero if the returned file name should be converted to a full path
  3611. (except when using the .NET Compact Framework).
  3612. </param>
  3613. <returns>The expanded path and filename of the filename</returns>
  3614. </member>
  3615. <member name="M:System.Data.SQLite.SQLiteConnection.GetSchema">
  3616. <overloads>
  3617. The following commands are used to extract schema information out of the database. Valid schema types are:
  3618. <list type="bullet">
  3619. <item>
  3620. <description>MetaDataCollections</description>
  3621. </item>
  3622. <item>
  3623. <description>DataSourceInformation</description>
  3624. </item>
  3625. <item>
  3626. <description>Catalogs</description>
  3627. </item>
  3628. <item>
  3629. <description>Columns</description>
  3630. </item>
  3631. <item>
  3632. <description>ForeignKeys</description>
  3633. </item>
  3634. <item>
  3635. <description>Indexes</description>
  3636. </item>
  3637. <item>
  3638. <description>IndexColumns</description>
  3639. </item>
  3640. <item>
  3641. <description>Tables</description>
  3642. </item>
  3643. <item>
  3644. <description>Views</description>
  3645. </item>
  3646. <item>
  3647. <description>ViewColumns</description>
  3648. </item>
  3649. </list>
  3650. </overloads>
  3651. <summary>
  3652. Returns the MetaDataCollections schema
  3653. </summary>
  3654. <returns>A DataTable of the MetaDataCollections schema</returns>
  3655. </member>
  3656. <member name="M:System.Data.SQLite.SQLiteConnection.GetSchema(System.String)">
  3657. <summary>
  3658. Returns schema information of the specified collection
  3659. </summary>
  3660. <param name="collectionName">The schema collection to retrieve</param>
  3661. <returns>A DataTable of the specified collection</returns>
  3662. </member>
  3663. <member name="M:System.Data.SQLite.SQLiteConnection.GetSchema(System.String,System.String[])">
  3664. <summary>
  3665. Retrieves schema information using the specified constraint(s) for the specified collection
  3666. </summary>
  3667. <param name="collectionName">The collection to retrieve.</param>
  3668. <param name="restrictionValues">
  3669. The restrictions to impose. Typically, this may include:
  3670. <list type="table">
  3671. <listheader>
  3672. <term>restrictionValues element index</term>
  3673. <term>usage</term>
  3674. </listheader>
  3675. <item>
  3676. <description>0</description>
  3677. <description>The database (or catalog) name, if applicable.</description>
  3678. </item>
  3679. <item>
  3680. <description>1</description>
  3681. <description>The schema name. This is not used by this provider.</description>
  3682. </item>
  3683. <item>
  3684. <description>2</description>
  3685. <description>The table name, if applicable.</description>
  3686. </item>
  3687. <item>
  3688. <description>3</description>
  3689. <description>
  3690. Depends on <paramref name="collectionName" />.
  3691. When "IndexColumns", it is the index name; otherwise, it is the column name.
  3692. </description>
  3693. </item>
  3694. <item>
  3695. <description>4</description>
  3696. <description>
  3697. Depends on <paramref name="collectionName" />.
  3698. When "IndexColumns", it is the column name; otherwise, it is not used.
  3699. </description>
  3700. </item>
  3701. </list>
  3702. </param>
  3703. <returns>A DataTable of the specified collection</returns>
  3704. </member>
  3705. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_MetaDataCollections">
  3706. <summary>
  3707. Builds a MetaDataCollections schema datatable
  3708. </summary>
  3709. <returns>DataTable</returns>
  3710. </member>
  3711. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_DataSourceInformation">
  3712. <summary>
  3713. Builds a DataSourceInformation datatable
  3714. </summary>
  3715. <returns>DataTable</returns>
  3716. </member>
  3717. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Columns(System.String,System.String,System.String)">
  3718. <summary>
  3719. Build a Columns schema
  3720. </summary>
  3721. <param name="strCatalog">The catalog (attached database) to query, can be null</param>
  3722. <param name="strTable">The table to retrieve schema information for, must not be null</param>
  3723. <param name="strColumn">The column to retrieve schema information for, can be null</param>
  3724. <returns>DataTable</returns>
  3725. </member>
  3726. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Indexes(System.String,System.String,System.String)">
  3727. <summary>
  3728. Returns index information for the given database and catalog
  3729. </summary>
  3730. <param name="strCatalog">The catalog (attached database) to query, can be null</param>
  3731. <param name="strIndex">The name of the index to retrieve information for, can be null</param>
  3732. <param name="strTable">The table to retrieve index information for, can be null</param>
  3733. <returns>DataTable</returns>
  3734. </member>
  3735. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Tables(System.String,System.String,System.String)">
  3736. <summary>
  3737. Retrieves table schema information for the database and catalog
  3738. </summary>
  3739. <param name="strCatalog">The catalog (attached database) to retrieve tables on</param>
  3740. <param name="strTable">The table to retrieve, can be null</param>
  3741. <param name="strType">The table type, can be null</param>
  3742. <returns>DataTable</returns>
  3743. </member>
  3744. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Views(System.String,System.String)">
  3745. <summary>
  3746. Retrieves view schema information for the database
  3747. </summary>
  3748. <param name="strCatalog">The catalog (attached database) to retrieve views on</param>
  3749. <param name="strView">The view name, can be null</param>
  3750. <returns>DataTable</returns>
  3751. </member>
  3752. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Catalogs(System.String)">
  3753. <summary>
  3754. Retrieves catalog (attached databases) schema information for the database
  3755. </summary>
  3756. <param name="strCatalog">The catalog to retrieve, can be null</param>
  3757. <returns>DataTable</returns>
  3758. </member>
  3759. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_IndexColumns(System.String,System.String,System.String,System.String)">
  3760. <summary>
  3761. Returns the base column information for indexes in a database
  3762. </summary>
  3763. <param name="strCatalog">The catalog to retrieve indexes for (can be null)</param>
  3764. <param name="strTable">The table to restrict index information by (can be null)</param>
  3765. <param name="strIndex">The index to restrict index information by (can be null)</param>
  3766. <param name="strColumn">The source column to restrict index information by (can be null)</param>
  3767. <returns>A DataTable containing the results</returns>
  3768. </member>
  3769. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_ViewColumns(System.String,System.String,System.String)">
  3770. <summary>
  3771. Returns detailed column information for a specified view
  3772. </summary>
  3773. <param name="strCatalog">The catalog to retrieve columns for (can be null)</param>
  3774. <param name="strView">The view to restrict column information by (can be null)</param>
  3775. <param name="strColumn">The source column to restrict column information by (can be null)</param>
  3776. <returns>A DataTable containing the results</returns>
  3777. </member>
  3778. <member name="M:System.Data.SQLite.SQLiteConnection.Schema_ForeignKeys(System.String,System.String,System.String)">
  3779. <summary>
  3780. Retrieves foreign key information from the specified set of filters
  3781. </summary>
  3782. <param name="strCatalog">An optional catalog to restrict results on</param>
  3783. <param name="strTable">An optional table to restrict results on</param>
  3784. <param name="strKeyName">An optional foreign key name to restrict results on</param>
  3785. <returns>A DataTable with the results of the query</returns>
  3786. </member>
  3787. <member name="E:System.Data.SQLite.SQLiteConnection._handlers">
  3788. <summary>
  3789. Static variable to store the connection event handlers to call.
  3790. </summary>
  3791. </member>
  3792. <member name="E:System.Data.SQLite.SQLiteConnection.StateChange">
  3793. <summary>
  3794. This event is raised whenever the database is opened or closed.
  3795. </summary>
  3796. </member>
  3797. <member name="E:System.Data.SQLite.SQLiteConnection.Changed">
  3798. <summary>
  3799. This event is raised when events related to the lifecycle of a
  3800. SQLiteConnection object occur.
  3801. </summary>
  3802. </member>
  3803. <member name="P:System.Data.SQLite.SQLiteConnection.ConnectionPool">
  3804. <summary>
  3805. This property is used to obtain or set the custom connection pool
  3806. implementation to use, if any. Setting this property to null will
  3807. cause the default connection pool implementation to be used.
  3808. </summary>
  3809. </member>
  3810. <member name="P:System.Data.SQLite.SQLiteConnection.PoolCount">
  3811. <summary>
  3812. Returns the number of pool entries for the file name associated with this connection.
  3813. </summary>
  3814. </member>
  3815. <member name="P:System.Data.SQLite.SQLiteConnection.ConnectionString">
  3816. <summary>
  3817. The connection string containing the parameters for the connection
  3818. </summary>
  3819. <remarks>
  3820. <list type="table">
  3821. <listheader>
  3822. <term>Parameter</term>
  3823. <term>Values</term>
  3824. <term>Required</term>
  3825. <term>Default</term>
  3826. </listheader>
  3827. <item>
  3828. <description>Data Source</description>
  3829. <description>
  3830. This may be a file name, the string ":memory:", or any supported URI (starting with SQLite 3.7.7).
  3831. Starting with release 1.0.86.0, in order to use more than one consecutive backslash (e.g. for a
  3832. UNC path), each of the adjoining backslash characters must be doubled (e.g. "\\Network\Share\test.db"
  3833. would become "\\\\Network\Share\test.db").
  3834. </description>
  3835. <description>Y</description>
  3836. <description></description>
  3837. </item>
  3838. <item>
  3839. <description>Version</description>
  3840. <description>3</description>
  3841. <description>N</description>
  3842. <description>3</description>
  3843. </item>
  3844. <item>
  3845. <description>UseUTF16Encoding</description>
  3846. <description><b>True</b><br/><b>False</b></description>
  3847. <description>N</description>
  3848. <description>False</description>
  3849. </item>
  3850. <item>
  3851. <description>DateTimeFormat</description>
  3852. <description>
  3853. <b>Ticks</b> - Use the value of DateTime.Ticks.<br/>
  3854. <b>ISO8601</b> - Use the ISO-8601 format. Uses the "yyyy-MM-dd HH:mm:ss.FFFFFFFK" format for UTC
  3855. DateTime values and "yyyy-MM-dd HH:mm:ss.FFFFFFF" format for local DateTime values).<br/>
  3856. <b>JulianDay</b> - The interval of time in days and fractions of a day since January 1, 4713 BC.<br/>
  3857. <b>UnixEpoch</b> - The whole number of seconds since the Unix epoch (January 1, 1970).<br/>
  3858. <b>InvariantCulture</b> - Any culture-independent string value that the .NET Framework can interpret as a valid DateTime.<br/>
  3859. <b>CurrentCulture</b> - Any string value that the .NET Framework can interpret as a valid DateTime using the current culture.</description>
  3860. <description>N</description>
  3861. <description>ISO8601</description>
  3862. </item>
  3863. <item>
  3864. <description>DateTimeKind</description>
  3865. <description><b>Unspecified</b> - Not specified as either UTC or local time.<br/><b>Utc</b> - The time represented is UTC.<br/><b>Local</b> - The time represented is local time.</description>
  3866. <description>N</description>
  3867. <description>Unspecified</description>
  3868. </item>
  3869. <item>
  3870. <description>DateTimeFormatString</description>
  3871. <description>The exact DateTime format string to use for all formatting and parsing of all DateTime
  3872. values for this connection.</description>
  3873. <description>N</description>
  3874. <description>null</description>
  3875. </item>
  3876. <item>
  3877. <description>BaseSchemaName</description>
  3878. <description>Some base data classes in the framework (e.g. those that build SQL queries dynamically)
  3879. assume that an ADO.NET provider cannot support an alternate catalog (i.e. database) without supporting
  3880. alternate schemas as well; however, SQLite does not fit into this model. Therefore, this value is used
  3881. as a placeholder and removed prior to preparing any SQL statements that may contain it.</description>
  3882. <description>N</description>
  3883. <description>sqlite_default_schema</description>
  3884. </item>
  3885. <item>
  3886. <description>BinaryGUID</description>
  3887. <description><b>True</b> - Store GUID columns in binary form<br/><b>False</b> - Store GUID columns as text</description>
  3888. <description>N</description>
  3889. <description>True</description>
  3890. </item>
  3891. <item>
  3892. <description>Cache Size</description>
  3893. <description>{size in bytes}</description>
  3894. <description>N</description>
  3895. <description>2000</description>
  3896. </item>
  3897. <item>
  3898. <description>Synchronous</description>
  3899. <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>
  3900. <description>N</description>
  3901. <description>Full</description>
  3902. </item>
  3903. <item>
  3904. <description>Page Size</description>
  3905. <description>{size in bytes}</description>
  3906. <description>N</description>
  3907. <description>1024</description>
  3908. </item>
  3909. <item>
  3910. <description>Password</description>
  3911. <description>{password} - Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  3912. <description>N</description>
  3913. <description></description>
  3914. </item>
  3915. <item>
  3916. <description>HexPassword</description>
  3917. <description>{hexPassword} - Must contain a sequence of zero or more hexadecimal encoded byte values without a leading "0x" prefix. Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  3918. <description>N</description>
  3919. <description></description>
  3920. </item>
  3921. <item>
  3922. <description>Enlist</description>
  3923. <description><b>Y</b> - Automatically enlist in distributed transactions<br/><b>N</b> - No automatic enlistment</description>
  3924. <description>N</description>
  3925. <description>Y</description>
  3926. </item>
  3927. <item>
  3928. <description>Pooling</description>
  3929. <description>
  3930. <b>True</b> - Use connection pooling.<br/>
  3931. <b>False</b> - Do not use connection pooling.<br/><br/>
  3932. <b>WARNING:</b> When using the default connection pool implementation,
  3933. setting this property to True should be avoided by applications that
  3934. make use of COM (either directly or indirectly) due to possible
  3935. deadlocks that can occur during the finalization of some COM objects.
  3936. </description>
  3937. <description>N</description>
  3938. <description>False</description>
  3939. </item>
  3940. <item>
  3941. <description>FailIfMissing</description>
  3942. <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>
  3943. <description>N</description>
  3944. <description>False</description>
  3945. </item>
  3946. <item>
  3947. <description>Max Page Count</description>
  3948. <description>{size in pages} - Limits the maximum number of pages (limits the size) of the database</description>
  3949. <description>N</description>
  3950. <description>0</description>
  3951. </item>
  3952. <item>
  3953. <description>Legacy Format</description>
  3954. <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>
  3955. <description>N</description>
  3956. <description>False</description>
  3957. </item>
  3958. <item>
  3959. <description>Default Timeout</description>
  3960. <description>{time in seconds}<br/>The default command timeout</description>
  3961. <description>N</description>
  3962. <description>30</description>
  3963. </item>
  3964. <item>
  3965. <description>Journal Mode</description>
  3966. <description><b>Delete</b> - Delete the journal file after a commit<br/><b>Persist</b> - Zero out and leave the journal file on disk after a commit<br/><b>Off</b> - Disable the rollback journal entirely</description>
  3967. <description>N</description>
  3968. <description>Delete</description>
  3969. </item>
  3970. <item>
  3971. <description>Read Only</description>
  3972. <description><b>True</b> - Open the database for read only access<br/><b>False</b> - Open the database for normal read/write access</description>
  3973. <description>N</description>
  3974. <description>False</description>
  3975. </item>
  3976. <item>
  3977. <description>Max Pool Size</description>
  3978. <description>The maximum number of connections for the given connection string that can be in the connection pool</description>
  3979. <description>N</description>
  3980. <description>100</description>
  3981. </item>
  3982. <item>
  3983. <description>Default IsolationLevel</description>
  3984. <description>The default transaciton isolation level</description>
  3985. <description>N</description>
  3986. <description>Serializable</description>
  3987. </item>
  3988. <item>
  3989. <description>Foreign Keys</description>
  3990. <description>Enable foreign key constraints</description>
  3991. <description>N</description>
  3992. <description>False</description>
  3993. </item>
  3994. <item>
  3995. <description>Flags</description>
  3996. <description>Extra behavioral flags for the connection. See the <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for possible values.</description>
  3997. <description>N</description>
  3998. <description>Default</description>
  3999. </item>
  4000. <item>
  4001. <description>SetDefaults</description>
  4002. <description>
  4003. <b>True</b> - Apply the default connection settings to the opened database.<br/>
  4004. <b>False</b> - Skip applying the default connection settings to the opened database.
  4005. </description>
  4006. <description>N</description>
  4007. <description>True</description>
  4008. </item>
  4009. <item>
  4010. <description>ToFullPath</description>
  4011. <description>
  4012. <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/>
  4013. <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening.
  4014. </description>
  4015. <description>N</description>
  4016. <description>True</description>
  4017. </item>
  4018. <item>
  4019. <description>PrepareRetries</description>
  4020. <description>
  4021. The maximum number of retries when preparing SQL to be executed. This
  4022. normally only applies to preparation errors resulting from the database
  4023. schema being changed.
  4024. </description>
  4025. <description>N</description>
  4026. <description>3</description>
  4027. </item>
  4028. </list>
  4029. </remarks>
  4030. </member>
  4031. <member name="P:System.Data.SQLite.SQLiteConnection.DataSource">
  4032. <summary>
  4033. Returns the data source file name without extension or path.
  4034. </summary>
  4035. </member>
  4036. <member name="P:System.Data.SQLite.SQLiteConnection.Database">
  4037. <summary>
  4038. Returns the string "main".
  4039. </summary>
  4040. </member>
  4041. <member name="P:System.Data.SQLite.SQLiteConnection.DefaultTimeout">
  4042. <summary>
  4043. Gets/sets the default command timeout for newly-created commands. This is especially useful for
  4044. commands used internally such as inside a SQLiteTransaction, where setting the timeout is not possible.
  4045. This can also be set in the ConnectionString with "Default Timeout"
  4046. </summary>
  4047. </member>
  4048. <member name="P:System.Data.SQLite.SQLiteConnection.PrepareRetries">
  4049. <summary>
  4050. The maximum number of retries when preparing SQL to be executed. This
  4051. normally only applies to preparation errors resulting from the database
  4052. schema being changed.
  4053. </summary>
  4054. </member>
  4055. <member name="P:System.Data.SQLite.SQLiteConnection.ParseViaFramework">
  4056. <summary>
  4057. Non-zero if the built-in (i.e. framework provided) connection string
  4058. parser should be used when opening the connection.
  4059. </summary>
  4060. </member>
  4061. <member name="P:System.Data.SQLite.SQLiteConnection.Flags">
  4062. <summary>
  4063. Gets/sets the extra behavioral flags for this connection. See the
  4064. <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for a list of
  4065. possible values.
  4066. </summary>
  4067. </member>
  4068. <member name="P:System.Data.SQLite.SQLiteConnection.DefaultDbType">
  4069. <summary>
  4070. Gets/sets the default database type for this connection. This value
  4071. will only be used when not null.
  4072. </summary>
  4073. </member>
  4074. <member name="P:System.Data.SQLite.SQLiteConnection.DefaultTypeName">
  4075. <summary>
  4076. Gets/sets the default database type name for this connection. This
  4077. value will only be used when not null.
  4078. </summary>
  4079. </member>
  4080. <member name="P:System.Data.SQLite.SQLiteConnection.OwnHandle">
  4081. <summary>
  4082. Returns non-zero if the underlying native connection handle is
  4083. owned by this instance.
  4084. </summary>
  4085. </member>
  4086. <member name="P:System.Data.SQLite.SQLiteConnection.ServerVersion">
  4087. <summary>
  4088. Returns the version of the underlying SQLite database engine
  4089. </summary>
  4090. </member>
  4091. <member name="P:System.Data.SQLite.SQLiteConnection.LastInsertRowId">
  4092. <summary>
  4093. Returns the rowid of the most recent successful INSERT into the database from this connection.
  4094. </summary>
  4095. </member>
  4096. <member name="P:System.Data.SQLite.SQLiteConnection.Changes">
  4097. <summary>
  4098. Returns the number of rows changed by the last INSERT, UPDATE, or DELETE statement executed on
  4099. this connection.
  4100. </summary>
  4101. </member>
  4102. <member name="P:System.Data.SQLite.SQLiteConnection.AutoCommit">
  4103. <summary>
  4104. Returns non-zero if the given database connection is in autocommit mode.
  4105. Autocommit mode is on by default. Autocommit mode is disabled by a BEGIN
  4106. statement. Autocommit mode is re-enabled by a COMMIT or ROLLBACK.
  4107. </summary>
  4108. </member>
  4109. <member name="P:System.Data.SQLite.SQLiteConnection.MemoryUsed">
  4110. <summary>
  4111. Returns the amount of memory (in bytes) currently in use by the SQLite core library.
  4112. </summary>
  4113. </member>
  4114. <member name="P:System.Data.SQLite.SQLiteConnection.MemoryHighwater">
  4115. <summary>
  4116. Returns the maximum amount of memory (in bytes) used by the SQLite core library since the high-water mark was last reset.
  4117. </summary>
  4118. </member>
  4119. <member name="P:System.Data.SQLite.SQLiteConnection.DefineConstants">
  4120. <summary>
  4121. Returns a string containing the define constants (i.e. compile-time
  4122. options) used to compile the core managed assembly, delimited with
  4123. spaces.
  4124. </summary>
  4125. </member>
  4126. <member name="P:System.Data.SQLite.SQLiteConnection.SQLiteVersion">
  4127. <summary>
  4128. Returns the version of the underlying SQLite core library.
  4129. </summary>
  4130. </member>
  4131. <member name="P:System.Data.SQLite.SQLiteConnection.SQLiteSourceId">
  4132. <summary>
  4133. This method returns the string whose value is the same as the
  4134. SQLITE_SOURCE_ID C preprocessor macro used when compiling the
  4135. SQLite core library.
  4136. </summary>
  4137. </member>
  4138. <member name="P:System.Data.SQLite.SQLiteConnection.SQLiteCompileOptions">
  4139. <summary>
  4140. Returns a string containing the compile-time options used to
  4141. compile the SQLite core native library, delimited with spaces.
  4142. </summary>
  4143. </member>
  4144. <member name="P:System.Data.SQLite.SQLiteConnection.InteropVersion">
  4145. <summary>
  4146. This method returns the version of the interop SQLite assembly
  4147. used. If the SQLite interop assembly is not in use or the
  4148. necessary information cannot be obtained for any reason, a null
  4149. value may be returned.
  4150. </summary>
  4151. </member>
  4152. <member name="P:System.Data.SQLite.SQLiteConnection.InteropSourceId">
  4153. <summary>
  4154. This method returns the string whose value contains the unique
  4155. identifier for the source checkout used to build the interop
  4156. assembly. If the SQLite interop assembly is not in use or the
  4157. necessary information cannot be obtained for any reason, a null
  4158. value may be returned.
  4159. </summary>
  4160. </member>
  4161. <member name="P:System.Data.SQLite.SQLiteConnection.InteropCompileOptions">
  4162. <summary>
  4163. Returns a string containing the compile-time options used to
  4164. compile the SQLite interop assembly, delimited with spaces.
  4165. </summary>
  4166. </member>
  4167. <member name="P:System.Data.SQLite.SQLiteConnection.ProviderVersion">
  4168. <summary>
  4169. This method returns the version of the managed components used
  4170. to interact with the SQLite core library. If the necessary
  4171. information cannot be obtained for any reason, a null value may
  4172. be returned.
  4173. </summary>
  4174. </member>
  4175. <member name="P:System.Data.SQLite.SQLiteConnection.ProviderSourceId">
  4176. <summary>
  4177. This method returns the string whose value contains the unique
  4178. identifier for the source checkout used to build the managed
  4179. components currently executing. If the necessary information
  4180. cannot be obtained for any reason, a null value may be returned.
  4181. </summary>
  4182. </member>
  4183. <member name="P:System.Data.SQLite.SQLiteConnection.DefaultFlags">
  4184. <summary>
  4185. The default connection flags to be used for all opened connections
  4186. when they are not present in the connection string.
  4187. </summary>
  4188. </member>
  4189. <member name="P:System.Data.SQLite.SQLiteConnection.SharedFlags">
  4190. <summary>
  4191. The extra connection flags to be used for all opened connections.
  4192. </summary>
  4193. </member>
  4194. <member name="P:System.Data.SQLite.SQLiteConnection.State">
  4195. <summary>
  4196. Returns the state of the connection.
  4197. </summary>
  4198. </member>
  4199. <member name="E:System.Data.SQLite.SQLiteConnection.Authorize">
  4200. <summary>
  4201. This event is raised whenever SQLite encounters an action covered by the
  4202. authorizer during query preparation. Changing the value of the
  4203. <see cref="F:System.Data.SQLite.AuthorizerEventArgs.ReturnCode"/> property will determine if
  4204. the specific action will be allowed, ignored, or denied. For the entire
  4205. duration of the event, the associated connection and statement objects
  4206. must not be modified, either directly or indirectly, by the called code.
  4207. </summary>
  4208. </member>
  4209. <member name="E:System.Data.SQLite.SQLiteConnection.Update">
  4210. <summary>
  4211. This event is raised whenever SQLite makes an update/delete/insert into the database on
  4212. this connection. It only applies to the given connection.
  4213. </summary>
  4214. </member>
  4215. <member name="E:System.Data.SQLite.SQLiteConnection.Commit">
  4216. <summary>
  4217. This event is raised whenever SQLite is committing a transaction.
  4218. Return non-zero to trigger a rollback.
  4219. </summary>
  4220. </member>
  4221. <member name="E:System.Data.SQLite.SQLiteConnection.Trace">
  4222. <summary>
  4223. This event is raised whenever SQLite statement first begins executing on
  4224. this connection. It only applies to the given connection.
  4225. </summary>
  4226. </member>
  4227. <member name="E:System.Data.SQLite.SQLiteConnection.RollBack">
  4228. <summary>
  4229. This event is raised whenever SQLite is rolling back a transaction.
  4230. </summary>
  4231. </member>
  4232. <member name="P:System.Data.SQLite.SQLiteConnection.DbProviderFactory">
  4233. <summary>
  4234. Returns the <see cref="T:System.Data.SQLite.SQLiteFactory"/> instance.
  4235. </summary>
  4236. </member>
  4237. <member name="T:System.Data.SQLite.SynchronizationModes">
  4238. <summary>
  4239. The I/O file cache flushing behavior for the connection
  4240. </summary>
  4241. </member>
  4242. <member name="F:System.Data.SQLite.SynchronizationModes.Normal">
  4243. <summary>
  4244. Normal file flushing at critical sections of the code
  4245. </summary>
  4246. </member>
  4247. <member name="F:System.Data.SQLite.SynchronizationModes.Full">
  4248. <summary>
  4249. Full file flushing after every write operation
  4250. </summary>
  4251. </member>
  4252. <member name="F:System.Data.SQLite.SynchronizationModes.Off">
  4253. <summary>
  4254. Use the default operating system's file flushing, SQLite does not explicitly flush the file buffers after writing
  4255. </summary>
  4256. </member>
  4257. <member name="T:System.Data.SQLite.SQLiteAuthorizerEventHandler">
  4258. <summary>
  4259. Raised when authorization is required to perform an action contained
  4260. within a SQL query.
  4261. </summary>
  4262. <param name="sender">The connection performing the action.</param>
  4263. <param name="e">A <see cref="T:System.Data.SQLite.AuthorizerEventArgs"/> that contains the
  4264. event data.</param>
  4265. </member>
  4266. <member name="T:System.Data.SQLite.SQLiteCommitHandler">
  4267. <summary>
  4268. Raised when a transaction is about to be committed. To roll back a transaction, set the
  4269. rollbackTrans boolean value to true.
  4270. </summary>
  4271. <param name="sender">The connection committing the transaction</param>
  4272. <param name="e">Event arguments on the transaction</param>
  4273. </member>
  4274. <member name="T:System.Data.SQLite.SQLiteUpdateEventHandler">
  4275. <summary>
  4276. Raised when data is inserted, updated and deleted on a given connection
  4277. </summary>
  4278. <param name="sender">The connection committing the transaction</param>
  4279. <param name="e">The event parameters which triggered the event</param>
  4280. </member>
  4281. <member name="T:System.Data.SQLite.SQLiteTraceEventHandler">
  4282. <summary>
  4283. Raised when a statement first begins executing on a given connection
  4284. </summary>
  4285. <param name="sender">The connection executing the statement</param>
  4286. <param name="e">Event arguments of the trace</param>
  4287. </member>
  4288. <member name="T:System.Data.SQLite.SQLiteBackupCallback">
  4289. <summary>
  4290. Raised between each backup step.
  4291. </summary>
  4292. <param name="source">
  4293. The source database connection.
  4294. </param>
  4295. <param name="sourceName">
  4296. The source database name.
  4297. </param>
  4298. <param name="destination">
  4299. The destination database connection.
  4300. </param>
  4301. <param name="destinationName">
  4302. The destination database name.
  4303. </param>
  4304. <param name="pages">
  4305. The number of pages copied with each step.
  4306. </param>
  4307. <param name="remainingPages">
  4308. The number of pages remaining to be copied.
  4309. </param>
  4310. <param name="totalPages">
  4311. The total number of pages in the source database.
  4312. </param>
  4313. <param name="retry">
  4314. Set to true if the operation needs to be retried due to database
  4315. locking issues; otherwise, set to false.
  4316. </param>
  4317. <returns>
  4318. True to continue with the backup process or false to halt the backup
  4319. process, rolling back any changes that have been made so far.
  4320. </returns>
  4321. </member>
  4322. <member name="T:System.Data.SQLite.AuthorizerEventArgs">
  4323. <summary>
  4324. The data associated with a call into the authorizer.
  4325. </summary>
  4326. </member>
  4327. <member name="F:System.Data.SQLite.AuthorizerEventArgs.UserData">
  4328. <summary>
  4329. The user-defined native data associated with this event. Currently,
  4330. this will always contain the value of <see cref="F:System.IntPtr.Zero"/>.
  4331. </summary>
  4332. </member>
  4333. <member name="F:System.Data.SQLite.AuthorizerEventArgs.ActionCode">
  4334. <summary>
  4335. The action code responsible for the current call into the authorizer.
  4336. </summary>
  4337. </member>
  4338. <member name="F:System.Data.SQLite.AuthorizerEventArgs.Argument1">
  4339. <summary>
  4340. The first string argument for the current call into the authorizer.
  4341. The exact value will vary based on the action code, see the
  4342. <see cref="T:System.Data.SQLite.SQLiteAuthorizerActionCode"/> enumeration for possible
  4343. values.
  4344. </summary>
  4345. </member>
  4346. <member name="F:System.Data.SQLite.AuthorizerEventArgs.Argument2">
  4347. <summary>
  4348. The second string argument for the current call into the authorizer.
  4349. The exact value will vary based on the action code, see the
  4350. <see cref="T:System.Data.SQLite.SQLiteAuthorizerActionCode"/> enumeration for possible
  4351. values.
  4352. </summary>
  4353. </member>
  4354. <member name="F:System.Data.SQLite.AuthorizerEventArgs.Database">
  4355. <summary>
  4356. The database name for the current call into the authorizer, if
  4357. applicable.
  4358. </summary>
  4359. </member>
  4360. <member name="F:System.Data.SQLite.AuthorizerEventArgs.Context">
  4361. <summary>
  4362. The name of the inner-most trigger or view that is responsible for
  4363. the access attempt or a null value if this access attempt is directly
  4364. from top-level SQL code.
  4365. </summary>
  4366. </member>
  4367. <member name="F:System.Data.SQLite.AuthorizerEventArgs.ReturnCode">
  4368. <summary>
  4369. The return code for the current call into the authorizer.
  4370. </summary>
  4371. </member>
  4372. <member name="M:System.Data.SQLite.AuthorizerEventArgs.#ctor">
  4373. <summary>
  4374. Constructs an instance of this class with default property values.
  4375. </summary>
  4376. </member>
  4377. <member name="M:System.Data.SQLite.AuthorizerEventArgs.#ctor(System.IntPtr,System.Data.SQLite.SQLiteAuthorizerActionCode,System.String,System.String,System.String,System.String,System.Data.SQLite.SQLiteAuthorizerReturnCode)">
  4378. <summary>
  4379. Constructs an instance of this class with specific property values.
  4380. </summary>
  4381. <param name="pUserData">
  4382. The user-defined native data associated with this event.
  4383. </param>
  4384. <param name="actionCode">
  4385. The authorizer action code.
  4386. </param>
  4387. <param name="argument1">
  4388. The first authorizer argument.
  4389. </param>
  4390. <param name="argument2">
  4391. The second authorizer argument.
  4392. </param>
  4393. <param name="database">
  4394. The database name, if applicable.
  4395. </param>
  4396. <param name="context">
  4397. The name of the inner-most trigger or view that is responsible for
  4398. the access attempt or a null value if this access attempt is directly
  4399. from top-level SQL code.
  4400. </param>
  4401. <param name="returnCode">
  4402. The authorizer return code.
  4403. </param>
  4404. </member>
  4405. <member name="T:System.Data.SQLite.UpdateEventType">
  4406. <summary>
  4407. Whenever an update event is triggered on a connection, this enum will indicate
  4408. exactly what type of operation is being performed.
  4409. </summary>
  4410. </member>
  4411. <member name="F:System.Data.SQLite.UpdateEventType.Delete">
  4412. <summary>
  4413. A row is being deleted from the given database and table
  4414. </summary>
  4415. </member>
  4416. <member name="F:System.Data.SQLite.UpdateEventType.Insert">
  4417. <summary>
  4418. A row is being inserted into the table.
  4419. </summary>
  4420. </member>
  4421. <member name="F:System.Data.SQLite.UpdateEventType.Update">
  4422. <summary>
  4423. A row is being updated in the table.
  4424. </summary>
  4425. </member>
  4426. <member name="T:System.Data.SQLite.UpdateEventArgs">
  4427. <summary>
  4428. Passed during an Update callback, these event arguments detail the type of update operation being performed
  4429. on the given connection.
  4430. </summary>
  4431. </member>
  4432. <member name="F:System.Data.SQLite.UpdateEventArgs.Database">
  4433. <summary>
  4434. The name of the database being updated (usually "main" but can be any attached or temporary database)
  4435. </summary>
  4436. </member>
  4437. <member name="F:System.Data.SQLite.UpdateEventArgs.Table">
  4438. <summary>
  4439. The name of the table being updated
  4440. </summary>
  4441. </member>
  4442. <member name="F:System.Data.SQLite.UpdateEventArgs.Event">
  4443. <summary>
  4444. The type of update being performed (insert/update/delete)
  4445. </summary>
  4446. </member>
  4447. <member name="F:System.Data.SQLite.UpdateEventArgs.RowId">
  4448. <summary>
  4449. The RowId affected by this update.
  4450. </summary>
  4451. </member>
  4452. <member name="T:System.Data.SQLite.CommitEventArgs">
  4453. <summary>
  4454. Event arguments raised when a transaction is being committed
  4455. </summary>
  4456. </member>
  4457. <member name="F:System.Data.SQLite.CommitEventArgs.AbortTransaction">
  4458. <summary>
  4459. Set to true to abort the transaction and trigger a rollback
  4460. </summary>
  4461. </member>
  4462. <member name="T:System.Data.SQLite.TraceEventArgs">
  4463. <summary>
  4464. Passed during an Trace callback, these event arguments contain the UTF-8 rendering of the SQL statement text
  4465. </summary>
  4466. </member>
  4467. <member name="F:System.Data.SQLite.TraceEventArgs.Statement">
  4468. <summary>
  4469. SQL statement text as the statement first begins executing
  4470. </summary>
  4471. </member>
  4472. <member name="T:System.Data.SQLite.ISQLiteConnectionPool">
  4473. <summary>
  4474. This interface represents a custom connection pool implementation
  4475. usable by System.Data.SQLite.
  4476. </summary>
  4477. </member>
  4478. <member name="M:System.Data.SQLite.ISQLiteConnectionPool.GetCounts(System.String,System.Collections.Generic.Dictionary{System.String,System.Int32}@,System.Int32@,System.Int32@,System.Int32@)">
  4479. <summary>
  4480. Counts the number of pool entries matching the specified file name.
  4481. </summary>
  4482. <param name="fileName">
  4483. The file name to match or null to match all files.
  4484. </param>
  4485. <param name="counts">
  4486. The pool entry counts for each matching file.
  4487. </param>
  4488. <param name="openCount">
  4489. The total number of connections successfully opened from any pool.
  4490. </param>
  4491. <param name="closeCount">
  4492. The total number of connections successfully closed from any pool.
  4493. </param>
  4494. <param name="totalCount">
  4495. The total number of pool entries for all matching files.
  4496. </param>
  4497. </member>
  4498. <member name="M:System.Data.SQLite.ISQLiteConnectionPool.ClearPool(System.String)">
  4499. <summary>
  4500. Disposes of all pooled connections associated with the specified
  4501. database file name.
  4502. </summary>
  4503. <param name="fileName">
  4504. The database file name.
  4505. </param>
  4506. </member>
  4507. <member name="M:System.Data.SQLite.ISQLiteConnectionPool.ClearAllPools">
  4508. <summary>
  4509. Disposes of all pooled connections.
  4510. </summary>
  4511. </member>
  4512. <member name="M:System.Data.SQLite.ISQLiteConnectionPool.Add(System.String,System.Object,System.Int32)">
  4513. <summary>
  4514. Adds a connection to the pool of those associated with the
  4515. specified database file name.
  4516. </summary>
  4517. <param name="fileName">
  4518. The database file name.
  4519. </param>
  4520. <param name="handle">
  4521. The database connection handle.
  4522. </param>
  4523. <param name="version">
  4524. The connection pool version at the point the database connection
  4525. handle was received from the connection pool. This is also the
  4526. connection pool version that the database connection handle was
  4527. created under.
  4528. </param>
  4529. </member>
  4530. <member name="M:System.Data.SQLite.ISQLiteConnectionPool.Remove(System.String,System.Int32,System.Int32@)">
  4531. <summary>
  4532. Removes a connection from the pool of those associated with the
  4533. specified database file name with the intent of using it to
  4534. interact with the database.
  4535. </summary>
  4536. <param name="fileName">
  4537. The database file name.
  4538. </param>
  4539. <param name="maxPoolSize">
  4540. The new maximum size of the connection pool for the specified
  4541. database file name.
  4542. </param>
  4543. <param name="version">
  4544. The connection pool version associated with the returned database
  4545. connection handle, if any.
  4546. </param>
  4547. <returns>
  4548. The database connection handle associated with the specified
  4549. database file name or null if it cannot be obtained.
  4550. </returns>
  4551. </member>
  4552. <member name="T:System.Data.SQLite.SQLiteConnectionPool">
  4553. <summary>
  4554. This default method implementations in this class should not be used by
  4555. applications that make use of COM (either directly or indirectly) due
  4556. to possible deadlocks that can occur during finalization of some COM
  4557. objects.
  4558. </summary>
  4559. </member>
  4560. <member name="F:System.Data.SQLite.SQLiteConnectionPool._syncRoot">
  4561. <summary>
  4562. This field is used to synchronize access to the private static data
  4563. in this class.
  4564. </summary>
  4565. </member>
  4566. <member name="F:System.Data.SQLite.SQLiteConnectionPool._connectionPool">
  4567. <summary>
  4568. When this field is non-null, it will be used to provide the
  4569. implementation of all the connection pool methods; otherwise,
  4570. the default method implementations will be used.
  4571. </summary>
  4572. </member>
  4573. <member name="F:System.Data.SQLite.SQLiteConnectionPool._queueList">
  4574. <summary>
  4575. The dictionary of connection pools, based on the normalized file
  4576. name of the SQLite database.
  4577. </summary>
  4578. </member>
  4579. <member name="F:System.Data.SQLite.SQLiteConnectionPool._poolVersion">
  4580. <summary>
  4581. The default version number new pools will get.
  4582. </summary>
  4583. </member>
  4584. <member name="F:System.Data.SQLite.SQLiteConnectionPool._poolOpened">
  4585. <summary>
  4586. The number of connections successfully opened from any pool.
  4587. This value is incremented by the Remove method.
  4588. </summary>
  4589. </member>
  4590. <member name="F:System.Data.SQLite.SQLiteConnectionPool._poolClosed">
  4591. <summary>
  4592. The number of connections successfully closed from any pool.
  4593. This value is incremented by the Add method.
  4594. </summary>
  4595. </member>
  4596. <member name="M:System.Data.SQLite.SQLiteConnectionPool.GetCounts(System.String,System.Collections.Generic.Dictionary{System.String,System.Int32}@,System.Int32@,System.Int32@,System.Int32@)">
  4597. <summary>
  4598. Counts the number of pool entries matching the specified file name.
  4599. </summary>
  4600. <param name="fileName">
  4601. The file name to match or null to match all files.
  4602. </param>
  4603. <param name="counts">
  4604. The pool entry counts for each matching file.
  4605. </param>
  4606. <param name="openCount">
  4607. The total number of connections successfully opened from any pool.
  4608. </param>
  4609. <param name="closeCount">
  4610. The total number of connections successfully closed from any pool.
  4611. </param>
  4612. <param name="totalCount">
  4613. The total number of pool entries for all matching files.
  4614. </param>
  4615. </member>
  4616. <member name="M:System.Data.SQLite.SQLiteConnectionPool.ClearPool(System.String)">
  4617. <summary>
  4618. Disposes of all pooled connections associated with the specified
  4619. database file name.
  4620. </summary>
  4621. <param name="fileName">
  4622. The database file name.
  4623. </param>
  4624. </member>
  4625. <member name="M:System.Data.SQLite.SQLiteConnectionPool.ClearAllPools">
  4626. <summary>
  4627. Disposes of all pooled connections.
  4628. </summary>
  4629. </member>
  4630. <member name="M:System.Data.SQLite.SQLiteConnectionPool.Add(System.String,System.Data.SQLite.SQLiteConnectionHandle,System.Int32)">
  4631. <summary>
  4632. Adds a connection to the pool of those associated with the
  4633. specified database file name.
  4634. </summary>
  4635. <param name="fileName">
  4636. The database file name.
  4637. </param>
  4638. <param name="handle">
  4639. The database connection handle.
  4640. </param>
  4641. <param name="version">
  4642. The connection pool version at the point the database connection
  4643. handle was received from the connection pool. This is also the
  4644. connection pool version that the database connection handle was
  4645. created under.
  4646. </param>
  4647. </member>
  4648. <member name="M:System.Data.SQLite.SQLiteConnectionPool.Remove(System.String,System.Int32,System.Int32@)">
  4649. <summary>
  4650. Removes a connection from the pool of those associated with the
  4651. specified database file name with the intent of using it to
  4652. interact with the database.
  4653. </summary>
  4654. <param name="fileName">
  4655. The database file name.
  4656. </param>
  4657. <param name="maxPoolSize">
  4658. The new maximum size of the connection pool for the specified
  4659. database file name.
  4660. </param>
  4661. <param name="version">
  4662. The connection pool version associated with the returned database
  4663. connection handle, if any.
  4664. </param>
  4665. <returns>
  4666. The database connection handle associated with the specified
  4667. database file name or null if it cannot be obtained.
  4668. </returns>
  4669. </member>
  4670. <member name="M:System.Data.SQLite.SQLiteConnectionPool.GetConnectionPool">
  4671. <summary>
  4672. This method is used to obtain a reference to the custom connection
  4673. pool implementation currently in use, if any.
  4674. </summary>
  4675. <returns>
  4676. The custom connection pool implementation or null if the default
  4677. connection pool implementation should be used.
  4678. </returns>
  4679. </member>
  4680. <member name="M:System.Data.SQLite.SQLiteConnectionPool.SetConnectionPool(System.Data.SQLite.ISQLiteConnectionPool)">
  4681. <summary>
  4682. This method is used to set the reference to the custom connection
  4683. pool implementation to use, if any.
  4684. </summary>
  4685. <param name="connectionPool">
  4686. The custom connection pool implementation to use or null if the
  4687. default connection pool implementation should be used.
  4688. </param>
  4689. </member>
  4690. <member name="M:System.Data.SQLite.SQLiteConnectionPool.ResizePool(System.Data.SQLite.SQLiteConnectionPool.PoolQueue,System.Boolean)">
  4691. <summary>
  4692. We do not have to thread-lock anything in this function, because it
  4693. is only called by other functions above which already take the lock.
  4694. </summary>
  4695. <param name="queue">
  4696. The pool queue to resize.
  4697. </param>
  4698. <param name="add">
  4699. If a function intends to add to the pool, this is true, which
  4700. forces the resize to take one more than it needs from the pool.
  4701. </param>
  4702. </member>
  4703. <member name="T:System.Data.SQLite.SQLiteConnectionPool.PoolQueue">
  4704. <summary>
  4705. Keeps track of connections made on a specified file. The PoolVersion
  4706. dictates whether old objects get returned to the pool or discarded
  4707. when no longer in use.
  4708. </summary>
  4709. </member>
  4710. <member name="F:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.Queue">
  4711. <summary>
  4712. The queue of weak references to the actual database connection
  4713. handles.
  4714. </summary>
  4715. </member>
  4716. <member name="F:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.PoolVersion">
  4717. <summary>
  4718. This pool version associated with the database connection
  4719. handles in this pool queue.
  4720. </summary>
  4721. </member>
  4722. <member name="F:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.MaxPoolSize">
  4723. <summary>
  4724. The maximum size of this pool queue.
  4725. </summary>
  4726. </member>
  4727. <member name="M:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.#ctor(System.Int32,System.Int32)">
  4728. <summary>
  4729. Constructs a connection pool queue using the specified version
  4730. and maximum size. Normally, all the database connection
  4731. handles in this pool are associated with a single database file
  4732. name.
  4733. </summary>
  4734. <param name="version">
  4735. The initial pool version for this connection pool queue.
  4736. </param>
  4737. <param name="maxSize">
  4738. The initial maximum size for this connection pool queue.
  4739. </param>
  4740. </member>
  4741. <member name="T:System.Data.SQLite.SQLiteConnectionStringBuilder">
  4742. <summary>
  4743. SQLite implementation of DbConnectionStringBuilder.
  4744. </summary>
  4745. </member>
  4746. <member name="F:System.Data.SQLite.SQLiteConnectionStringBuilder._properties">
  4747. <summary>
  4748. Properties of this class
  4749. </summary>
  4750. </member>
  4751. <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.#ctor">
  4752. <overloads>
  4753. Constructs a new instance of the class
  4754. </overloads>
  4755. <summary>
  4756. Default constructor
  4757. </summary>
  4758. </member>
  4759. <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.#ctor(System.String)">
  4760. <summary>
  4761. Constructs a new instance of the class using the specified connection string.
  4762. </summary>
  4763. <param name="connectionString">The connection string to parse</param>
  4764. </member>
  4765. <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.Initialize(System.String)">
  4766. <summary>
  4767. Private initializer, which assigns the connection string and resets the builder
  4768. </summary>
  4769. <param name="cnnString">The connection string to assign</param>
  4770. </member>
  4771. <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
  4772. <summary>
  4773. Helper function for retrieving values from the connectionstring
  4774. </summary>
  4775. <param name="keyword">The keyword to retrieve settings for</param>
  4776. <param name="value">The resulting parameter value</param>
  4777. <returns>Returns true if the value was found and returned</returns>
  4778. </member>
  4779. <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.FallbackGetProperties(System.Collections.Hashtable)">
  4780. <summary>
  4781. Fallback method for MONO, which doesn't implement DbConnectionStringBuilder.GetProperties()
  4782. </summary>
  4783. <param name="propertyList">The hashtable to fill with property descriptors</param>
  4784. </member>
  4785. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Version">
  4786. <summary>
  4787. Gets/Sets the default version of the SQLite engine to instantiate. Currently the only valid value is 3, indicating version 3 of the sqlite library.
  4788. </summary>
  4789. </member>
  4790. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.SyncMode">
  4791. <summary>
  4792. Gets/Sets the synchronization mode (file flushing) of the connection string. Default is "Normal".
  4793. </summary>
  4794. </member>
  4795. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.UseUTF16Encoding">
  4796. <summary>
  4797. Gets/Sets the encoding for the connection string. The default is "False" which indicates UTF-8 encoding.
  4798. </summary>
  4799. </member>
  4800. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Pooling">
  4801. <summary>
  4802. Gets/Sets whether or not to use connection pooling. The default is "False"
  4803. </summary>
  4804. </member>
  4805. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.BinaryGUID">
  4806. <summary>
  4807. Gets/Sets whethor not to store GUID's in binary format. The default is True
  4808. which saves space in the database.
  4809. </summary>
  4810. </member>
  4811. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DataSource">
  4812. <summary>
  4813. Gets/Sets the filename to open on the connection string.
  4814. </summary>
  4815. </member>
  4816. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Uri">
  4817. <summary>
  4818. An alternate to the data source property
  4819. </summary>
  4820. </member>
  4821. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.FullUri">
  4822. <summary>
  4823. An alternate to the data source property that uses the SQLite URI syntax.
  4824. </summary>
  4825. </member>
  4826. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultTimeout">
  4827. <summary>
  4828. Gets/sets the default command timeout for newly-created commands. This is especially useful for
  4829. commands used internally such as inside a SQLiteTransaction, where setting the timeout is not possible.
  4830. </summary>
  4831. </member>
  4832. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.PrepareRetries">
  4833. <summary>
  4834. Gets/sets the maximum number of retries when preparing SQL to be executed.
  4835. This normally only applies to preparation errors resulting from the database
  4836. schema being changed.
  4837. </summary>
  4838. </member>
  4839. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Enlist">
  4840. <summary>
  4841. Determines whether or not the connection will automatically participate
  4842. in the current distributed transaction (if one exists)
  4843. </summary>
  4844. </member>
  4845. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.FailIfMissing">
  4846. <summary>
  4847. If set to true, will throw an exception if the database specified in the connection
  4848. string does not exist. If false, the database will be created automatically.
  4849. </summary>
  4850. </member>
  4851. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.LegacyFormat">
  4852. <summary>
  4853. If enabled, uses the legacy 3.xx format for maximum compatibility, but results in larger
  4854. database sizes.
  4855. </summary>
  4856. </member>
  4857. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.ReadOnly">
  4858. <summary>
  4859. When enabled, the database will be opened for read-only access and writing will be disabled.
  4860. </summary>
  4861. </member>
  4862. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Password">
  4863. <summary>
  4864. Gets/sets the database encryption password
  4865. </summary>
  4866. </member>
  4867. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.HexPassword">
  4868. <summary>
  4869. Gets/sets the database encryption hexadecimal password
  4870. </summary>
  4871. </member>
  4872. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.PageSize">
  4873. <summary>
  4874. Gets/Sets the page size for the connection.
  4875. </summary>
  4876. </member>
  4877. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.MaxPageCount">
  4878. <summary>
  4879. Gets/Sets the maximum number of pages the database may hold
  4880. </summary>
  4881. </member>
  4882. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.CacheSize">
  4883. <summary>
  4884. Gets/Sets the cache size for the connection.
  4885. </summary>
  4886. </member>
  4887. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeFormat">
  4888. <summary>
  4889. Gets/Sets the DateTime format for the connection.
  4890. </summary>
  4891. </member>
  4892. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeKind">
  4893. <summary>
  4894. Gets/Sets the DateTime kind for the connection.
  4895. </summary>
  4896. </member>
  4897. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeFormatString">
  4898. <summary>
  4899. Gets/sets the DateTime format string used for formatting
  4900. and parsing purposes.
  4901. </summary>
  4902. </member>
  4903. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.BaseSchemaName">
  4904. <summary>
  4905. Gets/Sets the placeholder base schema name used for
  4906. .NET Framework compatibility purposes.
  4907. </summary>
  4908. </member>
  4909. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.JournalMode">
  4910. <summary>
  4911. Determines how SQLite handles the transaction journal file.
  4912. </summary>
  4913. </member>
  4914. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultIsolationLevel">
  4915. <summary>
  4916. Sets the default isolation level for transactions on the connection.
  4917. </summary>
  4918. </member>
  4919. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultDbType">
  4920. <summary>
  4921. Gets/sets the default database type for the connection.
  4922. </summary>
  4923. </member>
  4924. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultTypeName">
  4925. <summary>
  4926. Gets/sets the default type name for the connection.
  4927. </summary>
  4928. </member>
  4929. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.ForeignKeys">
  4930. <summary>
  4931. If enabled, use foreign key constraints
  4932. </summary>
  4933. </member>
  4934. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Flags">
  4935. <summary>
  4936. Gets/Sets the extra behavioral flags.
  4937. </summary>
  4938. </member>
  4939. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.SetDefaults">
  4940. <summary>
  4941. If enabled, apply the default connection settings to opened databases.
  4942. </summary>
  4943. </member>
  4944. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.ToFullPath">
  4945. <summary>
  4946. If enabled, attempt to resolve the provided data source file name to a
  4947. full path before opening.
  4948. </summary>
  4949. </member>
  4950. <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.NoSharedFlags">
  4951. <summary>
  4952. If enabled, skip using the configured shared connection flags.
  4953. </summary>
  4954. </member>
  4955. <member name="T:System.Data.SQLite.TypeAffinity">
  4956. <summary>
  4957. SQLite has very limited types, and is inherently text-based. The first 5 types below represent the sum of all types SQLite
  4958. understands. The DateTime extension to the spec is for internal use only.
  4959. </summary>
  4960. </member>
  4961. <member name="F:System.Data.SQLite.TypeAffinity.Uninitialized">
  4962. <summary>
  4963. Not used
  4964. </summary>
  4965. </member>
  4966. <member name="F:System.Data.SQLite.TypeAffinity.Int64">
  4967. <summary>
  4968. All integers in SQLite default to Int64
  4969. </summary>
  4970. </member>
  4971. <member name="F:System.Data.SQLite.TypeAffinity.Double">
  4972. <summary>
  4973. All floating point numbers in SQLite default to double
  4974. </summary>
  4975. </member>
  4976. <member name="F:System.Data.SQLite.TypeAffinity.Text">
  4977. <summary>
  4978. The default data type of SQLite is text
  4979. </summary>
  4980. </member>
  4981. <member name="F:System.Data.SQLite.TypeAffinity.Blob">
  4982. <summary>
  4983. Typically blob types are only seen when returned from a function
  4984. </summary>
  4985. </member>
  4986. <member name="F:System.Data.SQLite.TypeAffinity.Null">
  4987. <summary>
  4988. Null types can be returned from functions
  4989. </summary>
  4990. </member>
  4991. <member name="F:System.Data.SQLite.TypeAffinity.DateTime">
  4992. <summary>
  4993. Used internally by this provider
  4994. </summary>
  4995. </member>
  4996. <member name="F:System.Data.SQLite.TypeAffinity.None">
  4997. <summary>
  4998. Used internally by this provider
  4999. </summary>
  5000. </member>
  5001. <member name="T:System.Data.SQLite.SQLiteConnectionEventType">
  5002. <summary>
  5003. These are the event types associated with the
  5004. <see cref="T:System.Data.SQLite.SQLiteConnectionEventHandler"/>
  5005. delegate (and its corresponding event) and the
  5006. <see cref="T:System.Data.SQLite.ConnectionEventArgs"/> class.
  5007. </summary>
  5008. </member>
  5009. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Invalid">
  5010. <summary>
  5011. Not used.
  5012. </summary>
  5013. </member>
  5014. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Unknown">
  5015. <summary>
  5016. Not used.
  5017. </summary>
  5018. </member>
  5019. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Opening">
  5020. <summary>
  5021. The connection is being opened.
  5022. </summary>
  5023. </member>
  5024. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.ConnectionString">
  5025. <summary>
  5026. The connection string has been parsed.
  5027. </summary>
  5028. </member>
  5029. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Opened">
  5030. <summary>
  5031. The connection was opened.
  5032. </summary>
  5033. </member>
  5034. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.ChangeDatabase">
  5035. <summary>
  5036. The <see cref="F:System.Data.SQLite.SQLiteConnectionEventType.ChangeDatabase"/> method was called on the
  5037. connection.
  5038. </summary>
  5039. </member>
  5040. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewTransaction">
  5041. <summary>
  5042. A transaction was created using the connection.
  5043. </summary>
  5044. </member>
  5045. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.EnlistTransaction">
  5046. <summary>
  5047. The connection was enlisted into a transaction.
  5048. </summary>
  5049. </member>
  5050. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewCommand">
  5051. <summary>
  5052. A command was created using the connection.
  5053. </summary>
  5054. </member>
  5055. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewDataReader">
  5056. <summary>
  5057. A data reader was created using the connection.
  5058. </summary>
  5059. </member>
  5060. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewCriticalHandle">
  5061. <summary>
  5062. An instance of a <see cref="T:System.Runtime.InteropServices.CriticalHandle"/> derived class has
  5063. been created to wrap a native resource.
  5064. </summary>
  5065. </member>
  5066. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Closing">
  5067. <summary>
  5068. The connection is being closed.
  5069. </summary>
  5070. </member>
  5071. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Closed">
  5072. <summary>
  5073. The connection was closed.
  5074. </summary>
  5075. </member>
  5076. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.DisposingCommand">
  5077. <summary>
  5078. A command is being disposed.
  5079. </summary>
  5080. </member>
  5081. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.DisposingDataReader">
  5082. <summary>
  5083. A data reader is being disposed.
  5084. </summary>
  5085. </member>
  5086. <member name="F:System.Data.SQLite.SQLiteConnectionEventType.ClosingDataReader">
  5087. <summary>
  5088. A data reader is being closed.
  5089. </summary>
  5090. </member>
  5091. <member name="T:System.Data.SQLite.SQLiteDateFormats">
  5092. <summary>
  5093. This implementation of SQLite for ADO.NET can process date/time fields in
  5094. databases in one of six formats.
  5095. </summary>
  5096. <remarks>
  5097. ISO8601 format is more compatible, readable, fully-processable, but less
  5098. accurate as it does not provide time down to fractions of a second.
  5099. JulianDay is the numeric format the SQLite uses internally and is arguably
  5100. the most compatible with 3rd party tools. It is not readable as text
  5101. without post-processing. Ticks less compatible with 3rd party tools that
  5102. query the database, and renders the DateTime field unreadable as text
  5103. without post-processing. UnixEpoch is more compatible with Unix systems.
  5104. InvariantCulture allows the configured format for the invariant culture
  5105. format to be used and is human readable. CurrentCulture allows the
  5106. configured format for the current culture to be used and is also human
  5107. readable.
  5108. The preferred order of choosing a DateTime format is JulianDay, ISO8601,
  5109. and then Ticks. Ticks is mainly present for legacy code support.
  5110. </remarks>
  5111. </member>
  5112. <member name="F:System.Data.SQLite.SQLiteDateFormats.Ticks">
  5113. <summary>
  5114. Use the value of DateTime.Ticks. This value is not recommended and is not well supported with LINQ.
  5115. </summary>
  5116. </member>
  5117. <member name="F:System.Data.SQLite.SQLiteDateFormats.ISO8601">
  5118. <summary>
  5119. Use the ISO-8601 format. Uses the "yyyy-MM-dd HH:mm:ss.FFFFFFFK" format for UTC DateTime values and
  5120. "yyyy-MM-dd HH:mm:ss.FFFFFFF" format for local DateTime values).
  5121. </summary>
  5122. </member>
  5123. <member name="F:System.Data.SQLite.SQLiteDateFormats.JulianDay">
  5124. <summary>
  5125. The interval of time in days and fractions of a day since January 1, 4713 BC.
  5126. </summary>
  5127. </member>
  5128. <member name="F:System.Data.SQLite.SQLiteDateFormats.UnixEpoch">
  5129. <summary>
  5130. The whole number of seconds since the Unix epoch (January 1, 1970).
  5131. </summary>
  5132. </member>
  5133. <member name="F:System.Data.SQLite.SQLiteDateFormats.InvariantCulture">
  5134. <summary>
  5135. Any culture-independent string value that the .NET Framework can interpret as a valid DateTime.
  5136. </summary>
  5137. </member>
  5138. <member name="F:System.Data.SQLite.SQLiteDateFormats.CurrentCulture">
  5139. <summary>
  5140. Any string value that the .NET Framework can interpret as a valid DateTime using the current culture.
  5141. </summary>
  5142. </member>
  5143. <member name="F:System.Data.SQLite.SQLiteDateFormats.Default">
  5144. <summary>
  5145. The default format for this provider.
  5146. </summary>
  5147. </member>
  5148. <member name="T:System.Data.SQLite.SQLiteJournalModeEnum">
  5149. <summary>
  5150. This enum determines how SQLite treats its journal file.
  5151. </summary>
  5152. <remarks>
  5153. By default SQLite will create and delete the journal file when needed during a transaction.
  5154. However, for some computers running certain filesystem monitoring tools, the rapid
  5155. creation and deletion of the journal file can cause those programs to fail, or to interfere with SQLite.
  5156. If a program or virus scanner is interfering with SQLite's journal file, you may receive errors like "unable to open database file"
  5157. when starting a transaction. If this is happening, you may want to change the default journal mode to Persist.
  5158. </remarks>
  5159. </member>
  5160. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Default">
  5161. <summary>
  5162. The default mode, this causes SQLite to use the existing journaling mode for the database.
  5163. </summary>
  5164. </member>
  5165. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Delete">
  5166. <summary>
  5167. SQLite will create and destroy the journal file as-needed.
  5168. </summary>
  5169. </member>
  5170. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Persist">
  5171. <summary>
  5172. When this is set, SQLite will keep the journal file even after a transaction has completed. It's contents will be erased,
  5173. and the journal re-used as often as needed. If it is deleted, it will be recreated the next time it is needed.
  5174. </summary>
  5175. </member>
  5176. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Off">
  5177. <summary>
  5178. This option disables the rollback journal entirely. Interrupted transactions or a program crash can cause database
  5179. corruption in this mode!
  5180. </summary>
  5181. </member>
  5182. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Truncate">
  5183. <summary>
  5184. SQLite will truncate the journal file to zero-length instead of deleting it.
  5185. </summary>
  5186. </member>
  5187. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Memory">
  5188. <summary>
  5189. SQLite will store the journal in volatile RAM. This saves disk I/O but at the expense of database safety and integrity.
  5190. If the application using SQLite crashes in the middle of a transaction when the MEMORY journaling mode is set, then the
  5191. database file will very likely go corrupt.
  5192. </summary>
  5193. </member>
  5194. <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Wal">
  5195. <summary>
  5196. SQLite uses a write-ahead log instead of a rollback journal to implement transactions. The WAL journaling mode is persistent;
  5197. after being set it stays in effect across multiple database connections and after closing and reopening the database. A database
  5198. in WAL journaling mode can only be accessed by SQLite version 3.7.0 or later.
  5199. </summary>
  5200. </member>
  5201. <member name="T:System.Data.SQLite.SQLiteSynchronousEnum">
  5202. <summary>
  5203. Possible values for the "synchronous" database setting. This setting determines
  5204. how often the database engine calls the xSync method of the VFS.
  5205. </summary>
  5206. </member>
  5207. <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Default">
  5208. <summary>
  5209. Use the default "synchronous" database setting. Currently, this should be
  5210. the same as using the FULL mode.
  5211. </summary>
  5212. </member>
  5213. <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Off">
  5214. <summary>
  5215. The database engine continues without syncing as soon as it has handed
  5216. data off to the operating system. If the application running SQLite
  5217. crashes, the data will be safe, but the database might become corrupted
  5218. if the operating system crashes or the computer loses power before that
  5219. data has been written to the disk surface.
  5220. </summary>
  5221. </member>
  5222. <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Normal">
  5223. <summary>
  5224. The database engine will still sync at the most critical moments, but
  5225. less often than in FULL mode. There is a very small (though non-zero)
  5226. chance that a power failure at just the wrong time could corrupt the
  5227. database in NORMAL mode.
  5228. </summary>
  5229. </member>
  5230. <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Full">
  5231. <summary>
  5232. The database engine will use the xSync method of the VFS to ensure that
  5233. all content is safely written to the disk surface prior to continuing.
  5234. This ensures that an operating system crash or power failure will not
  5235. corrupt the database. FULL synchronous is very safe, but it is also
  5236. slower.
  5237. </summary>
  5238. </member>
  5239. <member name="T:System.Data.SQLite.SQLiteExecuteType">
  5240. <summary>
  5241. The requested command execution type. This controls which method of the
  5242. <see cref="T:System.Data.SQLite.SQLiteCommand"/> object will be called.
  5243. </summary>
  5244. </member>
  5245. <member name="F:System.Data.SQLite.SQLiteExecuteType.None">
  5246. <summary>
  5247. Do nothing. No method will be called.
  5248. </summary>
  5249. </member>
  5250. <member name="F:System.Data.SQLite.SQLiteExecuteType.NonQuery">
  5251. <summary>
  5252. The command is not expected to return a result -OR- the result is not
  5253. needed. The <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery"/> or
  5254. <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery(System.Data.CommandBehavior)"/> method
  5255. will be called.
  5256. </summary>
  5257. </member>
  5258. <member name="F:System.Data.SQLite.SQLiteExecuteType.Scalar">
  5259. <summary>
  5260. The command is expected to return a scalar result -OR- the result should
  5261. be limited to a scalar result. The <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar"/>
  5262. or <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar(System.Data.CommandBehavior)"/> method will
  5263. be called.
  5264. </summary>
  5265. </member>
  5266. <member name="F:System.Data.SQLite.SQLiteExecuteType.Reader">
  5267. <summary>
  5268. The command is expected to return <see cref="T:System.Data.SQLite.SQLiteDataReader"/> result.
  5269. The <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteReader"/> or
  5270. <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteReader(System.Data.CommandBehavior)"/> method will
  5271. be called.
  5272. </summary>
  5273. </member>
  5274. <member name="F:System.Data.SQLite.SQLiteExecuteType.Default">
  5275. <summary>
  5276. Use the default command execution type. Using this value is the same
  5277. as using the <see cref="F:System.Data.SQLite.SQLiteExecuteType.NonQuery"/> value.
  5278. </summary>
  5279. </member>
  5280. <member name="T:System.Data.SQLite.SQLiteAuthorizerActionCode">
  5281. <summary>
  5282. The action code responsible for the current call into the authorizer.
  5283. </summary>
  5284. </member>
  5285. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.None">
  5286. <summary>
  5287. No action is being performed. This value should not be used from
  5288. external code.
  5289. </summary>
  5290. </member>
  5291. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Copy">
  5292. <summary>
  5293. No longer used.
  5294. </summary>
  5295. </member>
  5296. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateIndex">
  5297. <summary>
  5298. An index will be created. The action-specific arguments are the
  5299. index name and the table name.
  5300. </summary>
  5301. </member>
  5302. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTable">
  5303. <summary>
  5304. A table will be created. The action-specific arguments are the
  5305. table name and a null value.
  5306. </summary>
  5307. </member>
  5308. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempIndex">
  5309. <summary>
  5310. A temporary index will be created. The action-specific arguments
  5311. are the index name and the table name.
  5312. </summary>
  5313. </member>
  5314. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempTable">
  5315. <summary>
  5316. A temporary table will be created. The action-specific arguments
  5317. are the table name and a null value.
  5318. </summary>
  5319. </member>
  5320. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempTrigger">
  5321. <summary>
  5322. A temporary trigger will be created. The action-specific arguments
  5323. are the trigger name and the table name.
  5324. </summary>
  5325. </member>
  5326. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempView">
  5327. <summary>
  5328. A temporary view will be created. The action-specific arguments are
  5329. the view name and a null value.
  5330. </summary>
  5331. </member>
  5332. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTrigger">
  5333. <summary>
  5334. A trigger will be created. The action-specific arguments are the
  5335. trigger name and the table name.
  5336. </summary>
  5337. </member>
  5338. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateView">
  5339. <summary>
  5340. A view will be created. The action-specific arguments are the view
  5341. name and a null value.
  5342. </summary>
  5343. </member>
  5344. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Delete">
  5345. <summary>
  5346. A DELETE statement will be executed. The action-specific arguments
  5347. are the table name and a null value.
  5348. </summary>
  5349. </member>
  5350. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropIndex">
  5351. <summary>
  5352. An index will be dropped. The action-specific arguments are the
  5353. index name and the table name.
  5354. </summary>
  5355. </member>
  5356. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTable">
  5357. <summary>
  5358. A table will be dropped. The action-specific arguments are the tables
  5359. name and a null value.
  5360. </summary>
  5361. </member>
  5362. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempIndex">
  5363. <summary>
  5364. A temporary index will be dropped. The action-specific arguments are
  5365. the index name and the table name.
  5366. </summary>
  5367. </member>
  5368. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempTable">
  5369. <summary>
  5370. A temporary table will be dropped. The action-specific arguments are
  5371. the table name and a null value.
  5372. </summary>
  5373. </member>
  5374. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempTrigger">
  5375. <summary>
  5376. A temporary trigger will be dropped. The action-specific arguments
  5377. are the trigger name and the table name.
  5378. </summary>
  5379. </member>
  5380. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempView">
  5381. <summary>
  5382. A temporary view will be dropped. The action-specific arguments are
  5383. the view name and a null value.
  5384. </summary>
  5385. </member>
  5386. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTrigger">
  5387. <summary>
  5388. A trigger will be dropped. The action-specific arguments are the
  5389. trigger name and the table name.
  5390. </summary>
  5391. </member>
  5392. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropView">
  5393. <summary>
  5394. A view will be dropped. The action-specific arguments are the view
  5395. name and a null value.
  5396. </summary>
  5397. </member>
  5398. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Insert">
  5399. <summary>
  5400. An INSERT statement will be executed. The action-specific arguments
  5401. are the table name and a null value.
  5402. </summary>
  5403. </member>
  5404. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Pragma">
  5405. <summary>
  5406. A PRAGMA statement will be executed. The action-specific arguments
  5407. are the name of the PRAGMA and the new value or a null value.
  5408. </summary>
  5409. </member>
  5410. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Read">
  5411. <summary>
  5412. A table column will be read. The action-specific arguments are the
  5413. table name and the column name.
  5414. </summary>
  5415. </member>
  5416. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Select">
  5417. <summary>
  5418. A SELECT statement will be executed. The action-specific arguments
  5419. are both null values.
  5420. </summary>
  5421. </member>
  5422. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Transaction">
  5423. <summary>
  5424. A transaction will be started, committed, or rolled back. The
  5425. action-specific arguments are the name of the operation (BEGIN,
  5426. COMMIT, or ROLLBACK) and a null value.
  5427. </summary>
  5428. </member>
  5429. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Update">
  5430. <summary>
  5431. An UPDATE statement will be executed. The action-specific arguments
  5432. are the table name and the column name.
  5433. </summary>
  5434. </member>
  5435. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Attach">
  5436. <summary>
  5437. A database will be attached to the connection. The action-specific
  5438. arguments are the database file name and a null value.
  5439. </summary>
  5440. </member>
  5441. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Detach">
  5442. <summary>
  5443. A database will be detached from the connection. The action-specific
  5444. arguments are the database name and a null value.
  5445. </summary>
  5446. </member>
  5447. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.AlterTable">
  5448. <summary>
  5449. The schema of a table will be altered. The action-specific arguments
  5450. are the database name and the table name.
  5451. </summary>
  5452. </member>
  5453. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Reindex">
  5454. <summary>
  5455. An index will be deleted and then recreated. The action-specific
  5456. arguments are the index name and a null value.
  5457. </summary>
  5458. </member>
  5459. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Analyze">
  5460. <summary>
  5461. A table will be analyzed to gathers statistics about it. The
  5462. action-specific arguments are the table name and a null value.
  5463. </summary>
  5464. </member>
  5465. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateVtable">
  5466. <summary>
  5467. A virtual table will be created. The action-specific arguments are
  5468. the table name and the module name.
  5469. </summary>
  5470. </member>
  5471. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropVtable">
  5472. <summary>
  5473. A virtual table will be dropped. The action-specific arguments are
  5474. the table name and the module name.
  5475. </summary>
  5476. </member>
  5477. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Function">
  5478. <summary>
  5479. A SQL function will be called. The action-specific arguments are a
  5480. null value and the function name.
  5481. </summary>
  5482. </member>
  5483. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Savepoint">
  5484. <summary>
  5485. A savepoint will be created, released, or rolled back. The
  5486. action-specific arguments are the name of the operation (BEGIN,
  5487. RELEASE, or ROLLBACK) and the savepoint name.
  5488. </summary>
  5489. </member>
  5490. <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Recursive">
  5491. <summary>
  5492. A recursive query will be executed. The action-specific arguments
  5493. are two null values.
  5494. </summary>
  5495. </member>
  5496. <member name="T:System.Data.SQLite.SQLiteAuthorizerReturnCode">
  5497. <summary>
  5498. The return code for the current call into the authorizer.
  5499. </summary>
  5500. </member>
  5501. <member name="F:System.Data.SQLite.SQLiteAuthorizerReturnCode.Ok">
  5502. <summary>
  5503. The action will be allowed.
  5504. </summary>
  5505. </member>
  5506. <member name="F:System.Data.SQLite.SQLiteAuthorizerReturnCode.Deny">
  5507. <summary>
  5508. The overall action will be disallowed and an error message will be
  5509. returned from the query preparation method.
  5510. </summary>
  5511. </member>
  5512. <member name="F:System.Data.SQLite.SQLiteAuthorizerReturnCode.Ignore">
  5513. <summary>
  5514. The specific action will be disallowed; however, the overall action
  5515. will continue. The exact effects of this return code vary depending
  5516. on the specific action, please refer to the SQLite core library
  5517. documentation for futher details.
  5518. </summary>
  5519. </member>
  5520. <member name="T:System.Data.SQLite.SQLiteType">
  5521. <summary>
  5522. Class used internally to determine the datatype of a column in a resultset
  5523. </summary>
  5524. </member>
  5525. <member name="F:System.Data.SQLite.SQLiteType.Type">
  5526. <summary>
  5527. The DbType of the column, or DbType.Object if it cannot be determined
  5528. </summary>
  5529. </member>
  5530. <member name="F:System.Data.SQLite.SQLiteType.Affinity">
  5531. <summary>
  5532. The affinity of a column, used for expressions or when Type is DbType.Object
  5533. </summary>
  5534. </member>
  5535. <member name="M:System.Data.SQLite.SQLiteType.#ctor">
  5536. <summary>
  5537. Constructs a default instance of this type.
  5538. </summary>
  5539. </member>
  5540. <member name="M:System.Data.SQLite.SQLiteType.#ctor(System.Data.SQLite.TypeAffinity,System.Data.DbType)">
  5541. <summary>
  5542. Constructs an instance of this type with the specified field values.
  5543. </summary>
  5544. <param name="affinity">
  5545. The type affinity to use for the new instance.
  5546. </param>
  5547. <param name="type">
  5548. The database type to use for the new instance.
  5549. </param>
  5550. </member>
  5551. <member name="T:System.Data.SQLite.SQLiteDataAdapter">
  5552. <summary>
  5553. SQLite implementation of DbDataAdapter.
  5554. </summary>
  5555. </member>
  5556. <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor">
  5557. <overloads>
  5558. This class is just a shell around the DbDataAdapter. Nothing from
  5559. DbDataAdapter is overridden here, just a few constructors are defined.
  5560. </overloads>
  5561. <summary>
  5562. Default constructor.
  5563. </summary>
  5564. </member>
  5565. <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.Data.SQLite.SQLiteCommand)">
  5566. <summary>
  5567. Constructs a data adapter using the specified select command.
  5568. </summary>
  5569. <param name="cmd">
  5570. The select command to associate with the adapter.
  5571. </param>
  5572. </member>
  5573. <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.Data.SQLite.SQLiteConnection)">
  5574. <summary>
  5575. Constructs a data adapter with the supplied select command text and
  5576. associated with the specified connection.
  5577. </summary>
  5578. <param name="commandText">
  5579. The select command text to associate with the data adapter.
  5580. </param>
  5581. <param name="connection">
  5582. The connection to associate with the select command.
  5583. </param>
  5584. </member>
  5585. <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.String)">
  5586. <summary>
  5587. Constructs a data adapter with the specified select command text,
  5588. and using the specified database connection string.
  5589. </summary>
  5590. <param name="commandText">
  5591. The select command text to use to construct a select command.
  5592. </param>
  5593. <param name="connectionString">
  5594. A connection string suitable for passing to a new SQLiteConnection,
  5595. which is associated with the select command.
  5596. </param>
  5597. </member>
  5598. <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.String,System.Boolean)">
  5599. <summary>
  5600. Constructs a data adapter with the specified select command text,
  5601. and using the specified database connection string.
  5602. </summary>
  5603. <param name="commandText">
  5604. The select command text to use to construct a select command.
  5605. </param>
  5606. <param name="connectionString">
  5607. A connection string suitable for passing to a new SQLiteConnection,
  5608. which is associated with the select command.
  5609. </param>
  5610. <param name="parseViaFramework">
  5611. Non-zero to parse the connection string using the built-in (i.e.
  5612. framework provided) parser when opening the connection.
  5613. </param>
  5614. </member>
  5615. <member name="M:System.Data.SQLite.SQLiteDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)">
  5616. <summary>
  5617. Raised by the underlying DbDataAdapter when a row is being updated
  5618. </summary>
  5619. <param name="value">The event's specifics</param>
  5620. </member>
  5621. <member name="M:System.Data.SQLite.SQLiteDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)">
  5622. <summary>
  5623. Raised by DbDataAdapter after a row is updated
  5624. </summary>
  5625. <param name="value">The event's specifics</param>
  5626. </member>
  5627. <member name="E:System.Data.SQLite.SQLiteDataAdapter.RowUpdating">
  5628. <summary>
  5629. Row updating event handler
  5630. </summary>
  5631. </member>
  5632. <member name="E:System.Data.SQLite.SQLiteDataAdapter.RowUpdated">
  5633. <summary>
  5634. Row updated event handler
  5635. </summary>
  5636. </member>
  5637. <member name="P:System.Data.SQLite.SQLiteDataAdapter.SelectCommand">
  5638. <summary>
  5639. Gets/sets the select command for this DataAdapter
  5640. </summary>
  5641. </member>
  5642. <member name="P:System.Data.SQLite.SQLiteDataAdapter.InsertCommand">
  5643. <summary>
  5644. Gets/sets the insert command for this DataAdapter
  5645. </summary>
  5646. </member>
  5647. <member name="P:System.Data.SQLite.SQLiteDataAdapter.UpdateCommand">
  5648. <summary>
  5649. Gets/sets the update command for this DataAdapter
  5650. </summary>
  5651. </member>
  5652. <member name="P:System.Data.SQLite.SQLiteDataAdapter.DeleteCommand">
  5653. <summary>
  5654. Gets/sets the delete command for this DataAdapter
  5655. </summary>
  5656. </member>
  5657. <member name="T:System.Data.SQLite.SQLiteDataReader">
  5658. <summary>
  5659. SQLite implementation of DbDataReader.
  5660. </summary>
  5661. </member>
  5662. <member name="F:System.Data.SQLite.SQLiteDataReader._command">
  5663. <summary>
  5664. Underlying command this reader is attached to
  5665. </summary>
  5666. </member>
  5667. <member name="F:System.Data.SQLite.SQLiteDataReader._flags">
  5668. <summary>
  5669. The flags pertaining to the associated connection (via the command).
  5670. </summary>
  5671. </member>
  5672. <member name="F:System.Data.SQLite.SQLiteDataReader._activeStatementIndex">
  5673. <summary>
  5674. Index of the current statement in the command being processed
  5675. </summary>
  5676. </member>
  5677. <member name="F:System.Data.SQLite.SQLiteDataReader._activeStatement">
  5678. <summary>
  5679. Current statement being Read()
  5680. </summary>
  5681. </member>
  5682. <member name="F:System.Data.SQLite.SQLiteDataReader._readingState">
  5683. <summary>
  5684. State of the current statement being processed.
  5685. -1 = First Step() executed, so the first Read() will be ignored
  5686. 0 = Actively reading
  5687. 1 = Finished reading
  5688. 2 = Non-row-returning statement, no records
  5689. </summary>
  5690. </member>
  5691. <member name="F:System.Data.SQLite.SQLiteDataReader._rowsAffected">
  5692. <summary>
  5693. Number of records affected by the insert/update statements executed on the command
  5694. </summary>
  5695. </member>
  5696. <member name="F:System.Data.SQLite.SQLiteDataReader._fieldCount">
  5697. <summary>
  5698. Count of fields (columns) in the row-returning statement currently being processed
  5699. </summary>
  5700. </member>
  5701. <member name="F:System.Data.SQLite.SQLiteDataReader._stepCount">
  5702. <summary>
  5703. The number of calls to Step() that have returned true (i.e. the number of rows that
  5704. have been read in the current result set).
  5705. </summary>
  5706. </member>
  5707. <member name="F:System.Data.SQLite.SQLiteDataReader._fieldIndexes">
  5708. <summary>
  5709. Maps the field (column) names to their corresponding indexes within the results.
  5710. </summary>
  5711. </member>
  5712. <member name="F:System.Data.SQLite.SQLiteDataReader._fieldTypeArray">
  5713. <summary>
  5714. Datatypes of active fields (columns) in the current statement, used for type-restricting data
  5715. </summary>
  5716. </member>
  5717. <member name="F:System.Data.SQLite.SQLiteDataReader._commandBehavior">
  5718. <summary>
  5719. The behavior of the datareader
  5720. </summary>
  5721. </member>
  5722. <member name="F:System.Data.SQLite.SQLiteDataReader._disposeCommand">
  5723. <summary>
  5724. If set, then dispose of the command object when the reader is finished
  5725. </summary>
  5726. </member>
  5727. <member name="F:System.Data.SQLite.SQLiteDataReader._throwOnDisposed">
  5728. <summary>
  5729. If set, then raise an exception when the object is accessed after being disposed.
  5730. </summary>
  5731. </member>
  5732. <member name="F:System.Data.SQLite.SQLiteDataReader._keyInfo">
  5733. <summary>
  5734. An array of rowid's for the active statement if CommandBehavior.KeyInfo is specified
  5735. </summary>
  5736. </member>
  5737. <member name="F:System.Data.SQLite.SQLiteDataReader._version">
  5738. <summary>
  5739. Matches the version of the connection.
  5740. </summary>
  5741. </member>
  5742. <member name="F:System.Data.SQLite.SQLiteDataReader._baseSchemaName">
  5743. <summary>
  5744. The "stub" (i.e. placeholder) base schema name to use when returning
  5745. column schema information. Matches the base schema name used by the
  5746. associated connection.
  5747. </summary>
  5748. </member>
  5749. <member name="M:System.Data.SQLite.SQLiteDataReader.#ctor(System.Data.SQLite.SQLiteCommand,System.Data.CommandBehavior)">
  5750. <summary>
  5751. Internal constructor, initializes the datareader and sets up to begin executing statements
  5752. </summary>
  5753. <param name="cmd">The SQLiteCommand this data reader is for</param>
  5754. <param name="behave">The expected behavior of the data reader</param>
  5755. </member>
  5756. <member name="M:System.Data.SQLite.SQLiteDataReader.Dispose(System.Boolean)">
  5757. <summary>
  5758. Dispose of all resources used by this datareader.
  5759. </summary>
  5760. <param name="disposing"></param>
  5761. </member>
  5762. <member name="M:System.Data.SQLite.SQLiteDataReader.Close">
  5763. <summary>
  5764. Closes the datareader, potentially closing the connection as well if CommandBehavior.CloseConnection was specified.
  5765. </summary>
  5766. </member>
  5767. <member name="M:System.Data.SQLite.SQLiteDataReader.CheckClosed">
  5768. <summary>
  5769. Throw an error if the datareader is closed
  5770. </summary>
  5771. </member>
  5772. <member name="M:System.Data.SQLite.SQLiteDataReader.CheckValidRow">
  5773. <summary>
  5774. Throw an error if a row is not loaded
  5775. </summary>
  5776. </member>
  5777. <member name="M:System.Data.SQLite.SQLiteDataReader.GetEnumerator">
  5778. <summary>
  5779. Enumerator support
  5780. </summary>
  5781. <returns>Returns a DbEnumerator object.</returns>
  5782. </member>
  5783. <member name="M:System.Data.SQLite.SQLiteDataReader.RefreshFlags">
  5784. <summary>
  5785. Forces the connection flags cached by this data reader to be refreshed
  5786. from the underlying connection.
  5787. </summary>
  5788. </member>
  5789. <member name="M:System.Data.SQLite.SQLiteDataReader.VerifyForGet">
  5790. <summary>
  5791. This method is used to make sure the result set is open and a row is currently available.
  5792. </summary>
  5793. </member>
  5794. <member name="M:System.Data.SQLite.SQLiteDataReader.VerifyType(System.Int32,System.Data.DbType)">
  5795. <summary>
  5796. SQLite is inherently un-typed. All datatypes in SQLite are natively strings. The definition of the columns of a table
  5797. and the affinity of returned types are all we have to go on to type-restrict data in the reader.
  5798. This function attempts to verify that the type of data being requested of a column matches the datatype of the column. In
  5799. the case of columns that are not backed into a table definition, we attempt to match up the affinity of a column (int, double, string or blob)
  5800. to a set of known types that closely match that affinity. It's not an exact science, but its the best we can do.
  5801. </summary>
  5802. <returns>
  5803. This function throws an InvalidTypeCast() exception if the requested type doesn't match the column's definition or affinity.
  5804. </returns>
  5805. <param name="i">The index of the column to type-check</param>
  5806. <param name="typ">The type we want to get out of the column</param>
  5807. </member>
  5808. <member name="M:System.Data.SQLite.SQLiteDataReader.GetBoolean(System.Int32)">
  5809. <summary>
  5810. Retrieves the column as a boolean value
  5811. </summary>
  5812. <param name="i">The index of the column to retrieve</param>
  5813. <returns>bool</returns>
  5814. </member>
  5815. <member name="M:System.Data.SQLite.SQLiteDataReader.GetByte(System.Int32)">
  5816. <summary>
  5817. Retrieves the column as a single byte value
  5818. </summary>
  5819. <param name="i">The index of the column to retrieve</param>
  5820. <returns>byte</returns>
  5821. </member>
  5822. <member name="M:System.Data.SQLite.SQLiteDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
  5823. <summary>
  5824. Retrieves a column as an array of bytes (blob)
  5825. </summary>
  5826. <param name="i">The index of the column to retrieve</param>
  5827. <param name="fieldOffset">The zero-based index of where to begin reading the data</param>
  5828. <param name="buffer">The buffer to write the bytes into</param>
  5829. <param name="bufferoffset">The zero-based index of where to begin writing into the array</param>
  5830. <param name="length">The number of bytes to retrieve</param>
  5831. <returns>The actual number of bytes written into the array</returns>
  5832. <remarks>
  5833. To determine the number of bytes in the column, pass a null value for the buffer. The total length will be returned.
  5834. </remarks>
  5835. </member>
  5836. <member name="M:System.Data.SQLite.SQLiteDataReader.GetChar(System.Int32)">
  5837. <summary>
  5838. Returns the column as a single character
  5839. </summary>
  5840. <param name="i">The index of the column to retrieve</param>
  5841. <returns>char</returns>
  5842. </member>
  5843. <member name="M:System.Data.SQLite.SQLiteDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
  5844. <summary>
  5845. Retrieves a column as an array of chars (blob)
  5846. </summary>
  5847. <param name="i">The index of the column to retrieve</param>
  5848. <param name="fieldoffset">The zero-based index of where to begin reading the data</param>
  5849. <param name="buffer">The buffer to write the characters into</param>
  5850. <param name="bufferoffset">The zero-based index of where to begin writing into the array</param>
  5851. <param name="length">The number of bytes to retrieve</param>
  5852. <returns>The actual number of characters written into the array</returns>
  5853. <remarks>
  5854. To determine the number of characters in the column, pass a null value for the buffer. The total length will be returned.
  5855. </remarks>
  5856. </member>
  5857. <member name="M:System.Data.SQLite.SQLiteDataReader.GetDataTypeName(System.Int32)">
  5858. <summary>
  5859. Retrieves the name of the back-end datatype of the column
  5860. </summary>
  5861. <param name="i">The index of the column to retrieve</param>
  5862. <returns>string</returns>
  5863. </member>
  5864. <member name="M:System.Data.SQLite.SQLiteDataReader.GetDateTime(System.Int32)">
  5865. <summary>
  5866. Retrieve the column as a date/time value
  5867. </summary>
  5868. <param name="i">The index of the column to retrieve</param>
  5869. <returns>DateTime</returns>
  5870. </member>
  5871. <member name="M:System.Data.SQLite.SQLiteDataReader.GetDecimal(System.Int32)">
  5872. <summary>
  5873. Retrieve the column as a decimal value
  5874. </summary>
  5875. <param name="i">The index of the column to retrieve</param>
  5876. <returns>decimal</returns>
  5877. </member>
  5878. <member name="M:System.Data.SQLite.SQLiteDataReader.GetDouble(System.Int32)">
  5879. <summary>
  5880. Returns the column as a double
  5881. </summary>
  5882. <param name="i">The index of the column to retrieve</param>
  5883. <returns>double</returns>
  5884. </member>
  5885. <member name="M:System.Data.SQLite.SQLiteDataReader.GetFieldType(System.Int32)">
  5886. <summary>
  5887. Returns the .NET type of a given column
  5888. </summary>
  5889. <param name="i">The index of the column to retrieve</param>
  5890. <returns>Type</returns>
  5891. </member>
  5892. <member name="M:System.Data.SQLite.SQLiteDataReader.GetFloat(System.Int32)">
  5893. <summary>
  5894. Returns a column as a float value
  5895. </summary>
  5896. <param name="i">The index of the column to retrieve</param>
  5897. <returns>float</returns>
  5898. </member>
  5899. <member name="M:System.Data.SQLite.SQLiteDataReader.GetGuid(System.Int32)">
  5900. <summary>
  5901. Returns the column as a Guid
  5902. </summary>
  5903. <param name="i">The index of the column to retrieve</param>
  5904. <returns>Guid</returns>
  5905. </member>
  5906. <member name="M:System.Data.SQLite.SQLiteDataReader.GetInt16(System.Int32)">
  5907. <summary>
  5908. Returns the column as a short
  5909. </summary>
  5910. <param name="i">The index of the column to retrieve</param>
  5911. <returns>Int16</returns>
  5912. </member>
  5913. <member name="M:System.Data.SQLite.SQLiteDataReader.GetInt32(System.Int32)">
  5914. <summary>
  5915. Retrieves the column as an int
  5916. </summary>
  5917. <param name="i">The index of the column to retrieve</param>
  5918. <returns>Int32</returns>
  5919. </member>
  5920. <member name="M:System.Data.SQLite.SQLiteDataReader.GetInt64(System.Int32)">
  5921. <summary>
  5922. Retrieves the column as a long
  5923. </summary>
  5924. <param name="i">The index of the column to retrieve</param>
  5925. <returns>Int64</returns>
  5926. </member>
  5927. <member name="M:System.Data.SQLite.SQLiteDataReader.GetName(System.Int32)">
  5928. <summary>
  5929. Retrieves the name of the column
  5930. </summary>
  5931. <param name="i">The index of the column to retrieve</param>
  5932. <returns>string</returns>
  5933. </member>
  5934. <member name="M:System.Data.SQLite.SQLiteDataReader.GetOrdinal(System.String)">
  5935. <summary>
  5936. Retrieves the i of a column, given its name
  5937. </summary>
  5938. <param name="name">The name of the column to retrieve</param>
  5939. <returns>The int i of the column</returns>
  5940. </member>
  5941. <member name="M:System.Data.SQLite.SQLiteDataReader.GetSchemaTable">
  5942. <summary>
  5943. Schema information in SQLite is difficult to map into .NET conventions, so a lot of work must be done
  5944. to gather the necessary information so it can be represented in an ADO.NET manner.
  5945. </summary>
  5946. <returns>Returns a DataTable containing the schema information for the active SELECT statement being processed.</returns>
  5947. </member>
  5948. <member name="M:System.Data.SQLite.SQLiteDataReader.GetString(System.Int32)">
  5949. <summary>
  5950. Retrieves the column as a string
  5951. </summary>
  5952. <param name="i">The index of the column to retrieve</param>
  5953. <returns>string</returns>
  5954. </member>
  5955. <member name="M:System.Data.SQLite.SQLiteDataReader.GetValue(System.Int32)">
  5956. <summary>
  5957. Retrieves the column as an object corresponding to the underlying datatype of the column
  5958. </summary>
  5959. <param name="i">The index of the column to retrieve</param>
  5960. <returns>object</returns>
  5961. </member>
  5962. <member name="M:System.Data.SQLite.SQLiteDataReader.GetValues(System.Object[])">
  5963. <summary>
  5964. Retreives the values of multiple columns, up to the size of the supplied array
  5965. </summary>
  5966. <param name="values">The array to fill with values from the columns in the current resultset</param>
  5967. <returns>The number of columns retrieved</returns>
  5968. </member>
  5969. <member name="M:System.Data.SQLite.SQLiteDataReader.GetValues">
  5970. <summary>
  5971. Returns a collection containing all the column names and values for the
  5972. current row of data in the current resultset, if any. If there is no
  5973. current row or no current resultset, an exception may be thrown.
  5974. </summary>
  5975. <returns>
  5976. The collection containing the column name and value information for the
  5977. current row of data in the current resultset or null if this information
  5978. cannot be obtained.
  5979. </returns>
  5980. </member>
  5981. <member name="M:System.Data.SQLite.SQLiteDataReader.IsDBNull(System.Int32)">
  5982. <summary>
  5983. Returns True if the specified column is null
  5984. </summary>
  5985. <param name="i">The index of the column to retrieve</param>
  5986. <returns>True or False</returns>
  5987. </member>
  5988. <member name="M:System.Data.SQLite.SQLiteDataReader.NextResult">
  5989. <summary>
  5990. Moves to the next resultset in multiple row-returning SQL command.
  5991. </summary>
  5992. <returns>True if the command was successful and a new resultset is available, False otherwise.</returns>
  5993. </member>
  5994. <member name="M:System.Data.SQLite.SQLiteDataReader.GetConnection(System.Data.SQLite.SQLiteDataReader)">
  5995. <summary>
  5996. This method attempts to query the database connection associated with
  5997. the data reader in use. If the underlying command or connection is
  5998. unavailable, a null value will be returned.
  5999. </summary>
  6000. <returns>
  6001. The connection object -OR- null if it is unavailable.
  6002. </returns>
  6003. </member>
  6004. <member name="M:System.Data.SQLite.SQLiteDataReader.GetSQLiteType(System.Data.SQLite.SQLiteType,System.String)">
  6005. <summary>
  6006. Retrieves the SQLiteType for a given column and row value.
  6007. </summary>
  6008. <param name="oldType">
  6009. The original SQLiteType structure, based only on the column.
  6010. </param>
  6011. <param name="text">
  6012. The textual value of the column for a given row.
  6013. </param>
  6014. <returns>
  6015. The SQLiteType structure.
  6016. </returns>
  6017. </member>
  6018. <member name="M:System.Data.SQLite.SQLiteDataReader.GetSQLiteType(System.Data.SQLite.SQLiteConnectionFlags,System.Int32)">
  6019. <summary>
  6020. Retrieves the SQLiteType for a given column, and caches it to avoid repetetive interop calls.
  6021. </summary>
  6022. <param name="flags">The flags associated with the parent connection object.</param>
  6023. <param name="i">The index of the column to retrieve</param>
  6024. <returns>A SQLiteType structure</returns>
  6025. </member>
  6026. <member name="M:System.Data.SQLite.SQLiteDataReader.Read">
  6027. <summary>
  6028. Reads the next row from the resultset
  6029. </summary>
  6030. <returns>True if a new row was successfully loaded and is ready for processing</returns>
  6031. </member>
  6032. <member name="P:System.Data.SQLite.SQLiteDataReader.Depth">
  6033. <summary>
  6034. Not implemented. Returns 0
  6035. </summary>
  6036. </member>
  6037. <member name="P:System.Data.SQLite.SQLiteDataReader.FieldCount">
  6038. <summary>
  6039. Returns the number of columns in the current resultset
  6040. </summary>
  6041. </member>
  6042. <member name="P:System.Data.SQLite.SQLiteDataReader.StepCount">
  6043. <summary>
  6044. Returns the number of rows seen so far in the current result set.
  6045. </summary>
  6046. </member>
  6047. <member name="P:System.Data.SQLite.SQLiteDataReader.VisibleFieldCount">
  6048. <summary>
  6049. Returns the number of visible fields in the current resultset
  6050. </summary>
  6051. </member>
  6052. <member name="P:System.Data.SQLite.SQLiteDataReader.HasRows">
  6053. <summary>
  6054. Returns True if the resultset has rows that can be fetched
  6055. </summary>
  6056. </member>
  6057. <member name="P:System.Data.SQLite.SQLiteDataReader.IsClosed">
  6058. <summary>
  6059. Returns True if the data reader is closed
  6060. </summary>
  6061. </member>
  6062. <member name="P:System.Data.SQLite.SQLiteDataReader.RecordsAffected">
  6063. <summary>
  6064. Returns the number of rows affected by the statement being executed.
  6065. The value returned may not be accurate for DDL statements. Also, it
  6066. will be -1 for any statement that does not modify the database (e.g.
  6067. SELECT). If an otherwise read-only statement modifies the database
  6068. indirectly (e.g. via a virtual table or user-defined function), the
  6069. value returned is undefined.
  6070. </summary>
  6071. </member>
  6072. <member name="P:System.Data.SQLite.SQLiteDataReader.Item(System.String)">
  6073. <summary>
  6074. Indexer to retrieve data from a column given its name
  6075. </summary>
  6076. <param name="name">The name of the column to retrieve data for</param>
  6077. <returns>The value contained in the column</returns>
  6078. </member>
  6079. <member name="P:System.Data.SQLite.SQLiteDataReader.Item(System.Int32)">
  6080. <summary>
  6081. Indexer to retrieve data from a column given its i
  6082. </summary>
  6083. <param name="i">The index of the column to retrieve</param>
  6084. <returns>The value contained in the column</returns>
  6085. </member>
  6086. <member name="T:System.Data.SQLite.SQLiteException">
  6087. <summary>
  6088. SQLite exception class.
  6089. </summary>
  6090. </member>
  6091. <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  6092. <summary>
  6093. Private constructor for use with serialization.
  6094. </summary>
  6095. <param name="info">
  6096. Holds the serialized object data about the exception being thrown.
  6097. </param>
  6098. <param name="context">
  6099. Contains contextual information about the source or destination.
  6100. </param>
  6101. </member>
  6102. <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.Data.SQLite.SQLiteErrorCode,System.String)">
  6103. <summary>
  6104. Public constructor for generating a SQLite exception given the error
  6105. code and message.
  6106. </summary>
  6107. <param name="errorCode">
  6108. The SQLite return code to report.
  6109. </param>
  6110. <param name="message">
  6111. Message text to go along with the return code message text.
  6112. </param>
  6113. </member>
  6114. <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.String)">
  6115. <summary>
  6116. Public constructor that uses the base class constructor for the error
  6117. message.
  6118. </summary>
  6119. <param name="message">Error message text.</param>
  6120. </member>
  6121. <member name="M:System.Data.SQLite.SQLiteException.#ctor">
  6122. <summary>
  6123. Public constructor that uses the default base class constructor.
  6124. </summary>
  6125. </member>
  6126. <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.String,System.Exception)">
  6127. <summary>
  6128. Public constructor that uses the base class constructor for the error
  6129. message and inner exception.
  6130. </summary>
  6131. <param name="message">Error message text.</param>
  6132. <param name="innerException">The original (inner) exception.</param>
  6133. </member>
  6134. <member name="M:System.Data.SQLite.SQLiteException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  6135. <summary>
  6136. Adds extra information to the serialized object data specific to this
  6137. class type. This is only used for serialization.
  6138. </summary>
  6139. <param name="info">
  6140. Holds the serialized object data about the exception being thrown.
  6141. </param>
  6142. <param name="context">
  6143. Contains contextual information about the source or destination.
  6144. </param>
  6145. </member>
  6146. <member name="M:System.Data.SQLite.SQLiteException.GetErrorString(System.Data.SQLite.SQLiteErrorCode)">
  6147. <summary>
  6148. Returns the error message for the specified SQLite return code.
  6149. </summary>
  6150. <param name="errorCode">The SQLite return code.</param>
  6151. <returns>The error message or null if it cannot be found.</returns>
  6152. </member>
  6153. <member name="M:System.Data.SQLite.SQLiteException.GetStockErrorMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  6154. <summary>
  6155. Returns the composite error message based on the SQLite return code
  6156. and the optional detailed error message.
  6157. </summary>
  6158. <param name="errorCode">The SQLite return code.</param>
  6159. <param name="message">Optional detailed error message.</param>
  6160. <returns>Error message text for the return code.</returns>
  6161. </member>
  6162. <member name="P:System.Data.SQLite.SQLiteException.ResultCode">
  6163. <summary>
  6164. Gets the associated SQLite result code for this exception as a
  6165. <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>. This property returns the same
  6166. underlying value as the <see cref="P:System.Data.SQLite.SQLiteException.ErrorCode"/> property.
  6167. </summary>
  6168. </member>
  6169. <member name="P:System.Data.SQLite.SQLiteException.ErrorCode">
  6170. <summary>
  6171. Gets the associated SQLite return code for this exception as an
  6172. <see cref="T:System.Int32"/>. For desktop versions of the .NET Framework,
  6173. this property overrides the property of the same name within the
  6174. <see cref="T:System.Runtime.InteropServices.ExternalException"/>
  6175. class. This property returns the same underlying value as the
  6176. <see cref="P:System.Data.SQLite.SQLiteException.ResultCode"/> property.
  6177. </summary>
  6178. </member>
  6179. <member name="T:System.Data.SQLite.SQLiteErrorCode">
  6180. <summary>
  6181. SQLite error codes. Actually, this enumeration represents a return code,
  6182. which may also indicate success in one of several ways (e.g. SQLITE_OK,
  6183. SQLITE_ROW, and SQLITE_DONE). Therefore, the name of this enumeration is
  6184. something of a misnomer.
  6185. </summary>
  6186. </member>
  6187. <member name="F:System.Data.SQLite.SQLiteErrorCode.Unknown">
  6188. <summary>
  6189. The error code is unknown. This error code
  6190. is only used by the managed wrapper itself.
  6191. </summary>
  6192. </member>
  6193. <member name="F:System.Data.SQLite.SQLiteErrorCode.Ok">
  6194. <summary>
  6195. Successful result
  6196. </summary>
  6197. </member>
  6198. <member name="F:System.Data.SQLite.SQLiteErrorCode.Error">
  6199. <summary>
  6200. SQL error or missing database
  6201. </summary>
  6202. </member>
  6203. <member name="F:System.Data.SQLite.SQLiteErrorCode.Internal">
  6204. <summary>
  6205. Internal logic error in SQLite
  6206. </summary>
  6207. </member>
  6208. <member name="F:System.Data.SQLite.SQLiteErrorCode.Perm">
  6209. <summary>
  6210. Access permission denied
  6211. </summary>
  6212. </member>
  6213. <member name="F:System.Data.SQLite.SQLiteErrorCode.Abort">
  6214. <summary>
  6215. Callback routine requested an abort
  6216. </summary>
  6217. </member>
  6218. <member name="F:System.Data.SQLite.SQLiteErrorCode.Busy">
  6219. <summary>
  6220. The database file is locked
  6221. </summary>
  6222. </member>
  6223. <member name="F:System.Data.SQLite.SQLiteErrorCode.Locked">
  6224. <summary>
  6225. A table in the database is locked
  6226. </summary>
  6227. </member>
  6228. <member name="F:System.Data.SQLite.SQLiteErrorCode.NoMem">
  6229. <summary>
  6230. A malloc() failed
  6231. </summary>
  6232. </member>
  6233. <member name="F:System.Data.SQLite.SQLiteErrorCode.ReadOnly">
  6234. <summary>
  6235. Attempt to write a readonly database
  6236. </summary>
  6237. </member>
  6238. <member name="F:System.Data.SQLite.SQLiteErrorCode.Interrupt">
  6239. <summary>
  6240. Operation terminated by sqlite3_interrupt()
  6241. </summary>
  6242. </member>
  6243. <member name="F:System.Data.SQLite.SQLiteErrorCode.IoErr">
  6244. <summary>
  6245. Some kind of disk I/O error occurred
  6246. </summary>
  6247. </member>
  6248. <member name="F:System.Data.SQLite.SQLiteErrorCode.Corrupt">
  6249. <summary>
  6250. The database disk image is malformed
  6251. </summary>
  6252. </member>
  6253. <member name="F:System.Data.SQLite.SQLiteErrorCode.NotFound">
  6254. <summary>
  6255. Unknown opcode in sqlite3_file_control()
  6256. </summary>
  6257. </member>
  6258. <member name="F:System.Data.SQLite.SQLiteErrorCode.Full">
  6259. <summary>
  6260. Insertion failed because database is full
  6261. </summary>
  6262. </member>
  6263. <member name="F:System.Data.SQLite.SQLiteErrorCode.CantOpen">
  6264. <summary>
  6265. Unable to open the database file
  6266. </summary>
  6267. </member>
  6268. <member name="F:System.Data.SQLite.SQLiteErrorCode.Protocol">
  6269. <summary>
  6270. Database lock protocol error
  6271. </summary>
  6272. </member>
  6273. <member name="F:System.Data.SQLite.SQLiteErrorCode.Empty">
  6274. <summary>
  6275. Database is empty
  6276. </summary>
  6277. </member>
  6278. <member name="F:System.Data.SQLite.SQLiteErrorCode.Schema">
  6279. <summary>
  6280. The database schema changed
  6281. </summary>
  6282. </member>
  6283. <member name="F:System.Data.SQLite.SQLiteErrorCode.TooBig">
  6284. <summary>
  6285. String or BLOB exceeds size limit
  6286. </summary>
  6287. </member>
  6288. <member name="F:System.Data.SQLite.SQLiteErrorCode.Constraint">
  6289. <summary>
  6290. Abort due to constraint violation
  6291. </summary>
  6292. </member>
  6293. <member name="F:System.Data.SQLite.SQLiteErrorCode.Mismatch">
  6294. <summary>
  6295. Data type mismatch
  6296. </summary>
  6297. </member>
  6298. <member name="F:System.Data.SQLite.SQLiteErrorCode.Misuse">
  6299. <summary>
  6300. Library used incorrectly
  6301. </summary>
  6302. </member>
  6303. <member name="F:System.Data.SQLite.SQLiteErrorCode.NoLfs">
  6304. <summary>
  6305. Uses OS features not supported on host
  6306. </summary>
  6307. </member>
  6308. <member name="F:System.Data.SQLite.SQLiteErrorCode.Auth">
  6309. <summary>
  6310. Authorization denied
  6311. </summary>
  6312. </member>
  6313. <member name="F:System.Data.SQLite.SQLiteErrorCode.Format">
  6314. <summary>
  6315. Auxiliary database format error
  6316. </summary>
  6317. </member>
  6318. <member name="F:System.Data.SQLite.SQLiteErrorCode.Range">
  6319. <summary>
  6320. 2nd parameter to sqlite3_bind out of range
  6321. </summary>
  6322. </member>
  6323. <member name="F:System.Data.SQLite.SQLiteErrorCode.NotADb">
  6324. <summary>
  6325. File opened that is not a database file
  6326. </summary>
  6327. </member>
  6328. <member name="F:System.Data.SQLite.SQLiteErrorCode.Notice">
  6329. <summary>
  6330. Notifications from sqlite3_log()
  6331. </summary>
  6332. </member>
  6333. <member name="F:System.Data.SQLite.SQLiteErrorCode.Warning">
  6334. <summary>
  6335. Warnings from sqlite3_log()
  6336. </summary>
  6337. </member>
  6338. <member name="F:System.Data.SQLite.SQLiteErrorCode.Row">
  6339. <summary>
  6340. sqlite3_step() has another row ready
  6341. </summary>
  6342. </member>
  6343. <member name="F:System.Data.SQLite.SQLiteErrorCode.Done">
  6344. <summary>
  6345. sqlite3_step() has finished executing
  6346. </summary>
  6347. </member>
  6348. <member name="F:System.Data.SQLite.SQLiteErrorCode.NonExtendedMask">
  6349. <summary>
  6350. Used to mask off extended result codes
  6351. </summary>
  6352. </member>
  6353. <member name="T:System.Data.SQLite.SQLiteFactory">
  6354. <summary>
  6355. SQLite implementation of <see cref="T:System.Data.Common.DbProviderFactory"/>.
  6356. </summary>
  6357. <summary>
  6358. SQLite implementation of <see cref="T:System.IServiceProvider"/>.
  6359. </summary>
  6360. </member>
  6361. <member name="M:System.Data.SQLite.SQLiteFactory.#ctor">
  6362. <summary>
  6363. Constructs a new instance.
  6364. </summary>
  6365. </member>
  6366. <member name="F:System.Data.SQLite.SQLiteFactory.Instance">
  6367. <summary>
  6368. Static instance member which returns an instanced <see cref="T:System.Data.SQLite.SQLiteFactory"/> class.
  6369. </summary>
  6370. </member>
  6371. <member name="M:System.Data.SQLite.SQLiteFactory.CreateCommand">
  6372. <summary>
  6373. Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteCommand"/> object.
  6374. </summary>
  6375. <returns>The new object.</returns>
  6376. </member>
  6377. <member name="M:System.Data.SQLite.SQLiteFactory.CreateCommandBuilder">
  6378. <summary>
  6379. Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteCommandBuilder"/> object.
  6380. </summary>
  6381. <returns>The new object.</returns>
  6382. </member>
  6383. <member name="M:System.Data.SQLite.SQLiteFactory.CreateConnection">
  6384. <summary>
  6385. Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteConnection"/> object.
  6386. </summary>
  6387. <returns>The new object.</returns>
  6388. </member>
  6389. <member name="M:System.Data.SQLite.SQLiteFactory.CreateConnectionStringBuilder">
  6390. <summary>
  6391. Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteConnectionStringBuilder"/> object.
  6392. </summary>
  6393. <returns>The new object.</returns>
  6394. </member>
  6395. <member name="M:System.Data.SQLite.SQLiteFactory.CreateDataAdapter">
  6396. <summary>
  6397. Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteDataAdapter"/> object.
  6398. </summary>
  6399. <returns>The new object.</returns>
  6400. </member>
  6401. <member name="M:System.Data.SQLite.SQLiteFactory.CreateParameter">
  6402. <summary>
  6403. Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteParameter"/> object.
  6404. </summary>
  6405. <returns>The new object.</returns>
  6406. </member>
  6407. <member name="M:System.Data.SQLite.SQLiteFactory.System#IServiceProvider#GetService(System.Type)">
  6408. <summary>
  6409. Will provide a <see cref="T:System.IServiceProvider"/> object in .NET 3.5.
  6410. </summary>
  6411. <param name="serviceType">The class or interface type to query for.</param>
  6412. <returns></returns>
  6413. </member>
  6414. <member name="E:System.Data.SQLite.SQLiteFactory.Log">
  6415. <summary>
  6416. This event is raised whenever SQLite raises a logging event.
  6417. Note that this should be set as one of the first things in the
  6418. application. This event is provided for backward compatibility only.
  6419. New code should use the <see cref="T:System.Data.SQLite.SQLiteLog"/> class instead.
  6420. </summary>
  6421. </member>
  6422. <member name="T:System.Data.SQLite.SQLiteFunction">
  6423. <summary>
  6424. This abstract class is designed to handle user-defined functions easily. An instance of the derived class is made for each
  6425. connection to the database.
  6426. </summary>
  6427. <remarks>
  6428. Although there is one instance of a class derived from SQLiteFunction per database connection, the derived class has no access
  6429. to the underlying connection. This is necessary to deter implementers from thinking it would be a good idea to make database
  6430. calls during processing.
  6431. It is important to distinguish between a per-connection instance, and a per-SQL statement context. One instance of this class
  6432. services all SQL statements being stepped through on that connection, and there can be many. One should never store per-statement
  6433. information in member variables of user-defined function classes.
  6434. For aggregate functions, always create and store your per-statement data in the contextData object on the 1st step. This data will
  6435. be automatically freed for you (and Dispose() called if the item supports IDisposable) when the statement completes.
  6436. </remarks>
  6437. </member>
  6438. <member name="F:System.Data.SQLite.SQLiteFunction._base">
  6439. <summary>
  6440. The base connection this function is attached to
  6441. </summary>
  6442. </member>
  6443. <member name="F:System.Data.SQLite.SQLiteFunction._contextDataList">
  6444. <summary>
  6445. Internal array used to keep track of aggregate function context data
  6446. </summary>
  6447. </member>
  6448. <member name="F:System.Data.SQLite.SQLiteFunction._flags">
  6449. <summary>
  6450. The connection flags associated with this object (this should be the
  6451. same value as the flags associated with the parent connection object).
  6452. </summary>
  6453. </member>
  6454. <member name="F:System.Data.SQLite.SQLiteFunction._InvokeFunc">
  6455. <summary>
  6456. Holds a reference to the callback function for user functions
  6457. </summary>
  6458. </member>
  6459. <member name="F:System.Data.SQLite.SQLiteFunction._StepFunc">
  6460. <summary>
  6461. Holds a reference to the callbakc function for stepping in an aggregate function
  6462. </summary>
  6463. </member>
  6464. <member name="F:System.Data.SQLite.SQLiteFunction._FinalFunc">
  6465. <summary>
  6466. Holds a reference to the callback function for finalizing an aggregate function
  6467. </summary>
  6468. </member>
  6469. <member name="F:System.Data.SQLite.SQLiteFunction._CompareFunc">
  6470. <summary>
  6471. Holds a reference to the callback function for collation sequences
  6472. </summary>
  6473. </member>
  6474. <member name="F:System.Data.SQLite.SQLiteFunction._context">
  6475. <summary>
  6476. Current context of the current callback. Only valid during a callback
  6477. </summary>
  6478. </member>
  6479. <member name="F:System.Data.SQLite.SQLiteFunction._registeredFunctions">
  6480. <summary>
  6481. This static list contains all the user-defined functions declared using the proper attributes.
  6482. </summary>
  6483. </member>
  6484. <member name="M:System.Data.SQLite.SQLiteFunction.#ctor">
  6485. <summary>
  6486. Internal constructor, initializes the function's internal variables.
  6487. </summary>
  6488. </member>
  6489. <member name="M:System.Data.SQLite.SQLiteFunction.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String,System.Boolean)">
  6490. <summary>
  6491. Constructs an instance of this class using the specified data-type
  6492. conversion parameters.
  6493. </summary>
  6494. <param name="format">
  6495. The DateTime format to be used when converting string values to a
  6496. DateTime and binding DateTime parameters.
  6497. </param>
  6498. <param name="kind">
  6499. The <see cref="T:System.DateTimeKind"/> to be used when creating DateTime
  6500. values.
  6501. </param>
  6502. <param name="formatString">
  6503. The format string to be used when parsing and formatting DateTime
  6504. values.
  6505. </param>
  6506. <param name="utf16">
  6507. Non-zero to create a UTF-16 data-type conversion context; otherwise,
  6508. a UTF-8 data-type conversion context will be created.
  6509. </param>
  6510. </member>
  6511. <member name="M:System.Data.SQLite.SQLiteFunction.Dispose">
  6512. <summary>
  6513. Disposes of any active contextData variables that were not automatically cleaned up. Sometimes this can happen if
  6514. someone closes the connection while a DataReader is open.
  6515. </summary>
  6516. </member>
  6517. <member name="M:System.Data.SQLite.SQLiteFunction.Dispose(System.Boolean)">
  6518. <summary>
  6519. Placeholder for a user-defined disposal routine
  6520. </summary>
  6521. <param name="disposing">True if the object is being disposed explicitly</param>
  6522. </member>
  6523. <member name="M:System.Data.SQLite.SQLiteFunction.Invoke(System.Object[])">
  6524. <summary>
  6525. Scalar functions override this method to do their magic.
  6526. </summary>
  6527. <remarks>
  6528. Parameters passed to functions have only an affinity for a certain data type, there is no underlying schema available
  6529. to force them into a certain type. Therefore the only types you will ever see as parameters are
  6530. DBNull.Value, Int64, Double, String or byte[] array.
  6531. </remarks>
  6532. <param name="args">The arguments for the command to process</param>
  6533. <returns>You may return most simple types as a return value, null or DBNull.Value to return null, DateTime, or
  6534. you may return an Exception-derived class if you wish to return an error to SQLite. Do not actually throw the error,
  6535. just return it!</returns>
  6536. </member>
  6537. <member name="M:System.Data.SQLite.SQLiteFunction.Step(System.Object[],System.Int32,System.Object@)">
  6538. <summary>
  6539. Aggregate functions override this method to do their magic.
  6540. </summary>
  6541. <remarks>
  6542. Typically you'll be updating whatever you've placed in the contextData field and returning as quickly as possible.
  6543. </remarks>
  6544. <param name="args">The arguments for the command to process</param>
  6545. <param name="stepNumber">The 1-based step number. This is incrememted each time the step method is called.</param>
  6546. <param name="contextData">A placeholder for implementers to store contextual data pertaining to the current context.</param>
  6547. </member>
  6548. <member name="M:System.Data.SQLite.SQLiteFunction.Final(System.Object)">
  6549. <summary>
  6550. Aggregate functions override this method to finish their aggregate processing.
  6551. </summary>
  6552. <remarks>
  6553. If you implemented your aggregate function properly,
  6554. you've been recording and keeping track of your data in the contextData object provided, and now at this stage you should have
  6555. all the information you need in there to figure out what to return.
  6556. NOTE: It is possible to arrive here without receiving a previous call to Step(), in which case the contextData will
  6557. be null. This can happen when no rows were returned. You can either return null, or 0 or some other custom return value
  6558. if that is the case.
  6559. </remarks>
  6560. <param name="contextData">Your own assigned contextData, provided for you so you can return your final results.</param>
  6561. <returns>You may return most simple types as a return value, null or DBNull.Value to return null, DateTime, or
  6562. you may return an Exception-derived class if you wish to return an error to SQLite. Do not actually throw the error,
  6563. just return it!
  6564. </returns>
  6565. </member>
  6566. <member name="M:System.Data.SQLite.SQLiteFunction.Compare(System.String,System.String)">
  6567. <summary>
  6568. User-defined collation sequences override this method to provide a custom string sorting algorithm.
  6569. </summary>
  6570. <param name="param1">The first string to compare</param>
  6571. <param name="param2">The second strnig to compare</param>
  6572. <returns>1 if param1 is greater than param2, 0 if they are equal, or -1 if param1 is less than param2</returns>
  6573. </member>
  6574. <member name="M:System.Data.SQLite.SQLiteFunction.ConvertParams(System.Int32,System.IntPtr)">
  6575. <summary>
  6576. Converts an IntPtr array of context arguments to an object array containing the resolved parameters the pointers point to.
  6577. </summary>
  6578. <remarks>
  6579. Parameters passed to functions have only an affinity for a certain data type, there is no underlying schema available
  6580. to force them into a certain type. Therefore the only types you will ever see as parameters are
  6581. DBNull.Value, Int64, Double, String or byte[] array.
  6582. </remarks>
  6583. <param name="nArgs">The number of arguments</param>
  6584. <param name="argsptr">A pointer to the array of arguments</param>
  6585. <returns>An object array of the arguments once they've been converted to .NET values</returns>
  6586. </member>
  6587. <member name="M:System.Data.SQLite.SQLiteFunction.SetReturnValue(System.IntPtr,System.Object)">
  6588. <summary>
  6589. Takes the return value from Invoke() and Final() and figures out how to return it to SQLite's context.
  6590. </summary>
  6591. <param name="context">The context the return value applies to</param>
  6592. <param name="returnValue">The parameter to return to SQLite</param>
  6593. </member>
  6594. <member name="M:System.Data.SQLite.SQLiteFunction.ScalarCallback(System.IntPtr,System.Int32,System.IntPtr)">
  6595. <summary>
  6596. Internal scalar callback function, which wraps the raw context pointer and calls the virtual Invoke() method.
  6597. WARNING: Must not throw exceptions.
  6598. </summary>
  6599. <param name="context">A raw context pointer</param>
  6600. <param name="nArgs">Number of arguments passed in</param>
  6601. <param name="argsptr">A pointer to the array of arguments</param>
  6602. </member>
  6603. <member name="M:System.Data.SQLite.SQLiteFunction.CompareCallback(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  6604. <summary>
  6605. Internal collation sequence function, which wraps up the raw string pointers and executes the Compare() virtual function.
  6606. WARNING: Must not throw exceptions.
  6607. </summary>
  6608. <param name="ptr">Not used</param>
  6609. <param name="len1">Length of the string pv1</param>
  6610. <param name="ptr1">Pointer to the first string to compare</param>
  6611. <param name="len2">Length of the string pv2</param>
  6612. <param name="ptr2">Pointer to the second string to compare</param>
  6613. <returns>Returns -1 if the first string is less than the second. 0 if they are equal, or 1 if the first string is greater
  6614. than the second. Returns 0 if an exception is caught.</returns>
  6615. </member>
  6616. <member name="M:System.Data.SQLite.SQLiteFunction.CompareCallback16(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  6617. <summary>
  6618. Internal collation sequence function, which wraps up the raw string pointers and executes the Compare() virtual function.
  6619. WARNING: Must not throw exceptions.
  6620. </summary>
  6621. <param name="ptr">Not used</param>
  6622. <param name="len1">Length of the string pv1</param>
  6623. <param name="ptr1">Pointer to the first string to compare</param>
  6624. <param name="len2">Length of the string pv2</param>
  6625. <param name="ptr2">Pointer to the second string to compare</param>
  6626. <returns>Returns -1 if the first string is less than the second. 0 if they are equal, or 1 if the first string is greater
  6627. than the second. Returns 0 if an exception is caught.</returns>
  6628. </member>
  6629. <member name="M:System.Data.SQLite.SQLiteFunction.StepCallback(System.IntPtr,System.Int32,System.IntPtr)">
  6630. <summary>
  6631. The internal aggregate Step function callback, which wraps the raw context pointer and calls the virtual Step() method.
  6632. WARNING: Must not throw exceptions.
  6633. </summary>
  6634. <remarks>
  6635. This function takes care of doing the lookups and getting the important information put together to call the Step() function.
  6636. That includes pulling out the user's contextData and updating it after the call is made. We use a sorted list for this so
  6637. binary searches can be done to find the data.
  6638. </remarks>
  6639. <param name="context">A raw context pointer</param>
  6640. <param name="nArgs">Number of arguments passed in</param>
  6641. <param name="argsptr">A pointer to the array of arguments</param>
  6642. </member>
  6643. <member name="M:System.Data.SQLite.SQLiteFunction.FinalCallback(System.IntPtr)">
  6644. <summary>
  6645. An internal aggregate Final function callback, which wraps the context pointer and calls the virtual Final() method.
  6646. WARNING: Must not throw exceptions.
  6647. </summary>
  6648. <param name="context">A raw context pointer</param>
  6649. </member>
  6650. <member name="M:System.Data.SQLite.SQLiteFunction.#cctor">
  6651. <summary>
  6652. Using reflection, enumerate all assemblies in the current appdomain looking for classes that
  6653. have a SQLiteFunctionAttribute attribute, and registering them accordingly.
  6654. </summary>
  6655. </member>
  6656. <member name="M:System.Data.SQLite.SQLiteFunction.RegisterFunction(System.Type)">
  6657. <summary>
  6658. Manual method of registering a function. The type must still have the SQLiteFunctionAttributes in order to work
  6659. properly, but this is a workaround for the Compact Framework where enumerating assemblies is not currently supported.
  6660. </summary>
  6661. <param name="typ">The type of the function to register</param>
  6662. </member>
  6663. <member name="M:System.Data.SQLite.SQLiteFunction.BindFunctions(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteConnectionFlags)">
  6664. <summary>
  6665. Called by SQLiteBase derived classes, this function binds all user-defined functions to a connection.
  6666. It is done this way so that all user-defined functions will access the database using the same encoding scheme
  6667. as the connection (UTF-8 or UTF-16).
  6668. </summary>
  6669. <remarks>
  6670. The wrapper functions that interop with SQLite will create a unique cookie value, which internally is a pointer to
  6671. all the wrapped callback functions. The interop function uses it to map CDecl callbacks to StdCall callbacks.
  6672. </remarks>
  6673. <param name="sqlbase">The base object on which the functions are to bind</param>
  6674. <param name="flags">The flags associated with the parent connection object</param>
  6675. <returns>Returns a logical list of functions which the connection should retain until it is closed.</returns>
  6676. </member>
  6677. <member name="M:System.Data.SQLite.SQLiteFunction.BindFunction(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction,System.Data.SQLite.SQLiteConnectionFlags)">
  6678. <summary>
  6679. This function binds a user-defined functions to a connection.
  6680. </summary>
  6681. <param name="sqliteBase">
  6682. The <see cref="T:System.Data.SQLite.SQLiteBase"/> object instance associated with the
  6683. <see cref="T:System.Data.SQLite.SQLiteConnection"/> that the function should be bound to.
  6684. </param>
  6685. <param name="functionAttribute">
  6686. The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  6687. the metadata for the function to be bound.
  6688. </param>
  6689. <param name="function">
  6690. The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  6691. function to be bound.
  6692. </param>
  6693. <param name="flags">
  6694. The flags associated with the parent connection object.
  6695. </param>
  6696. </member>
  6697. <member name="P:System.Data.SQLite.SQLiteFunction.SQLiteConvert">
  6698. <summary>
  6699. Returns a reference to the underlying connection's SQLiteConvert class, which can be used to convert
  6700. strings and DateTime's into the current connection's encoding schema.
  6701. </summary>
  6702. </member>
  6703. <member name="T:System.Data.SQLite.SQLiteFunctionEx">
  6704. <summary>
  6705. Extends SQLiteFunction and allows an inherited class to obtain the collating sequence associated with a function call.
  6706. </summary>
  6707. <remarks>
  6708. User-defined functions can call the GetCollationSequence() method in this class and use it to compare strings and char arrays.
  6709. </remarks>
  6710. </member>
  6711. <member name="M:System.Data.SQLite.SQLiteFunctionEx.GetCollationSequence">
  6712. <summary>
  6713. Obtains the collating sequence in effect for the given function.
  6714. </summary>
  6715. <returns></returns>
  6716. </member>
  6717. <member name="T:System.Data.SQLite.FunctionType">
  6718. <summary>
  6719. The type of user-defined function to declare
  6720. </summary>
  6721. </member>
  6722. <member name="F:System.Data.SQLite.FunctionType.Scalar">
  6723. <summary>
  6724. Scalar functions are designed to be called and return a result immediately. Examples include ABS(), Upper(), Lower(), etc.
  6725. </summary>
  6726. </member>
  6727. <member name="F:System.Data.SQLite.FunctionType.Aggregate">
  6728. <summary>
  6729. Aggregate functions are designed to accumulate data until the end of a call and then return a result gleaned from the accumulated data.
  6730. Examples include SUM(), COUNT(), AVG(), etc.
  6731. </summary>
  6732. </member>
  6733. <member name="F:System.Data.SQLite.FunctionType.Collation">
  6734. <summary>
  6735. Collation sequences are used to sort textual data in a custom manner, and appear in an ORDER BY clause. Typically text in an ORDER BY is
  6736. sorted using a straight case-insensitive comparison function. Custom collating sequences can be used to alter the behavior of text sorting
  6737. in a user-defined manner.
  6738. </summary>
  6739. </member>
  6740. <member name="T:System.Data.SQLite.SQLiteCallback">
  6741. <summary>
  6742. An internal callback delegate declaration.
  6743. </summary>
  6744. <param name="context">Raw native context pointer for the user function.</param>
  6745. <param name="argc">Total number of arguments to the user function.</param>
  6746. <param name="argv">Raw native pointer to the array of raw native argument pointers.</param>
  6747. </member>
  6748. <member name="T:System.Data.SQLite.SQLiteFinalCallback">
  6749. <summary>
  6750. An internal final callback delegate declaration.
  6751. </summary>
  6752. <param name="context">Raw context pointer for the user function</param>
  6753. </member>
  6754. <member name="T:System.Data.SQLite.SQLiteCollation">
  6755. <summary>
  6756. Internal callback delegate for implementing collation sequences
  6757. </summary>
  6758. <param name="puser">Not used</param>
  6759. <param name="len1">Length of the string pv1</param>
  6760. <param name="pv1">Pointer to the first string to compare</param>
  6761. <param name="len2">Length of the string pv2</param>
  6762. <param name="pv2">Pointer to the second string to compare</param>
  6763. <returns>Returns -1 if the first string is less than the second. 0 if they are equal, or 1 if the first string is greater
  6764. than the second.</returns>
  6765. </member>
  6766. <member name="T:System.Data.SQLite.CollationTypeEnum">
  6767. <summary>
  6768. The type of collating sequence
  6769. </summary>
  6770. </member>
  6771. <member name="F:System.Data.SQLite.CollationTypeEnum.Binary">
  6772. <summary>
  6773. The built-in BINARY collating sequence
  6774. </summary>
  6775. </member>
  6776. <member name="F:System.Data.SQLite.CollationTypeEnum.NoCase">
  6777. <summary>
  6778. The built-in NOCASE collating sequence
  6779. </summary>
  6780. </member>
  6781. <member name="F:System.Data.SQLite.CollationTypeEnum.Reverse">
  6782. <summary>
  6783. The built-in REVERSE collating sequence
  6784. </summary>
  6785. </member>
  6786. <member name="F:System.Data.SQLite.CollationTypeEnum.Custom">
  6787. <summary>
  6788. A custom user-defined collating sequence
  6789. </summary>
  6790. </member>
  6791. <member name="T:System.Data.SQLite.CollationEncodingEnum">
  6792. <summary>
  6793. The encoding type the collation sequence uses
  6794. </summary>
  6795. </member>
  6796. <member name="F:System.Data.SQLite.CollationEncodingEnum.UTF8">
  6797. <summary>
  6798. The collation sequence is UTF8
  6799. </summary>
  6800. </member>
  6801. <member name="F:System.Data.SQLite.CollationEncodingEnum.UTF16LE">
  6802. <summary>
  6803. The collation sequence is UTF16 little-endian
  6804. </summary>
  6805. </member>
  6806. <member name="F:System.Data.SQLite.CollationEncodingEnum.UTF16BE">
  6807. <summary>
  6808. The collation sequence is UTF16 big-endian
  6809. </summary>
  6810. </member>
  6811. <member name="T:System.Data.SQLite.CollationSequence">
  6812. <summary>
  6813. A struct describing the collating sequence a function is executing in
  6814. </summary>
  6815. </member>
  6816. <member name="F:System.Data.SQLite.CollationSequence.Name">
  6817. <summary>
  6818. The name of the collating sequence
  6819. </summary>
  6820. </member>
  6821. <member name="F:System.Data.SQLite.CollationSequence.Type">
  6822. <summary>
  6823. The type of collating sequence
  6824. </summary>
  6825. </member>
  6826. <member name="F:System.Data.SQLite.CollationSequence.Encoding">
  6827. <summary>
  6828. The text encoding of the collation sequence
  6829. </summary>
  6830. </member>
  6831. <member name="F:System.Data.SQLite.CollationSequence._func">
  6832. <summary>
  6833. Context of the function that requested the collating sequence
  6834. </summary>
  6835. </member>
  6836. <member name="M:System.Data.SQLite.CollationSequence.Compare(System.String,System.String)">
  6837. <summary>
  6838. Calls the base collating sequence to compare two strings
  6839. </summary>
  6840. <param name="s1">The first string to compare</param>
  6841. <param name="s2">The second string to compare</param>
  6842. <returns>-1 if s1 is less than s2, 0 if s1 is equal to s2, and 1 if s1 is greater than s2</returns>
  6843. </member>
  6844. <member name="M:System.Data.SQLite.CollationSequence.Compare(System.Char[],System.Char[])">
  6845. <summary>
  6846. Calls the base collating sequence to compare two character arrays
  6847. </summary>
  6848. <param name="c1">The first array to compare</param>
  6849. <param name="c2">The second array to compare</param>
  6850. <returns>-1 if c1 is less than c2, 0 if c1 is equal to c2, and 1 if c1 is greater than c2</returns>
  6851. </member>
  6852. <member name="T:System.Data.SQLite.SQLiteFunctionAttribute">
  6853. <summary>
  6854. A simple custom attribute to enable us to easily find user-defined functions in
  6855. the loaded assemblies and initialize them in SQLite as connections are made.
  6856. </summary>
  6857. </member>
  6858. <member name="M:System.Data.SQLite.SQLiteFunctionAttribute.#ctor">
  6859. <summary>
  6860. Default constructor, initializes the internal variables for the function.
  6861. </summary>
  6862. </member>
  6863. <member name="M:System.Data.SQLite.SQLiteFunctionAttribute.#ctor(System.String,System.Int32,System.Data.SQLite.FunctionType)">
  6864. <summary>
  6865. Constructs an instance of this class.
  6866. </summary>
  6867. <param name="name">
  6868. The name of the function, as seen by the SQLite core library.
  6869. </param>
  6870. <param name="argumentCount">
  6871. The number of arguments that the function will accept.
  6872. </param>
  6873. <param name="functionType">
  6874. The type of function being declared. This will either be Scalar,
  6875. Aggregate, or Collation.
  6876. </param>
  6877. </member>
  6878. <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.Name">
  6879. <summary>
  6880. The function's name as it will be used in SQLite command text.
  6881. </summary>
  6882. </member>
  6883. <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.Arguments">
  6884. <summary>
  6885. The number of arguments this function expects. -1 if the number of arguments is variable.
  6886. </summary>
  6887. </member>
  6888. <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.FuncType">
  6889. <summary>
  6890. The type of function this implementation will be.
  6891. </summary>
  6892. </member>
  6893. <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.InstanceType">
  6894. <summary>
  6895. The <see cref="T:System.Type"/> object instance that describes the class
  6896. containing the implementation for the associated function.
  6897. </summary>
  6898. </member>
  6899. <member name="T:System.Data.SQLite.SQLiteKeyReader">
  6900. <summary>
  6901. This class provides key info for a given SQLite statement.
  6902. <remarks>
  6903. Providing key information for a given statement is non-trivial :(
  6904. </remarks>
  6905. </summary>
  6906. </member>
  6907. <member name="M:System.Data.SQLite.SQLiteKeyReader.#ctor(System.Data.SQLite.SQLiteConnection,System.Data.SQLite.SQLiteDataReader,System.Data.SQLite.SQLiteStatement)">
  6908. <summary>
  6909. This function does all the nasty work at determining what keys need to be returned for
  6910. a given statement.
  6911. </summary>
  6912. <param name="cnn"></param>
  6913. <param name="reader"></param>
  6914. <param name="stmt"></param>
  6915. </member>
  6916. <member name="M:System.Data.SQLite.SQLiteKeyReader.Sync">
  6917. <summary>
  6918. Make sure all the subqueries are open and ready and sync'd with the current rowid
  6919. of the table they're supporting
  6920. </summary>
  6921. </member>
  6922. <member name="M:System.Data.SQLite.SQLiteKeyReader.Reset">
  6923. <summary>
  6924. Release any readers on any subqueries
  6925. </summary>
  6926. </member>
  6927. <member name="M:System.Data.SQLite.SQLiteKeyReader.AppendSchemaTable(System.Data.DataTable)">
  6928. <summary>
  6929. Append all the columns we've added to the original query to the schema
  6930. </summary>
  6931. <param name="tbl"></param>
  6932. </member>
  6933. <member name="P:System.Data.SQLite.SQLiteKeyReader.Count">
  6934. <summary>
  6935. How many additional columns of keyinfo we're holding
  6936. </summary>
  6937. </member>
  6938. <member name="T:System.Data.SQLite.SQLiteKeyReader.KeyInfo">
  6939. <summary>
  6940. Used to support CommandBehavior.KeyInfo
  6941. </summary>
  6942. </member>
  6943. <member name="T:System.Data.SQLite.SQLiteKeyReader.KeyQuery">
  6944. <summary>
  6945. A single sub-query for a given table/database.
  6946. </summary>
  6947. </member>
  6948. <member name="T:System.Data.SQLite.LogEventArgs">
  6949. <summary>
  6950. Event data for logging event handlers.
  6951. </summary>
  6952. </member>
  6953. <member name="F:System.Data.SQLite.LogEventArgs.ErrorCode">
  6954. <summary>
  6955. The error code. The type of this object value should be
  6956. <see cref="T:System.Int32"/> or <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>.
  6957. </summary>
  6958. </member>
  6959. <member name="F:System.Data.SQLite.LogEventArgs.Message">
  6960. <summary>
  6961. SQL statement text as the statement first begins executing
  6962. </summary>
  6963. </member>
  6964. <member name="F:System.Data.SQLite.LogEventArgs.Data">
  6965. <summary>
  6966. Extra data associated with this event, if any.
  6967. </summary>
  6968. </member>
  6969. <member name="M:System.Data.SQLite.LogEventArgs.#ctor(System.IntPtr,System.Object,System.String,System.Object)">
  6970. <summary>
  6971. Constructs the object.
  6972. </summary>
  6973. <param name="pUserData">Should be null.</param>
  6974. <param name="errorCode">
  6975. The error code. The type of this object value should be
  6976. <see cref="T:System.Int32"/> or <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>.
  6977. </param>
  6978. <param name="message">The error message, if any.</param>
  6979. <param name="data">The extra data, if any.</param>
  6980. </member>
  6981. <member name="T:System.Data.SQLite.SQLiteLogEventHandler">
  6982. <summary>
  6983. Raised when a log event occurs.
  6984. </summary>
  6985. <param name="sender">The current connection</param>
  6986. <param name="e">Event arguments of the trace</param>
  6987. </member>
  6988. <member name="T:System.Data.SQLite.SQLiteLog">
  6989. <summary>
  6990. Manages the SQLite custom logging functionality and the associated
  6991. callback for the whole process.
  6992. </summary>
  6993. </member>
  6994. <member name="F:System.Data.SQLite.SQLiteLog.syncRoot">
  6995. <summary>
  6996. Object used to synchronize access to the static instance data
  6997. for this class.
  6998. </summary>
  6999. </member>
  7000. <member name="F:System.Data.SQLite.SQLiteLog._domainUnload">
  7001. <summary>
  7002. Member variable to store the AppDomain.DomainUnload event handler.
  7003. </summary>
  7004. </member>
  7005. <member name="F:System.Data.SQLite.SQLiteLog._defaultHandler">
  7006. <summary>
  7007. The default log event handler.
  7008. </summary>
  7009. </member>
  7010. <member name="F:System.Data.SQLite.SQLiteLog._callback">
  7011. <summary>
  7012. The log callback passed to native SQLite engine. This must live
  7013. as long as the SQLite library has a pointer to it.
  7014. </summary>
  7015. </member>
  7016. <member name="F:System.Data.SQLite.SQLiteLog._sql">
  7017. <summary>
  7018. The base SQLite object to interop with.
  7019. </summary>
  7020. </member>
  7021. <member name="F:System.Data.SQLite.SQLiteLog._enabled">
  7022. <summary>
  7023. This will be non-zero if logging is currently enabled.
  7024. </summary>
  7025. </member>
  7026. <member name="M:System.Data.SQLite.SQLiteLog.Initialize">
  7027. <summary>
  7028. Initializes the SQLite logging facilities.
  7029. </summary>
  7030. </member>
  7031. <member name="M:System.Data.SQLite.SQLiteLog.DomainUnload(System.Object,System.EventArgs)">
  7032. <summary>
  7033. Handles the AppDomain being unloaded.
  7034. </summary>
  7035. <param name="sender">Should be null.</param>
  7036. <param name="e">The data associated with this event.</param>
  7037. </member>
  7038. <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.String)">
  7039. <summary>
  7040. Log a message to all the registered log event handlers without going
  7041. through the SQLite library.
  7042. </summary>
  7043. <param name="message">The message to be logged.</param>
  7044. </member>
  7045. <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  7046. <summary>
  7047. Log a message to all the registered log event handlers without going
  7048. through the SQLite library.
  7049. </summary>
  7050. <param name="errorCode">The SQLite error code.</param>
  7051. <param name="message">The message to be logged.</param>
  7052. </member>
  7053. <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.Int32,System.String)">
  7054. <summary>
  7055. Log a message to all the registered log event handlers without going
  7056. through the SQLite library.
  7057. </summary>
  7058. <param name="errorCode">The integer error code.</param>
  7059. <param name="message">The message to be logged.</param>
  7060. </member>
  7061. <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.Object,System.String)">
  7062. <summary>
  7063. Log a message to all the registered log event handlers without going
  7064. through the SQLite library.
  7065. </summary>
  7066. <param name="errorCode">
  7067. The error code. The type of this object value should be
  7068. System.Int32 or SQLiteErrorCode.
  7069. </param>
  7070. <param name="message">The message to be logged.</param>
  7071. </member>
  7072. <member name="M:System.Data.SQLite.SQLiteLog.InitializeDefaultHandler">
  7073. <summary>
  7074. Creates and initializes the default log event handler.
  7075. </summary>
  7076. </member>
  7077. <member name="M:System.Data.SQLite.SQLiteLog.AddDefaultHandler">
  7078. <summary>
  7079. Adds the default log event handler to the list of handlers.
  7080. </summary>
  7081. </member>
  7082. <member name="M:System.Data.SQLite.SQLiteLog.RemoveDefaultHandler">
  7083. <summary>
  7084. Removes the default log event handler from the list of handlers.
  7085. </summary>
  7086. </member>
  7087. <member name="M:System.Data.SQLite.SQLiteLog.LogCallback(System.IntPtr,System.Int32,System.IntPtr)">
  7088. <summary>
  7089. Internal proxy function that calls any registered application log
  7090. event handlers.
  7091. WARNING: This method is used more-or-less directly by native code,
  7092. do not modify its type signature.
  7093. </summary>
  7094. <param name="pUserData">
  7095. The extra data associated with this message, if any.
  7096. </param>
  7097. <param name="errorCode">
  7098. The error code associated with this message.
  7099. </param>
  7100. <param name="pMessage">
  7101. The message string to be logged.
  7102. </param>
  7103. </member>
  7104. <member name="M:System.Data.SQLite.SQLiteLog.LogEventHandler(System.Object,System.Data.SQLite.LogEventArgs)">
  7105. <summary>
  7106. Default logger. Currently, uses the Trace class (i.e. sends events
  7107. to the current trace listeners, if any).
  7108. </summary>
  7109. <param name="sender">Should be null.</param>
  7110. <param name="e">The data associated with this event.</param>
  7111. </member>
  7112. <member name="E:System.Data.SQLite.SQLiteLog._handlers">
  7113. <summary>
  7114. Member variable to store the application log handler to call.
  7115. </summary>
  7116. </member>
  7117. <member name="E:System.Data.SQLite.SQLiteLog.Log">
  7118. <summary>
  7119. This event is raised whenever SQLite raises a logging event.
  7120. Note that this should be set as one of the first things in the
  7121. application.
  7122. </summary>
  7123. </member>
  7124. <member name="P:System.Data.SQLite.SQLiteLog.Enabled">
  7125. <summary>
  7126. If this property is true, logging is enabled; otherwise, logging is
  7127. disabled. When logging is disabled, no logging events will fire.
  7128. </summary>
  7129. </member>
  7130. <member name="T:System.Data.SQLite.SQLiteMetaDataCollectionNames">
  7131. <summary>
  7132. MetaDataCollections specific to SQLite
  7133. </summary>
  7134. </member>
  7135. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Catalogs">
  7136. <summary>
  7137. Returns a list of databases attached to the connection
  7138. </summary>
  7139. </member>
  7140. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Columns">
  7141. <summary>
  7142. Returns column information for the specified table
  7143. </summary>
  7144. </member>
  7145. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Indexes">
  7146. <summary>
  7147. Returns index information for the optionally-specified table
  7148. </summary>
  7149. </member>
  7150. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.IndexColumns">
  7151. <summary>
  7152. Returns base columns for the given index
  7153. </summary>
  7154. </member>
  7155. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Tables">
  7156. <summary>
  7157. Returns the tables in the given catalog
  7158. </summary>
  7159. </member>
  7160. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Views">
  7161. <summary>
  7162. Returns user-defined views in the given catalog
  7163. </summary>
  7164. </member>
  7165. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.ViewColumns">
  7166. <summary>
  7167. Returns underlying column information on the given view
  7168. </summary>
  7169. </member>
  7170. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.ForeignKeys">
  7171. <summary>
  7172. Returns foreign key information for the given catalog
  7173. </summary>
  7174. </member>
  7175. <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Triggers">
  7176. <summary>
  7177. Returns the triggers on the database
  7178. </summary>
  7179. </member>
  7180. <member name="T:System.Data.SQLite.SQLiteParameter">
  7181. <summary>
  7182. SQLite implementation of DbParameter.
  7183. </summary>
  7184. </member>
  7185. <member name="F:System.Data.SQLite.SQLiteParameter.UnknownDbType">
  7186. <summary>
  7187. This value represents an "unknown" <see cref="P:System.Data.SQLite.SQLiteParameter.DbType"/>.
  7188. </summary>
  7189. </member>
  7190. <member name="F:System.Data.SQLite.SQLiteParameter._command">
  7191. <summary>
  7192. The command associated with this parameter.
  7193. </summary>
  7194. </member>
  7195. <member name="F:System.Data.SQLite.SQLiteParameter._dbType">
  7196. <summary>
  7197. The data type of the parameter
  7198. </summary>
  7199. </member>
  7200. <member name="F:System.Data.SQLite.SQLiteParameter._rowVersion">
  7201. <summary>
  7202. The version information for mapping the parameter
  7203. </summary>
  7204. </member>
  7205. <member name="F:System.Data.SQLite.SQLiteParameter._objValue">
  7206. <summary>
  7207. The value of the data in the parameter
  7208. </summary>
  7209. </member>
  7210. <member name="F:System.Data.SQLite.SQLiteParameter._sourceColumn">
  7211. <summary>
  7212. The source column for the parameter
  7213. </summary>
  7214. </member>
  7215. <member name="F:System.Data.SQLite.SQLiteParameter._parameterName">
  7216. <summary>
  7217. The column name
  7218. </summary>
  7219. </member>
  7220. <member name="F:System.Data.SQLite.SQLiteParameter._dataSize">
  7221. <summary>
  7222. The data size, unused by SQLite
  7223. </summary>
  7224. </member>
  7225. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.IDbCommand)">
  7226. <summary>
  7227. Constructor used when creating for use with a specific command.
  7228. </summary>
  7229. <param name="command">
  7230. The command associated with this parameter.
  7231. </param>
  7232. </member>
  7233. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor">
  7234. <summary>
  7235. Default constructor
  7236. </summary>
  7237. </member>
  7238. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String)">
  7239. <summary>
  7240. Constructs a named parameter given the specified parameter name
  7241. </summary>
  7242. <param name="parameterName">The parameter name</param>
  7243. </member>
  7244. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Object)">
  7245. <summary>
  7246. Constructs a named parameter given the specified parameter name and initial value
  7247. </summary>
  7248. <param name="parameterName">The parameter name</param>
  7249. <param name="value">The initial value of the parameter</param>
  7250. </member>
  7251. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType)">
  7252. <summary>
  7253. Constructs a named parameter of the specified type
  7254. </summary>
  7255. <param name="parameterName">The parameter name</param>
  7256. <param name="dbType">The datatype of the parameter</param>
  7257. </member>
  7258. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.String)">
  7259. <summary>
  7260. Constructs a named parameter of the specified type and source column reference
  7261. </summary>
  7262. <param name="parameterName">The parameter name</param>
  7263. <param name="dbType">The data type</param>
  7264. <param name="sourceColumn">The source column</param>
  7265. </member>
  7266. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.String,System.Data.DataRowVersion)">
  7267. <summary>
  7268. Constructs a named parameter of the specified type, source column and row version
  7269. </summary>
  7270. <param name="parameterName">The parameter name</param>
  7271. <param name="dbType">The data type</param>
  7272. <param name="sourceColumn">The source column</param>
  7273. <param name="rowVersion">The row version information</param>
  7274. </member>
  7275. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType)">
  7276. <summary>
  7277. Constructs an unnamed parameter of the specified data type
  7278. </summary>
  7279. <param name="dbType">The datatype of the parameter</param>
  7280. </member>
  7281. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Object)">
  7282. <summary>
  7283. Constructs an unnamed parameter of the specified data type and sets the initial value
  7284. </summary>
  7285. <param name="dbType">The datatype of the parameter</param>
  7286. <param name="value">The initial value of the parameter</param>
  7287. </member>
  7288. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.String)">
  7289. <summary>
  7290. Constructs an unnamed parameter of the specified data type and source column
  7291. </summary>
  7292. <param name="dbType">The datatype of the parameter</param>
  7293. <param name="sourceColumn">The source column</param>
  7294. </member>
  7295. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.String,System.Data.DataRowVersion)">
  7296. <summary>
  7297. Constructs an unnamed parameter of the specified data type, source column and row version
  7298. </summary>
  7299. <param name="dbType">The data type</param>
  7300. <param name="sourceColumn">The source column</param>
  7301. <param name="rowVersion">The row version information</param>
  7302. </member>
  7303. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32)">
  7304. <summary>
  7305. Constructs a named parameter of the specified type and size
  7306. </summary>
  7307. <param name="parameterName">The parameter name</param>
  7308. <param name="parameterType">The data type</param>
  7309. <param name="parameterSize">The size of the parameter</param>
  7310. </member>
  7311. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.String)">
  7312. <summary>
  7313. Constructs a named parameter of the specified type, size and source column
  7314. </summary>
  7315. <param name="parameterName">The name of the parameter</param>
  7316. <param name="parameterType">The data type</param>
  7317. <param name="parameterSize">The size of the parameter</param>
  7318. <param name="sourceColumn">The source column</param>
  7319. </member>
  7320. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.String,System.Data.DataRowVersion)">
  7321. <summary>
  7322. Constructs a named parameter of the specified type, size, source column and row version
  7323. </summary>
  7324. <param name="parameterName">The name of the parameter</param>
  7325. <param name="parameterType">The data type</param>
  7326. <param name="parameterSize">The size of the parameter</param>
  7327. <param name="sourceColumn">The source column</param>
  7328. <param name="rowVersion">The row version information</param>
  7329. </member>
  7330. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
  7331. <summary>
  7332. Constructs a named parameter of the specified type, size, source column and row version
  7333. </summary>
  7334. <param name="parameterName">The name of the parameter</param>
  7335. <param name="parameterType">The data type</param>
  7336. <param name="parameterSize">The size of the parameter</param>
  7337. <param name="direction">Only input parameters are supported in SQLite</param>
  7338. <param name="isNullable">Ignored</param>
  7339. <param name="precision">Ignored</param>
  7340. <param name="scale">Ignored</param>
  7341. <param name="sourceColumn">The source column</param>
  7342. <param name="rowVersion">The row version information</param>
  7343. <param name="value">The initial value to assign the parameter</param>
  7344. </member>
  7345. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)">
  7346. <summary>
  7347. Constructs a named parameter, yet another flavor
  7348. </summary>
  7349. <param name="parameterName">The name of the parameter</param>
  7350. <param name="parameterType">The data type</param>
  7351. <param name="parameterSize">The size of the parameter</param>
  7352. <param name="direction">Only input parameters are supported in SQLite</param>
  7353. <param name="precision">Ignored</param>
  7354. <param name="scale">Ignored</param>
  7355. <param name="sourceColumn">The source column</param>
  7356. <param name="rowVersion">The row version information</param>
  7357. <param name="sourceColumnNullMapping">Whether or not this parameter is for comparing NULL's</param>
  7358. <param name="value">The intial value to assign the parameter</param>
  7359. </member>
  7360. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Int32)">
  7361. <summary>
  7362. Constructs an unnamed parameter of the specified type and size
  7363. </summary>
  7364. <param name="parameterType">The data type</param>
  7365. <param name="parameterSize">The size of the parameter</param>
  7366. </member>
  7367. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Int32,System.String)">
  7368. <summary>
  7369. Constructs an unnamed parameter of the specified type, size, and source column
  7370. </summary>
  7371. <param name="parameterType">The data type</param>
  7372. <param name="parameterSize">The size of the parameter</param>
  7373. <param name="sourceColumn">The source column</param>
  7374. </member>
  7375. <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Int32,System.String,System.Data.DataRowVersion)">
  7376. <summary>
  7377. Constructs an unnamed parameter of the specified type, size, source column and row version
  7378. </summary>
  7379. <param name="parameterType">The data type</param>
  7380. <param name="parameterSize">The size of the parameter</param>
  7381. <param name="sourceColumn">The source column</param>
  7382. <param name="rowVersion">The row version information</param>
  7383. </member>
  7384. <member name="M:System.Data.SQLite.SQLiteParameter.ResetDbType">
  7385. <summary>
  7386. Resets the DbType of the parameter so it can be inferred from the value
  7387. </summary>
  7388. </member>
  7389. <member name="M:System.Data.SQLite.SQLiteParameter.Clone">
  7390. <summary>
  7391. Clones a parameter
  7392. </summary>
  7393. <returns>A new, unassociated SQLiteParameter</returns>
  7394. </member>
  7395. <member name="P:System.Data.SQLite.SQLiteParameter.Command">
  7396. <summary>
  7397. The command associated with this parameter.
  7398. </summary>
  7399. </member>
  7400. <member name="P:System.Data.SQLite.SQLiteParameter.IsNullable">
  7401. <summary>
  7402. Whether or not the parameter can contain a null value
  7403. </summary>
  7404. </member>
  7405. <member name="P:System.Data.SQLite.SQLiteParameter.DbType">
  7406. <summary>
  7407. Returns the datatype of the parameter
  7408. </summary>
  7409. </member>
  7410. <member name="P:System.Data.SQLite.SQLiteParameter.Direction">
  7411. <summary>
  7412. Supports only input parameters
  7413. </summary>
  7414. </member>
  7415. <member name="P:System.Data.SQLite.SQLiteParameter.ParameterName">
  7416. <summary>
  7417. Returns the parameter name
  7418. </summary>
  7419. </member>
  7420. <member name="P:System.Data.SQLite.SQLiteParameter.Size">
  7421. <summary>
  7422. Returns the size of the parameter
  7423. </summary>
  7424. </member>
  7425. <member name="P:System.Data.SQLite.SQLiteParameter.SourceColumn">
  7426. <summary>
  7427. Gets/sets the source column
  7428. </summary>
  7429. </member>
  7430. <member name="P:System.Data.SQLite.SQLiteParameter.SourceColumnNullMapping">
  7431. <summary>
  7432. Used by DbCommandBuilder to determine the mapping for nullable fields
  7433. </summary>
  7434. </member>
  7435. <member name="P:System.Data.SQLite.SQLiteParameter.SourceVersion">
  7436. <summary>
  7437. Gets and sets the row version
  7438. </summary>
  7439. </member>
  7440. <member name="P:System.Data.SQLite.SQLiteParameter.Value">
  7441. <summary>
  7442. Gets and sets the parameter value. If no datatype was specified, the datatype will assume the type from the value given.
  7443. </summary>
  7444. </member>
  7445. <member name="T:System.Data.SQLite.SQLiteParameterCollection">
  7446. <summary>
  7447. SQLite implementation of DbParameterCollection.
  7448. </summary>
  7449. </member>
  7450. <member name="F:System.Data.SQLite.SQLiteParameterCollection._command">
  7451. <summary>
  7452. The underlying command to which this collection belongs
  7453. </summary>
  7454. </member>
  7455. <member name="F:System.Data.SQLite.SQLiteParameterCollection._parameterList">
  7456. <summary>
  7457. The internal array of parameters in this collection
  7458. </summary>
  7459. </member>
  7460. <member name="F:System.Data.SQLite.SQLiteParameterCollection._unboundFlag">
  7461. <summary>
  7462. Determines whether or not all parameters have been bound to their statement(s)
  7463. </summary>
  7464. </member>
  7465. <member name="M:System.Data.SQLite.SQLiteParameterCollection.#ctor(System.Data.SQLite.SQLiteCommand)">
  7466. <summary>
  7467. Initializes the collection
  7468. </summary>
  7469. <param name="cmd">The command to which the collection belongs</param>
  7470. </member>
  7471. <member name="M:System.Data.SQLite.SQLiteParameterCollection.GetEnumerator">
  7472. <summary>
  7473. Retrieves an enumerator for the collection
  7474. </summary>
  7475. <returns>An enumerator for the underlying array</returns>
  7476. </member>
  7477. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Data.DbType,System.Int32,System.String)">
  7478. <summary>
  7479. Adds a parameter to the collection
  7480. </summary>
  7481. <param name="parameterName">The parameter name</param>
  7482. <param name="parameterType">The data type</param>
  7483. <param name="parameterSize">The size of the value</param>
  7484. <param name="sourceColumn">The source column</param>
  7485. <returns>A SQLiteParameter object</returns>
  7486. </member>
  7487. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Data.DbType,System.Int32)">
  7488. <summary>
  7489. Adds a parameter to the collection
  7490. </summary>
  7491. <param name="parameterName">The parameter name</param>
  7492. <param name="parameterType">The data type</param>
  7493. <param name="parameterSize">The size of the value</param>
  7494. <returns>A SQLiteParameter object</returns>
  7495. </member>
  7496. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Data.DbType)">
  7497. <summary>
  7498. Adds a parameter to the collection
  7499. </summary>
  7500. <param name="parameterName">The parameter name</param>
  7501. <param name="parameterType">The data type</param>
  7502. <returns>A SQLiteParameter object</returns>
  7503. </member>
  7504. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.Data.SQLite.SQLiteParameter)">
  7505. <summary>
  7506. Adds a parameter to the collection
  7507. </summary>
  7508. <param name="parameter">The parameter to add</param>
  7509. <returns>A zero-based index of where the parameter is located in the array</returns>
  7510. </member>
  7511. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.Object)">
  7512. <summary>
  7513. Adds a parameter to the collection
  7514. </summary>
  7515. <param name="value">The parameter to add</param>
  7516. <returns>A zero-based index of where the parameter is located in the array</returns>
  7517. </member>
  7518. <member name="M:System.Data.SQLite.SQLiteParameterCollection.AddWithValue(System.String,System.Object)">
  7519. <summary>
  7520. Adds a named/unnamed parameter and its value to the parameter collection.
  7521. </summary>
  7522. <param name="parameterName">Name of the parameter, or null to indicate an unnamed parameter</param>
  7523. <param name="value">The initial value of the parameter</param>
  7524. <returns>Returns the SQLiteParameter object created during the call.</returns>
  7525. </member>
  7526. <member name="M:System.Data.SQLite.SQLiteParameterCollection.AddRange(System.Data.SQLite.SQLiteParameter[])">
  7527. <summary>
  7528. Adds an array of parameters to the collection
  7529. </summary>
  7530. <param name="values">The array of parameters to add</param>
  7531. </member>
  7532. <member name="M:System.Data.SQLite.SQLiteParameterCollection.AddRange(System.Array)">
  7533. <summary>
  7534. Adds an array of parameters to the collection
  7535. </summary>
  7536. <param name="values">The array of parameters to add</param>
  7537. </member>
  7538. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Clear">
  7539. <summary>
  7540. Clears the array and resets the collection
  7541. </summary>
  7542. </member>
  7543. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Contains(System.String)">
  7544. <summary>
  7545. Determines if the named parameter exists in the collection
  7546. </summary>
  7547. <param name="parameterName">The name of the parameter to check</param>
  7548. <returns>True if the parameter is in the collection</returns>
  7549. </member>
  7550. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Contains(System.Object)">
  7551. <summary>
  7552. Determines if the parameter exists in the collection
  7553. </summary>
  7554. <param name="value">The SQLiteParameter to check</param>
  7555. <returns>True if the parameter is in the collection</returns>
  7556. </member>
  7557. <member name="M:System.Data.SQLite.SQLiteParameterCollection.CopyTo(System.Array,System.Int32)">
  7558. <summary>
  7559. Not implemented
  7560. </summary>
  7561. <param name="array"></param>
  7562. <param name="index"></param>
  7563. </member>
  7564. <member name="M:System.Data.SQLite.SQLiteParameterCollection.GetParameter(System.String)">
  7565. <summary>
  7566. Retrieve a parameter by name from the collection
  7567. </summary>
  7568. <param name="parameterName">The name of the parameter to fetch</param>
  7569. <returns>A DbParameter object</returns>
  7570. </member>
  7571. <member name="M:System.Data.SQLite.SQLiteParameterCollection.GetParameter(System.Int32)">
  7572. <summary>
  7573. Retrieves a parameter by its index in the collection
  7574. </summary>
  7575. <param name="index">The index of the parameter to retrieve</param>
  7576. <returns>A DbParameter object</returns>
  7577. </member>
  7578. <member name="M:System.Data.SQLite.SQLiteParameterCollection.IndexOf(System.String)">
  7579. <summary>
  7580. Returns the index of a parameter given its name
  7581. </summary>
  7582. <param name="parameterName">The name of the parameter to find</param>
  7583. <returns>-1 if not found, otherwise a zero-based index of the parameter</returns>
  7584. </member>
  7585. <member name="M:System.Data.SQLite.SQLiteParameterCollection.IndexOf(System.Object)">
  7586. <summary>
  7587. Returns the index of a parameter
  7588. </summary>
  7589. <param name="value">The parameter to find</param>
  7590. <returns>-1 if not found, otherwise a zero-based index of the parameter</returns>
  7591. </member>
  7592. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Insert(System.Int32,System.Object)">
  7593. <summary>
  7594. Inserts a parameter into the array at the specified location
  7595. </summary>
  7596. <param name="index">The zero-based index to insert the parameter at</param>
  7597. <param name="value">The parameter to insert</param>
  7598. </member>
  7599. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Remove(System.Object)">
  7600. <summary>
  7601. Removes a parameter from the collection
  7602. </summary>
  7603. <param name="value">The parameter to remove</param>
  7604. </member>
  7605. <member name="M:System.Data.SQLite.SQLiteParameterCollection.RemoveAt(System.String)">
  7606. <summary>
  7607. Removes a parameter from the collection given its name
  7608. </summary>
  7609. <param name="parameterName">The name of the parameter to remove</param>
  7610. </member>
  7611. <member name="M:System.Data.SQLite.SQLiteParameterCollection.RemoveAt(System.Int32)">
  7612. <summary>
  7613. Removes a parameter from the collection given its index
  7614. </summary>
  7615. <param name="index">The zero-based parameter index to remove</param>
  7616. </member>
  7617. <member name="M:System.Data.SQLite.SQLiteParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)">
  7618. <summary>
  7619. Re-assign the named parameter to a new parameter object
  7620. </summary>
  7621. <param name="parameterName">The name of the parameter to replace</param>
  7622. <param name="value">The new parameter</param>
  7623. </member>
  7624. <member name="M:System.Data.SQLite.SQLiteParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)">
  7625. <summary>
  7626. Re-assign a parameter at the specified index
  7627. </summary>
  7628. <param name="index">The zero-based index of the parameter to replace</param>
  7629. <param name="value">The new parameter</param>
  7630. </member>
  7631. <member name="M:System.Data.SQLite.SQLiteParameterCollection.Unbind">
  7632. <summary>
  7633. Un-binds all parameters from their statements
  7634. </summary>
  7635. </member>
  7636. <member name="M:System.Data.SQLite.SQLiteParameterCollection.MapParameters(System.Data.SQLite.SQLiteStatement)">
  7637. <summary>
  7638. This function attempts to map all parameters in the collection to all statements in a Command.
  7639. Since named parameters may span multiple statements, this function makes sure all statements are bound
  7640. to the same named parameter. Unnamed parameters are bound in sequence.
  7641. </summary>
  7642. </member>
  7643. <member name="P:System.Data.SQLite.SQLiteParameterCollection.IsSynchronized">
  7644. <summary>
  7645. Returns false
  7646. </summary>
  7647. </member>
  7648. <member name="P:System.Data.SQLite.SQLiteParameterCollection.IsFixedSize">
  7649. <summary>
  7650. Returns false
  7651. </summary>
  7652. </member>
  7653. <member name="P:System.Data.SQLite.SQLiteParameterCollection.IsReadOnly">
  7654. <summary>
  7655. Returns false
  7656. </summary>
  7657. </member>
  7658. <member name="P:System.Data.SQLite.SQLiteParameterCollection.SyncRoot">
  7659. <summary>
  7660. Returns null
  7661. </summary>
  7662. </member>
  7663. <member name="P:System.Data.SQLite.SQLiteParameterCollection.Count">
  7664. <summary>
  7665. Returns a count of parameters in the collection
  7666. </summary>
  7667. </member>
  7668. <member name="P:System.Data.SQLite.SQLiteParameterCollection.Item(System.String)">
  7669. <summary>
  7670. Overloaded to specialize the return value of the default indexer
  7671. </summary>
  7672. <param name="parameterName">Name of the parameter to get/set</param>
  7673. <returns>The specified named SQLite parameter</returns>
  7674. </member>
  7675. <member name="P:System.Data.SQLite.SQLiteParameterCollection.Item(System.Int32)">
  7676. <summary>
  7677. Overloaded to specialize the return value of the default indexer
  7678. </summary>
  7679. <param name="index">The index of the parameter to get/set</param>
  7680. <returns>The specified SQLite parameter</returns>
  7681. </member>
  7682. <member name="T:System.Data.SQLite.SQLiteStatement">
  7683. <summary>
  7684. Represents a single SQL statement in SQLite.
  7685. </summary>
  7686. </member>
  7687. <member name="F:System.Data.SQLite.SQLiteStatement._sql">
  7688. <summary>
  7689. The underlying SQLite object this statement is bound to
  7690. </summary>
  7691. </member>
  7692. <member name="F:System.Data.SQLite.SQLiteStatement._sqlStatement">
  7693. <summary>
  7694. The command text of this SQL statement
  7695. </summary>
  7696. </member>
  7697. <member name="F:System.Data.SQLite.SQLiteStatement._sqlite_stmt">
  7698. <summary>
  7699. The actual statement pointer
  7700. </summary>
  7701. </member>
  7702. <member name="F:System.Data.SQLite.SQLiteStatement._unnamedParameters">
  7703. <summary>
  7704. An index from which unnamed parameters begin
  7705. </summary>
  7706. </member>
  7707. <member name="F:System.Data.SQLite.SQLiteStatement._paramNames">
  7708. <summary>
  7709. Names of the parameters as SQLite understands them to be
  7710. </summary>
  7711. </member>
  7712. <member name="F:System.Data.SQLite.SQLiteStatement._paramValues">
  7713. <summary>
  7714. Parameters for this statement
  7715. </summary>
  7716. </member>
  7717. <member name="F:System.Data.SQLite.SQLiteStatement._command">
  7718. <summary>
  7719. Command this statement belongs to (if any)
  7720. </summary>
  7721. </member>
  7722. <member name="F:System.Data.SQLite.SQLiteStatement._flags">
  7723. <summary>
  7724. The flags associated with the parent connection object.
  7725. </summary>
  7726. </member>
  7727. <member name="M:System.Data.SQLite.SQLiteStatement.#ctor(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteConnectionFlags,System.Data.SQLite.SQLiteStatementHandle,System.String,System.Data.SQLite.SQLiteStatement)">
  7728. <summary>
  7729. Initializes the statement and attempts to get all information about parameters in the statement
  7730. </summary>
  7731. <param name="sqlbase">The base SQLite object</param>
  7732. <param name="flags">The flags associated with the parent connection object</param>
  7733. <param name="stmt">The statement</param>
  7734. <param name="strCommand">The command text for this statement</param>
  7735. <param name="previous">The previous command in a multi-statement command</param>
  7736. </member>
  7737. <member name="M:System.Data.SQLite.SQLiteStatement.Dispose">
  7738. <summary>
  7739. Disposes and finalizes the statement
  7740. </summary>
  7741. </member>
  7742. <member name="M:System.Data.SQLite.SQLiteStatement.TryGetChanges(System.Int32@,System.Boolean@)">
  7743. <summary>
  7744. If the underlying database connection is open, fetches the number of changed rows
  7745. resulting from the most recent query; otherwise, does nothing.
  7746. </summary>
  7747. <param name="changes">
  7748. The number of changes when true is returned.
  7749. Undefined if false is returned.
  7750. </param>
  7751. <param name="readOnly">
  7752. The read-only flag when true is returned.
  7753. Undefined if false is returned.
  7754. </param>
  7755. <returns>Non-zero if the number of changed rows was fetched.</returns>
  7756. </member>
  7757. <member name="M:System.Data.SQLite.SQLiteStatement.MapParameter(System.String,System.Data.SQLite.SQLiteParameter)">
  7758. <summary>
  7759. Called by SQLiteParameterCollection, this function determines if the specified parameter name belongs to
  7760. this statement, and if so, keeps a reference to the parameter so it can be bound later.
  7761. </summary>
  7762. <param name="s">The parameter name to map</param>
  7763. <param name="p">The parameter to assign it</param>
  7764. </member>
  7765. <member name="M:System.Data.SQLite.SQLiteStatement.BindParameters">
  7766. <summary>
  7767. Bind all parameters, making sure the caller didn't miss any
  7768. </summary>
  7769. </member>
  7770. <member name="M:System.Data.SQLite.SQLiteStatement.BindParameter(System.Int32,System.Data.SQLite.SQLiteParameter)">
  7771. <summary>
  7772. Perform the bind operation for an individual parameter
  7773. </summary>
  7774. <param name="index">The index of the parameter to bind</param>
  7775. <param name="param">The parameter we're binding</param>
  7776. </member>
  7777. <member name="T:System.Data.SQLite.SQLiteTransaction">
  7778. <summary>
  7779. SQLite implementation of DbTransaction.
  7780. </summary>
  7781. </member>
  7782. <member name="F:System.Data.SQLite.SQLiteTransaction._cnn">
  7783. <summary>
  7784. The connection to which this transaction is bound
  7785. </summary>
  7786. </member>
  7787. <member name="M:System.Data.SQLite.SQLiteTransaction.#ctor(System.Data.SQLite.SQLiteConnection,System.Boolean)">
  7788. <summary>
  7789. Constructs the transaction object, binding it to the supplied connection
  7790. </summary>
  7791. <param name="connection">The connection to open a transaction on</param>
  7792. <param name="deferredLock">TRUE to defer the writelock, or FALSE to lock immediately</param>
  7793. </member>
  7794. <member name="M:System.Data.SQLite.SQLiteTransaction.Dispose(System.Boolean)">
  7795. <summary>
  7796. Disposes the transaction. If it is currently active, any changes are rolled back.
  7797. </summary>
  7798. </member>
  7799. <member name="M:System.Data.SQLite.SQLiteTransaction.Commit">
  7800. <summary>
  7801. Commits the current transaction.
  7802. </summary>
  7803. </member>
  7804. <member name="M:System.Data.SQLite.SQLiteTransaction.Rollback">
  7805. <summary>
  7806. Rolls back the active transaction.
  7807. </summary>
  7808. </member>
  7809. <member name="P:System.Data.SQLite.SQLiteTransaction.Connection">
  7810. <summary>
  7811. Returns the underlying connection to which this transaction applies.
  7812. </summary>
  7813. </member>
  7814. <member name="P:System.Data.SQLite.SQLiteTransaction.DbConnection">
  7815. <summary>
  7816. Forwards to the local Connection property
  7817. </summary>
  7818. </member>
  7819. <member name="P:System.Data.SQLite.SQLiteTransaction.IsolationLevel">
  7820. <summary>
  7821. Gets the isolation level of the transaction. SQLite only supports Serializable transactions.
  7822. </summary>
  7823. </member>
  7824. <member name="F:System.Data.SQLite.UnsafeNativeMethods.DllFileExtension">
  7825. <summary>
  7826. The file extension used for dynamic link libraries.
  7827. </summary>
  7828. </member>
  7829. <member name="F:System.Data.SQLite.UnsafeNativeMethods.ConfigFileExtension">
  7830. <summary>
  7831. The file extension used for the XML configuration file.
  7832. </summary>
  7833. </member>
  7834. <member name="F:System.Data.SQLite.UnsafeNativeMethods.XmlConfigFileName">
  7835. <summary>
  7836. This is the name of the XML configuration file specific to the
  7837. System.Data.SQLite assembly.
  7838. </summary>
  7839. </member>
  7840. <member name="F:System.Data.SQLite.UnsafeNativeMethods.staticSyncRoot">
  7841. <summary>
  7842. This lock is used to protect the static _SQLiteNativeModuleFileName,
  7843. _SQLiteNativeModuleHandle, and processorArchitecturePlatforms fields.
  7844. </summary>
  7845. </member>
  7846. <member name="F:System.Data.SQLite.UnsafeNativeMethods.processorArchitecturePlatforms">
  7847. <summary>
  7848. This dictionary stores the mappings between processor architecture
  7849. names and platform names. These mappings are now used for two
  7850. purposes. First, they are used to determine if the assembly code
  7851. base should be used instead of the location, based upon whether one
  7852. or more of the named sub-directories exist within the assembly code
  7853. base. Second, they are used to assist in loading the appropriate
  7854. SQLite interop assembly into the current process.
  7855. </summary>
  7856. </member>
  7857. <member name="M:System.Data.SQLite.UnsafeNativeMethods.#cctor">
  7858. <summary>
  7859. For now, this method simply calls the Initialize method.
  7860. </summary>
  7861. </member>
  7862. <member name="M:System.Data.SQLite.UnsafeNativeMethods.Initialize">
  7863. <summary>
  7864. Attempts to initialize this class by pre-loading the native SQLite
  7865. library for the processor architecture of the current process.
  7866. </summary>
  7867. </member>
  7868. <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetXmlConfigFileName">
  7869. <summary>
  7870. Queries and returns the XML configuration file name for the assembly
  7871. containing the managed System.Data.SQLite components.
  7872. </summary>
  7873. <returns>
  7874. The XML configuration file name -OR- null if it cannot be determined
  7875. or does not exist.
  7876. </returns>
  7877. </member>
  7878. <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetSettingValue(System.String,System.String)">
  7879. <summary>
  7880. Queries and returns the value of the specified setting, using the XML
  7881. configuration file and/or the environment variables for the current
  7882. process and/or the current system, when available.
  7883. </summary>
  7884. <param name="name">
  7885. The name of the setting.
  7886. </param>
  7887. <param name="default">
  7888. The value to be returned if the setting has not been set explicitly
  7889. or cannot be determined.
  7890. </param>
  7891. <returns>
  7892. The value of the setting -OR- the default value specified by
  7893. <paramref name="default" /> if it has not been set explicitly or
  7894. cannot be determined. By default, all references to existing
  7895. environment variables will be expanded to their corresponding values
  7896. within the value to be returned unless either the "No_Expand" or
  7897. "No_Expand_<paramref name="name" />" environment variable is set [to
  7898. anything].
  7899. </returns>
  7900. </member>
  7901. <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetAssemblyDirectory">
  7902. <summary>
  7903. Queries and returns the directory for the assembly currently being
  7904. executed.
  7905. </summary>
  7906. <returns>
  7907. The directory for the assembly currently being executed -OR- null if
  7908. it cannot be determined.
  7909. </returns>
  7910. </member>
  7911. <member name="F:System.Data.SQLite.UnsafeNativeMethods.PROCESSOR_ARCHITECTURE">
  7912. <summary>
  7913. The name of the environment variable containing the processor
  7914. architecture of the current process.
  7915. </summary>
  7916. </member>
  7917. <member name="M:System.Data.SQLite.UnsafeNativeMethods.LoadLibrary(System.String)">
  7918. <summary>
  7919. This is the P/Invoke method that wraps the native Win32 LoadLibrary
  7920. function. See the MSDN documentation for full details on what it
  7921. does.
  7922. </summary>
  7923. <param name="fileName">
  7924. The name of the executable library.
  7925. </param>
  7926. <returns>
  7927. The native module handle upon success -OR- IntPtr.Zero on failure.
  7928. </returns>
  7929. </member>
  7930. <member name="F:System.Data.SQLite.UnsafeNativeMethods._SQLiteNativeModuleFileName">
  7931. <summary>
  7932. The native module file name for the native SQLite library or null.
  7933. </summary>
  7934. </member>
  7935. <member name="F:System.Data.SQLite.UnsafeNativeMethods._SQLiteNativeModuleHandle">
  7936. <summary>
  7937. The native module handle for the native SQLite library or the value
  7938. IntPtr.Zero.
  7939. </summary>
  7940. </member>
  7941. <member name="M:System.Data.SQLite.UnsafeNativeMethods.SearchForDirectory(System.String@,System.String@)">
  7942. <summary>
  7943. Searches for the native SQLite library in the directory containing
  7944. the assembly currently being executed as well as the base directory
  7945. for the current application domain.
  7946. </summary>
  7947. <param name="baseDirectory">
  7948. Upon success, this parameter will be modified to refer to the base
  7949. directory containing the native SQLite library.
  7950. </param>
  7951. <param name="processorArchitecture">
  7952. Upon success, this parameter will be modified to refer to the name
  7953. of the immediate directory (i.e. the offset from the base directory)
  7954. containing the native SQLite library.
  7955. </param>
  7956. <returns>
  7957. Non-zero (success) if the native SQLite library was found; otherwise,
  7958. zero (failure).
  7959. </returns>
  7960. </member>
  7961. <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetBaseDirectory">
  7962. <summary>
  7963. Queries and returns the base directory of the current application
  7964. domain.
  7965. </summary>
  7966. <returns>
  7967. The base directory for the current application domain -OR- null if it
  7968. cannot be determined.
  7969. </returns>
  7970. </member>
  7971. <member name="M:System.Data.SQLite.UnsafeNativeMethods.FixUpDllFileName(System.String)">
  7972. <summary>
  7973. Determines if the dynamic link library file name requires a suffix
  7974. and adds it if necessary.
  7975. </summary>
  7976. <param name="fileName">
  7977. The original dynamic link library file name to inspect.
  7978. </param>
  7979. <returns>
  7980. The dynamic link library file name, possibly modified to include an
  7981. extension.
  7982. </returns>
  7983. </member>
  7984. <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetProcessorArchitecture">
  7985. <summary>
  7986. Queries and returns the processor architecture of the current
  7987. process.
  7988. </summary>
  7989. <returns>
  7990. The processor architecture of the current process -OR- null if it
  7991. cannot be determined.
  7992. </returns>
  7993. </member>
  7994. <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetPlatformName(System.String)">
  7995. <summary>
  7996. Given the processor architecture, returns the name of the platform.
  7997. </summary>
  7998. <param name="processorArchitecture">
  7999. The processor architecture to be translated to a platform name.
  8000. </param>
  8001. <returns>
  8002. The platform name for the specified processor architecture -OR- null
  8003. if it cannot be determined.
  8004. </returns>
  8005. </member>
  8006. <member name="M:System.Data.SQLite.UnsafeNativeMethods.PreLoadSQLiteDll(System.String,System.String,System.String@,System.IntPtr@)">
  8007. <summary>
  8008. Attempts to load the native SQLite library based on the specified
  8009. directory and processor architecture.
  8010. </summary>
  8011. <param name="baseDirectory">
  8012. The base directory to use, null for default (the base directory of
  8013. the current application domain). This directory should contain the
  8014. processor architecture specific sub-directories.
  8015. </param>
  8016. <param name="processorArchitecture">
  8017. The requested processor architecture, null for default (the
  8018. processor architecture of the current process). This caller should
  8019. almost always specify null for this parameter.
  8020. </param>
  8021. <param name="nativeModuleFileName">
  8022. The candidate native module file name to load will be stored here,
  8023. if necessary.
  8024. </param>
  8025. <param name="nativeModuleHandle">
  8026. The native module handle as returned by LoadLibrary will be stored
  8027. here, if necessary. This value will be IntPtr.Zero if the call to
  8028. LoadLibrary fails.
  8029. </param>
  8030. <returns>
  8031. Non-zero if the native module was loaded successfully; otherwise,
  8032. zero.
  8033. </returns>
  8034. </member>
  8035. <member name="T:System.Data.SQLite.SR">
  8036. <summary>
  8037. A strongly-typed resource class, for looking up localized strings, etc.
  8038. </summary>
  8039. </member>
  8040. <member name="P:System.Data.SQLite.SR.ResourceManager">
  8041. <summary>
  8042. Returns the cached ResourceManager instance used by this class.
  8043. </summary>
  8044. </member>
  8045. <member name="P:System.Data.SQLite.SR.Culture">
  8046. <summary>
  8047. Overrides the current thread's CurrentUICulture property for all
  8048. resource lookups using this strongly typed resource class.
  8049. </summary>
  8050. </member>
  8051. <member name="P:System.Data.SQLite.SR.DataTypes">
  8052. <summary>
  8053. Looks up a localized string similar to &lt;?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?&gt;
  8054. &lt;DocumentElement&gt;
  8055. &lt;DataTypes&gt;
  8056. &lt;TypeName&gt;smallint&lt;/TypeName&gt;
  8057. &lt;ProviderDbType&gt;10&lt;/ProviderDbType&gt;
  8058. &lt;ColumnSize&gt;5&lt;/ColumnSize&gt;
  8059. &lt;DataType&gt;System.Int16&lt;/DataType&gt;
  8060. &lt;CreateFormat&gt;smallint&lt;/CreateFormat&gt;
  8061. &lt;IsAutoIncrementable&gt;false&lt;/IsAutoIncrementable&gt;
  8062. &lt;IsCaseSensitive&gt;false&lt;/IsCaseSensitive&gt;
  8063. &lt;IsFixedLength&gt;true&lt;/IsFixedLength&gt;
  8064. &lt;IsFixedPrecisionScale&gt;true&lt;/IsFixedPrecisionScale&gt;
  8065. &lt;IsLong&gt;false&lt;/IsLong&gt;
  8066. &lt;IsNullable&gt;true&lt;/ [rest of string was truncated]&quot;;.
  8067. </summary>
  8068. </member>
  8069. <member name="P:System.Data.SQLite.SR.Keywords">
  8070. <summary>
  8071. Looks up a localized string similar to ALL,ALTER,AND,AS,AUTOINCREMENT,BETWEEN,BY,CASE,CHECK,COLLATE,COMMIT,CONSTRAINT,CREATE,CROSS,DEFAULT,DEFERRABLE,DELETE,DISTINCT,DROP,ELSE,ESCAPE,EXCEPT,FOREIGN,FROM,FULL,GROUP,HAVING,IN,INDEX,INNER,INSERT,INTERSECT,INTO,IS,ISNULL,JOIN,LEFT,LIMIT,NATURAL,NOT,NOTNULL,NULL,ON,OR,ORDER,OUTER,PRIMARY,REFERENCES,RIGHT,ROLLBACK,SELECT,SET,TABLE,THEN,TO,TRANSACTION,UNION,UNIQUE,UPDATE,USING,VALUES,WHEN,WHERE.
  8072. </summary>
  8073. </member>
  8074. <member name="P:System.Data.SQLite.SR.MetaDataCollections">
  8075. <summary>
  8076. Looks up a localized string similar to &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
  8077. &lt;DocumentElement&gt;
  8078. &lt;MetaDataCollections&gt;
  8079. &lt;CollectionName&gt;MetaDataCollections&lt;/CollectionName&gt;
  8080. &lt;NumberOfRestrictions&gt;0&lt;/NumberOfRestrictions&gt;
  8081. &lt;NumberOfIdentifierParts&gt;0&lt;/NumberOfIdentifierParts&gt;
  8082. &lt;/MetaDataCollections&gt;
  8083. &lt;MetaDataCollections&gt;
  8084. &lt;CollectionName&gt;DataSourceInformation&lt;/CollectionName&gt;
  8085. &lt;NumberOfRestrictions&gt;0&lt;/NumberOfRestrictions&gt;
  8086. &lt;NumberOfIdentifierParts&gt;0&lt;/NumberOfIdentifierParts&gt;
  8087. &lt;/MetaDataCollections&gt;
  8088. &lt;MetaDataC [rest of string was truncated]&quot;;.
  8089. </summary>
  8090. </member>
  8091. <member name="T:System.Data.SQLite.SQLiteContext">
  8092. <summary>
  8093. This class represents a context from the SQLite core library that can
  8094. be passed to the sqlite3_result_*() and associated functions.
  8095. </summary>
  8096. </member>
  8097. <member name="T:System.Data.SQLite.ISQLiteNativeHandle">
  8098. <summary>
  8099. This interface represents a native handle provided by the SQLite core
  8100. library.
  8101. </summary>
  8102. </member>
  8103. <member name="P:System.Data.SQLite.ISQLiteNativeHandle.NativeHandle">
  8104. <summary>
  8105. The native handle value.
  8106. </summary>
  8107. </member>
  8108. <member name="F:System.Data.SQLite.SQLiteContext.pContext">
  8109. <summary>
  8110. The native context handle.
  8111. </summary>
  8112. </member>
  8113. <member name="M:System.Data.SQLite.SQLiteContext.#ctor(System.IntPtr)">
  8114. <summary>
  8115. Constructs an instance of this class using the specified native
  8116. context handle.
  8117. </summary>
  8118. <param name="pContext">
  8119. The native context handle to use.
  8120. </param>
  8121. </member>
  8122. <member name="M:System.Data.SQLite.SQLiteContext.SetNull">
  8123. <summary>
  8124. Sets the context result to NULL.
  8125. </summary>
  8126. </member>
  8127. <member name="M:System.Data.SQLite.SQLiteContext.SetDouble(System.Double)">
  8128. <summary>
  8129. Sets the context result to the specified <see cref="T:System.Double"/>
  8130. value.
  8131. </summary>
  8132. <param name="value">
  8133. The <see cref="T:System.Double"/> value to use.
  8134. </param>
  8135. </member>
  8136. <member name="M:System.Data.SQLite.SQLiteContext.SetInt(System.Int32)">
  8137. <summary>
  8138. Sets the context result to the specified <see cref="T:System.Int32"/>
  8139. value.
  8140. </summary>
  8141. <param name="value">
  8142. The <see cref="T:System.Int32"/> value to use.
  8143. </param>
  8144. </member>
  8145. <member name="M:System.Data.SQLite.SQLiteContext.SetInt64(System.Int64)">
  8146. <summary>
  8147. Sets the context result to the specified <see cref="T:System.Int64"/>
  8148. value.
  8149. </summary>
  8150. <param name="value">
  8151. The <see cref="T:System.Int64"/> value to use.
  8152. </param>
  8153. </member>
  8154. <member name="M:System.Data.SQLite.SQLiteContext.SetString(System.String)">
  8155. <summary>
  8156. Sets the context result to the specified <see cref="T:System.String"/>
  8157. value.
  8158. </summary>
  8159. <param name="value">
  8160. The <see cref="T:System.String"/> value to use. This value will be
  8161. converted to the UTF-8 encoding prior to being used.
  8162. </param>
  8163. </member>
  8164. <member name="M:System.Data.SQLite.SQLiteContext.SetError(System.String)">
  8165. <summary>
  8166. Sets the context result to the specified <see cref="T:System.String"/>
  8167. value containing an error message.
  8168. </summary>
  8169. <param name="value">
  8170. The <see cref="T:System.String"/> value containing the error message text.
  8171. This value will be converted to the UTF-8 encoding prior to being
  8172. used.
  8173. </param>
  8174. </member>
  8175. <member name="M:System.Data.SQLite.SQLiteContext.SetErrorCode(System.Data.SQLite.SQLiteErrorCode)">
  8176. <summary>
  8177. Sets the context result to the specified <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>
  8178. value.
  8179. </summary>
  8180. <param name="value">
  8181. The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to use.
  8182. </param>
  8183. </member>
  8184. <member name="M:System.Data.SQLite.SQLiteContext.SetErrorTooBig">
  8185. <summary>
  8186. Sets the context result to contain the error code SQLITE_TOOBIG.
  8187. </summary>
  8188. </member>
  8189. <member name="M:System.Data.SQLite.SQLiteContext.SetErrorNoMemory">
  8190. <summary>
  8191. Sets the context result to contain the error code SQLITE_NOMEM.
  8192. </summary>
  8193. </member>
  8194. <member name="M:System.Data.SQLite.SQLiteContext.SetBlob(System.Byte[])">
  8195. <summary>
  8196. Sets the context result to the specified <see cref="T:System.Byte"/> array
  8197. value.
  8198. </summary>
  8199. <param name="value">
  8200. The <see cref="T:System.Byte"/> array value to use.
  8201. </param>
  8202. </member>
  8203. <member name="M:System.Data.SQLite.SQLiteContext.SetZeroBlob(System.Int32)">
  8204. <summary>
  8205. Sets the context result to a BLOB of zeros of the specified size.
  8206. </summary>
  8207. <param name="value">
  8208. The number of zero bytes to use for the BLOB context result.
  8209. </param>
  8210. </member>
  8211. <member name="M:System.Data.SQLite.SQLiteContext.SetValue(System.Data.SQLite.SQLiteValue)">
  8212. <summary>
  8213. Sets the context result to the specified <see cref="T:System.Data.SQLite.SQLiteValue"/>.
  8214. </summary>
  8215. <param name="value">
  8216. The <see cref="T:System.Data.SQLite.SQLiteValue"/> to use.
  8217. </param>
  8218. </member>
  8219. <member name="P:System.Data.SQLite.SQLiteContext.NativeHandle">
  8220. <summary>
  8221. Returns the underlying SQLite native handle associated with this
  8222. object instance.
  8223. </summary>
  8224. </member>
  8225. <member name="T:System.Data.SQLite.SQLiteValue">
  8226. <summary>
  8227. This class represents a value from the SQLite core library that can be
  8228. passed to the sqlite3_value_*() and associated functions.
  8229. </summary>
  8230. </member>
  8231. <member name="F:System.Data.SQLite.SQLiteValue.pValue">
  8232. <summary>
  8233. The native value handle.
  8234. </summary>
  8235. </member>
  8236. <member name="M:System.Data.SQLite.SQLiteValue.#ctor(System.IntPtr)">
  8237. <summary>
  8238. Constructs an instance of this class using the specified native
  8239. value handle.
  8240. </summary>
  8241. <param name="pValue">
  8242. The native value handle to use.
  8243. </param>
  8244. </member>
  8245. <member name="M:System.Data.SQLite.SQLiteValue.PreventNativeAccess">
  8246. <summary>
  8247. Invalidates the native value handle, thereby preventing further
  8248. access to it from this object instance.
  8249. </summary>
  8250. </member>
  8251. <member name="M:System.Data.SQLite.SQLiteValue.ArrayFromSizeAndIntPtr(System.Int32,System.IntPtr)">
  8252. <summary>
  8253. Converts a logical array of native pointers to native sqlite3_value
  8254. structures into a managed array of <see cref="T:System.Data.SQLite.SQLiteValue"/>
  8255. object instances.
  8256. </summary>
  8257. <param name="argc">
  8258. The number of elements in the logical array of native sqlite3_value
  8259. structures.
  8260. </param>
  8261. <param name="argv">
  8262. The native pointer to the logical array of native sqlite3_value
  8263. structures to convert.
  8264. </param>
  8265. <returns>
  8266. The managed array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances or
  8267. null upon failure.
  8268. </returns>
  8269. </member>
  8270. <member name="M:System.Data.SQLite.SQLiteValue.GetTypeAffinity">
  8271. <summary>
  8272. Gets and returns the type affinity associated with this value.
  8273. </summary>
  8274. <returns>
  8275. The type affinity associated with this value.
  8276. </returns>
  8277. </member>
  8278. <member name="M:System.Data.SQLite.SQLiteValue.GetBytes">
  8279. <summary>
  8280. Gets and returns the number of bytes associated with this value, if
  8281. it refers to a UTF-8 encoded string.
  8282. </summary>
  8283. <returns>
  8284. The number of bytes associated with this value. The returned value
  8285. may be zero.
  8286. </returns>
  8287. </member>
  8288. <member name="M:System.Data.SQLite.SQLiteValue.GetInt">
  8289. <summary>
  8290. Gets and returns the <see cref="T:System.Int32"/> associated with this
  8291. value.
  8292. </summary>
  8293. <returns>
  8294. The <see cref="T:System.Int32"/> associated with this value.
  8295. </returns>
  8296. </member>
  8297. <member name="M:System.Data.SQLite.SQLiteValue.GetInt64">
  8298. <summary>
  8299. Gets and returns the <see cref="T:System.Int64"/> associated with
  8300. this value.
  8301. </summary>
  8302. <returns>
  8303. The <see cref="T:System.Int64"/> associated with this value.
  8304. </returns>
  8305. </member>
  8306. <member name="M:System.Data.SQLite.SQLiteValue.GetDouble">
  8307. <summary>
  8308. Gets and returns the <see cref="T:System.Double"/> associated with this
  8309. value.
  8310. </summary>
  8311. <returns>
  8312. The <see cref="T:System.Double"/> associated with this value.
  8313. </returns>
  8314. </member>
  8315. <member name="M:System.Data.SQLite.SQLiteValue.GetString">
  8316. <summary>
  8317. Gets and returns the <see cref="T:System.String"/> associated with this
  8318. value.
  8319. </summary>
  8320. <returns>
  8321. The <see cref="T:System.String"/> associated with this value. The value is
  8322. converted from the UTF-8 encoding prior to being returned.
  8323. </returns>
  8324. </member>
  8325. <member name="M:System.Data.SQLite.SQLiteValue.GetBlob">
  8326. <summary>
  8327. Gets and returns the <see cref="T:System.Byte"/> array associated with this
  8328. value.
  8329. </summary>
  8330. <returns>
  8331. The <see cref="T:System.Byte"/> array associated with this value.
  8332. </returns>
  8333. </member>
  8334. <member name="M:System.Data.SQLite.SQLiteValue.Persist">
  8335. <summary>
  8336. Uses the native value handle to obtain and store the managed value
  8337. for this object instance, thus saving it for later use. The type
  8338. of the managed value is determined by the type affinity of the
  8339. native value. If the type affinity is not recognized by this
  8340. method, no work is done and false is returned.
  8341. </summary>
  8342. <returns>
  8343. Non-zero if the native value was persisted successfully.
  8344. </returns>
  8345. </member>
  8346. <member name="P:System.Data.SQLite.SQLiteValue.NativeHandle">
  8347. <summary>
  8348. Returns the underlying SQLite native handle associated with this
  8349. object instance.
  8350. </summary>
  8351. </member>
  8352. <member name="P:System.Data.SQLite.SQLiteValue.Persisted">
  8353. <summary>
  8354. Returns non-zero if the native SQLite value has been successfully
  8355. persisted as a managed value within this object instance (i.e. the
  8356. <see cref="P:System.Data.SQLite.SQLiteValue.Value"/> property may then be read successfully).
  8357. </summary>
  8358. </member>
  8359. <member name="P:System.Data.SQLite.SQLiteValue.Value">
  8360. <summary>
  8361. If the managed value for this object instance is available (i.e. it
  8362. has been previously persisted via the <see cref="M:System.Data.SQLite.SQLiteValue.Persist"/>) method,
  8363. that value is returned; otherwise, an exception is thrown. The
  8364. returned value may be null.
  8365. </summary>
  8366. </member>
  8367. <member name="T:System.Data.SQLite.SQLiteIndexConstraintOp">
  8368. <summary>
  8369. These are the allowed values for the operators that are part of a
  8370. constraint term in the WHERE clause of a query that uses a virtual
  8371. table.
  8372. </summary>
  8373. </member>
  8374. <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.EqualTo">
  8375. <summary>
  8376. This value represents the equality operator.
  8377. </summary>
  8378. </member>
  8379. <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.GreaterThan">
  8380. <summary>
  8381. This value represents the greater than operator.
  8382. </summary>
  8383. </member>
  8384. <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.LessThanOrEqualTo">
  8385. <summary>
  8386. This value represents the less than or equal to operator.
  8387. </summary>
  8388. </member>
  8389. <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.LessThan">
  8390. <summary>
  8391. This value represents the less than operator.
  8392. </summary>
  8393. </member>
  8394. <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.GreaterThanOrEqualTo">
  8395. <summary>
  8396. This value represents the greater than or equal to operator.
  8397. </summary>
  8398. </member>
  8399. <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.Match">
  8400. <summary>
  8401. This value represents the MATCH operator.
  8402. </summary>
  8403. </member>
  8404. <member name="T:System.Data.SQLite.SQLiteIndexConstraint">
  8405. <summary>
  8406. This class represents the native sqlite3_index_constraint structure
  8407. from the SQLite core library.
  8408. </summary>
  8409. </member>
  8410. <member name="M:System.Data.SQLite.SQLiteIndexConstraint.#ctor(System.Data.SQLite.UnsafeNativeMethods.sqlite3_index_constraint)">
  8411. <summary>
  8412. Constructs an instance of this class using the specified native
  8413. sqlite3_index_constraint structure.
  8414. </summary>
  8415. <param name="constraint">
  8416. The native sqlite3_index_constraint structure to use.
  8417. </param>
  8418. </member>
  8419. <member name="M:System.Data.SQLite.SQLiteIndexConstraint.#ctor(System.Int32,System.Data.SQLite.SQLiteIndexConstraintOp,System.Byte,System.Int32)">
  8420. <summary>
  8421. Constructs an instance of this class using the specified field
  8422. values.
  8423. </summary>
  8424. <param name="iColumn">
  8425. Column on left-hand side of constraint.
  8426. </param>
  8427. <param name="op">
  8428. Constraint operator (<see cref="T:System.Data.SQLite.SQLiteIndexConstraintOp"/>).
  8429. </param>
  8430. <param name="usable">
  8431. True if this constraint is usable.
  8432. </param>
  8433. <param name="iTermOffset">
  8434. Used internally - <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8435. should ignore.
  8436. </param>
  8437. </member>
  8438. <member name="F:System.Data.SQLite.SQLiteIndexConstraint.iColumn">
  8439. <summary>
  8440. Column on left-hand side of constraint.
  8441. </summary>
  8442. </member>
  8443. <member name="F:System.Data.SQLite.SQLiteIndexConstraint.op">
  8444. <summary>
  8445. Constraint operator (<see cref="T:System.Data.SQLite.SQLiteIndexConstraintOp"/>).
  8446. </summary>
  8447. </member>
  8448. <member name="F:System.Data.SQLite.SQLiteIndexConstraint.usable">
  8449. <summary>
  8450. True if this constraint is usable.
  8451. </summary>
  8452. </member>
  8453. <member name="F:System.Data.SQLite.SQLiteIndexConstraint.iTermOffset">
  8454. <summary>
  8455. Used internally - <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8456. should ignore.
  8457. </summary>
  8458. </member>
  8459. <member name="T:System.Data.SQLite.SQLiteIndexOrderBy">
  8460. <summary>
  8461. This class represents the native sqlite3_index_orderby structure from
  8462. the SQLite core library.
  8463. </summary>
  8464. </member>
  8465. <member name="M:System.Data.SQLite.SQLiteIndexOrderBy.#ctor(System.Data.SQLite.UnsafeNativeMethods.sqlite3_index_orderby)">
  8466. <summary>
  8467. Constructs an instance of this class using the specified native
  8468. sqlite3_index_orderby structure.
  8469. </summary>
  8470. <param name="orderBy">
  8471. The native sqlite3_index_orderby structure to use.
  8472. </param>
  8473. </member>
  8474. <member name="M:System.Data.SQLite.SQLiteIndexOrderBy.#ctor(System.Int32,System.Byte)">
  8475. <summary>
  8476. Constructs an instance of this class using the specified field
  8477. values.
  8478. </summary>
  8479. <param name="iColumn">
  8480. Column number.
  8481. </param>
  8482. <param name="desc">
  8483. True for DESC. False for ASC.
  8484. </param>
  8485. </member>
  8486. <member name="F:System.Data.SQLite.SQLiteIndexOrderBy.iColumn">
  8487. <summary>
  8488. Column number.
  8489. </summary>
  8490. </member>
  8491. <member name="F:System.Data.SQLite.SQLiteIndexOrderBy.desc">
  8492. <summary>
  8493. True for DESC. False for ASC.
  8494. </summary>
  8495. </member>
  8496. <member name="T:System.Data.SQLite.SQLiteIndexConstraintUsage">
  8497. <summary>
  8498. This class represents the native sqlite3_index_constraint_usage
  8499. structure from the SQLite core library.
  8500. </summary>
  8501. </member>
  8502. <member name="M:System.Data.SQLite.SQLiteIndexConstraintUsage.#ctor">
  8503. <summary>
  8504. Constructs a default instance of this class.
  8505. </summary>
  8506. </member>
  8507. <member name="M:System.Data.SQLite.SQLiteIndexConstraintUsage.#ctor(System.Data.SQLite.UnsafeNativeMethods.sqlite3_index_constraint_usage)">
  8508. <summary>
  8509. Constructs an instance of this class using the specified native
  8510. sqlite3_index_constraint_usage structure.
  8511. </summary>
  8512. <param name="constraintUsage">
  8513. The native sqlite3_index_constraint_usage structure to use.
  8514. </param>
  8515. </member>
  8516. <member name="M:System.Data.SQLite.SQLiteIndexConstraintUsage.#ctor(System.Int32,System.Byte)">
  8517. <summary>
  8518. Constructs an instance of this class using the specified field
  8519. values.
  8520. </summary>
  8521. <param name="argvIndex">
  8522. If greater than 0, constraint is part of argv to xFilter.
  8523. </param>
  8524. <param name="omit">
  8525. Do not code a test for this constraint.
  8526. </param>
  8527. </member>
  8528. <member name="F:System.Data.SQLite.SQLiteIndexConstraintUsage.argvIndex">
  8529. <summary>
  8530. If greater than 0, constraint is part of argv to xFilter.
  8531. </summary>
  8532. </member>
  8533. <member name="F:System.Data.SQLite.SQLiteIndexConstraintUsage.omit">
  8534. <summary>
  8535. Do not code a test for this constraint.
  8536. </summary>
  8537. </member>
  8538. <member name="T:System.Data.SQLite.SQLiteIndexInputs">
  8539. <summary>
  8540. This class represents the various inputs provided by the SQLite core
  8541. library to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  8542. </summary>
  8543. </member>
  8544. <member name="M:System.Data.SQLite.SQLiteIndexInputs.#ctor(System.Int32,System.Int32)">
  8545. <summary>
  8546. Constructs an instance of this class.
  8547. </summary>
  8548. <param name="nConstraint">
  8549. The number of <see cref="T:System.Data.SQLite.SQLiteIndexConstraint"/> instances to
  8550. pre-allocate space for.
  8551. </param>
  8552. <param name="nOrderBy">
  8553. The number of <see cref="T:System.Data.SQLite.SQLiteIndexOrderBy"/> instances to
  8554. pre-allocate space for.
  8555. </param>
  8556. </member>
  8557. <member name="P:System.Data.SQLite.SQLiteIndexInputs.Constraints">
  8558. <summary>
  8559. An array of <see cref="T:System.Data.SQLite.SQLiteIndexConstraint"/> object instances,
  8560. each containing information supplied by the SQLite core library.
  8561. </summary>
  8562. </member>
  8563. <member name="P:System.Data.SQLite.SQLiteIndexInputs.OrderBys">
  8564. <summary>
  8565. An array of <see cref="T:System.Data.SQLite.SQLiteIndexOrderBy"/> object instances,
  8566. each containing information supplied by the SQLite core library.
  8567. </summary>
  8568. </member>
  8569. <member name="T:System.Data.SQLite.SQLiteIndexOutputs">
  8570. <summary>
  8571. This class represents the various outputs provided to the SQLite core
  8572. library by the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  8573. </summary>
  8574. </member>
  8575. <member name="M:System.Data.SQLite.SQLiteIndexOutputs.#ctor(System.Int32)">
  8576. <summary>
  8577. Constructs an instance of this class.
  8578. </summary>
  8579. <param name="nConstraint">
  8580. The number of <see cref="T:System.Data.SQLite.SQLiteIndexConstraintUsage"/> instances
  8581. to pre-allocate space for.
  8582. </param>
  8583. </member>
  8584. <member name="M:System.Data.SQLite.SQLiteIndexOutputs.CanUseEstimatedRows">
  8585. <summary>
  8586. Determines if the native estimatedRows field can be used, based on
  8587. the available version of the SQLite core library.
  8588. </summary>
  8589. <returns>
  8590. Non-zero if the <see cref="P:System.Data.SQLite.SQLiteIndexOutputs.EstimatedRows"/> property is supported
  8591. by the SQLite core library.
  8592. </returns>
  8593. </member>
  8594. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.ConstraintUsages">
  8595. <summary>
  8596. An array of <see cref="T:System.Data.SQLite.SQLiteIndexConstraintUsage"/> object
  8597. instances, each containing information to be supplied to the SQLite
  8598. core library.
  8599. </summary>
  8600. </member>
  8601. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.IndexNumber">
  8602. <summary>
  8603. Number used to help identify the selected index. This value will
  8604. later be provided to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/>
  8605. method.
  8606. </summary>
  8607. </member>
  8608. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.IndexString">
  8609. <summary>
  8610. String used to help identify the selected index. This value will
  8611. later be provided to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/>
  8612. method.
  8613. </summary>
  8614. </member>
  8615. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.NeedToFreeIndexString">
  8616. <summary>
  8617. Non-zero if the index string must be freed by the SQLite core
  8618. library.
  8619. </summary>
  8620. </member>
  8621. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.OrderByConsumed">
  8622. <summary>
  8623. True if output is already ordered.
  8624. </summary>
  8625. </member>
  8626. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.EstimatedCost">
  8627. <summary>
  8628. Estimated cost of using this index. Using a null value here
  8629. indicates that a default estimated cost value should be used.
  8630. </summary>
  8631. </member>
  8632. <member name="P:System.Data.SQLite.SQLiteIndexOutputs.EstimatedRows">
  8633. <summary>
  8634. Estimated number of rows returned. Using a null value here
  8635. indicates that a default estimated rows value should be used.
  8636. </summary>
  8637. </member>
  8638. <member name="T:System.Data.SQLite.SQLiteIndex">
  8639. <summary>
  8640. This class represents the various inputs and outputs used with the
  8641. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  8642. </summary>
  8643. </member>
  8644. <member name="M:System.Data.SQLite.SQLiteIndex.#ctor(System.Int32,System.Int32)">
  8645. <summary>
  8646. Constructs an instance of this class.
  8647. </summary>
  8648. <param name="nConstraint">
  8649. The number of <see cref="T:System.Data.SQLite.SQLiteIndexConstraint"/> (and
  8650. <see cref="T:System.Data.SQLite.SQLiteIndexConstraintUsage"/>) instances to
  8651. pre-allocate space for.
  8652. </param>
  8653. <param name="nOrderBy">
  8654. The number of <see cref="T:System.Data.SQLite.SQLiteIndexOrderBy"/> instances to
  8655. pre-allocate space for.
  8656. </param>
  8657. </member>
  8658. <member name="M:System.Data.SQLite.SQLiteIndex.FromIntPtr(System.IntPtr,System.Data.SQLite.SQLiteIndex@)">
  8659. <summary>
  8660. Converts a native pointer to a native sqlite3_index_info structure
  8661. into a new <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance.
  8662. </summary>
  8663. <param name="pIndex">
  8664. The native pointer to the native sqlite3_index_info structure to
  8665. convert.
  8666. </param>
  8667. <param name="index">
  8668. Upon success, this parameter will be modified to contain the newly
  8669. created <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance.
  8670. </param>
  8671. </member>
  8672. <member name="M:System.Data.SQLite.SQLiteIndex.ToIntPtr(System.Data.SQLite.SQLiteIndex,System.IntPtr)">
  8673. <summary>
  8674. Populates the outputs of a pre-allocated native sqlite3_index_info
  8675. structure using an existing <see cref="T:System.Data.SQLite.SQLiteIndex"/> object
  8676. instance.
  8677. </summary>
  8678. <param name="index">
  8679. The existing <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing
  8680. the output data to use.
  8681. </param>
  8682. <param name="pIndex">
  8683. The native pointer to the pre-allocated native sqlite3_index_info
  8684. structure.
  8685. </param>
  8686. </member>
  8687. <member name="P:System.Data.SQLite.SQLiteIndex.Inputs">
  8688. <summary>
  8689. The <see cref="T:System.Data.SQLite.SQLiteIndexInputs"/> object instance containing
  8690. the inputs to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8691. method.
  8692. </summary>
  8693. </member>
  8694. <member name="P:System.Data.SQLite.SQLiteIndex.Outputs">
  8695. <summary>
  8696. The <see cref="T:System.Data.SQLite.SQLiteIndexOutputs"/> object instance containing
  8697. the outputs from the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8698. method.
  8699. </summary>
  8700. </member>
  8701. <member name="T:System.Data.SQLite.SQLiteVirtualTable">
  8702. <summary>
  8703. This class represents a managed virtual table implementation. It is
  8704. not sealed and should be used as the base class for any user-defined
  8705. virtual table classes implemented in managed code.
  8706. </summary>
  8707. </member>
  8708. <member name="F:System.Data.SQLite.SQLiteVirtualTable.ModuleNameIndex">
  8709. <summary>
  8710. The index within the array of strings provided to the
  8711. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8712. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods containing the
  8713. name of the module implementing this virtual table.
  8714. </summary>
  8715. </member>
  8716. <member name="F:System.Data.SQLite.SQLiteVirtualTable.DatabaseNameIndex">
  8717. <summary>
  8718. The index within the array of strings provided to the
  8719. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8720. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods containing the
  8721. name of the database containing this virtual table.
  8722. </summary>
  8723. </member>
  8724. <member name="F:System.Data.SQLite.SQLiteVirtualTable.TableNameIndex">
  8725. <summary>
  8726. The index within the array of strings provided to the
  8727. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8728. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods containing the
  8729. name of the virtual table.
  8730. </summary>
  8731. </member>
  8732. <member name="M:System.Data.SQLite.SQLiteVirtualTable.#ctor(System.String[])">
  8733. <summary>
  8734. Constructs an instance of this class.
  8735. </summary>
  8736. <param name="arguments">
  8737. The original array of strings provided to the
  8738. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8739. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods.
  8740. </param>
  8741. </member>
  8742. <member name="M:System.Data.SQLite.SQLiteVirtualTable.BestIndex(System.Data.SQLite.SQLiteIndex)">
  8743. <summary>
  8744. This method should normally be used by the
  8745. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method in order to
  8746. perform index selection based on the constraints provided by the
  8747. SQLite core library.
  8748. </summary>
  8749. <param name="index">
  8750. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  8751. data for the inputs and outputs relating to index selection.
  8752. </param>
  8753. <returns>
  8754. Non-zero upon success.
  8755. </returns>
  8756. </member>
  8757. <member name="M:System.Data.SQLite.SQLiteVirtualTable.Rename(System.String)">
  8758. <summary>
  8759. Attempts to record the renaming of the virtual table associated
  8760. with this object instance.
  8761. </summary>
  8762. <param name="name">
  8763. The new name for the virtual table.
  8764. </param>
  8765. <returns>
  8766. Non-zero upon success.
  8767. </returns>
  8768. </member>
  8769. <member name="M:System.Data.SQLite.SQLiteVirtualTable.Dispose">
  8770. <summary>
  8771. Disposes of this object instance.
  8772. </summary>
  8773. </member>
  8774. <member name="M:System.Data.SQLite.SQLiteVirtualTable.CheckDisposed">
  8775. <summary>
  8776. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  8777. instance has been disposed.
  8778. </summary>
  8779. </member>
  8780. <member name="M:System.Data.SQLite.SQLiteVirtualTable.Dispose(System.Boolean)">
  8781. <summary>
  8782. Disposes of this object instance.
  8783. </summary>
  8784. <param name="disposing">
  8785. Non-zero if this method is being called from the
  8786. <see cref="M:System.Data.SQLite.SQLiteVirtualTable.Dispose"/> method. Zero if this method is being called
  8787. from the finalizer.
  8788. </param>
  8789. </member>
  8790. <member name="M:System.Data.SQLite.SQLiteVirtualTable.Finalize">
  8791. <summary>
  8792. Finalizes this object instance.
  8793. </summary>
  8794. </member>
  8795. <member name="P:System.Data.SQLite.SQLiteVirtualTable.Arguments">
  8796. <summary>
  8797. The original array of strings provided to the
  8798. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8799. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods.
  8800. </summary>
  8801. </member>
  8802. <member name="P:System.Data.SQLite.SQLiteVirtualTable.ModuleName">
  8803. <summary>
  8804. The name of the module implementing this virtual table.
  8805. </summary>
  8806. </member>
  8807. <member name="P:System.Data.SQLite.SQLiteVirtualTable.DatabaseName">
  8808. <summary>
  8809. The name of the database containing this virtual table.
  8810. </summary>
  8811. </member>
  8812. <member name="P:System.Data.SQLite.SQLiteVirtualTable.TableName">
  8813. <summary>
  8814. The name of the virtual table.
  8815. </summary>
  8816. </member>
  8817. <member name="P:System.Data.SQLite.SQLiteVirtualTable.Index">
  8818. <summary>
  8819. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  8820. data for the inputs and outputs relating to the most recent index
  8821. selection.
  8822. </summary>
  8823. </member>
  8824. <member name="P:System.Data.SQLite.SQLiteVirtualTable.NativeHandle">
  8825. <summary>
  8826. Returns the underlying SQLite native handle associated with this
  8827. object instance.
  8828. </summary>
  8829. </member>
  8830. <member name="T:System.Data.SQLite.SQLiteVirtualTableCursor">
  8831. <summary>
  8832. This class represents a managed virtual table cursor implementation.
  8833. It is not sealed and should be used as the base class for any
  8834. user-defined virtual table cursor classes implemented in managed code.
  8835. </summary>
  8836. </member>
  8837. <member name="F:System.Data.SQLite.SQLiteVirtualTableCursor.InvalidRowIndex">
  8838. <summary>
  8839. This value represents an invalid integer row sequence number.
  8840. </summary>
  8841. </member>
  8842. <member name="F:System.Data.SQLite.SQLiteVirtualTableCursor.rowIndex">
  8843. <summary>
  8844. The field holds the integer row sequence number for the current row
  8845. pointed to by this cursor object instance.
  8846. </summary>
  8847. </member>
  8848. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.#ctor(System.Data.SQLite.SQLiteVirtualTable)">
  8849. <summary>
  8850. Constructs an instance of this class.
  8851. </summary>
  8852. <param name="table">
  8853. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  8854. with this object instance.
  8855. </param>
  8856. </member>
  8857. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.#ctor">
  8858. <summary>
  8859. Constructs an instance of this class.
  8860. </summary>
  8861. </member>
  8862. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.TryPersistValues(System.Data.SQLite.SQLiteValue[])">
  8863. <summary>
  8864. Attempts to persist the specified <see cref="T:System.Data.SQLite.SQLiteValue"/> object
  8865. instances in order to make them available after the
  8866. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method returns.
  8867. </summary>
  8868. <param name="values">
  8869. The array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances to be
  8870. persisted.
  8871. </param>
  8872. <returns>
  8873. The number of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances that were
  8874. successfully persisted.
  8875. </returns>
  8876. </member>
  8877. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  8878. <summary>
  8879. This method should normally be used by the
  8880. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method in order to
  8881. perform filtering of the result rows and/or to record the filtering
  8882. criteria provided by the SQLite core library.
  8883. </summary>
  8884. <param name="indexNumber">
  8885. Number used to help identify the selected index.
  8886. </param>
  8887. <param name="indexString">
  8888. String used to help identify the selected index.
  8889. </param>
  8890. <param name="values">
  8891. The values corresponding to each column in the selected index.
  8892. </param>
  8893. </member>
  8894. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.GetRowIndex">
  8895. <summary>
  8896. Determines the integer row sequence number for the current row.
  8897. </summary>
  8898. <returns>
  8899. The integer row sequence number for the current row -OR- zero if
  8900. it cannot be determined.
  8901. </returns>
  8902. </member>
  8903. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.NextRowIndex">
  8904. <summary>
  8905. Adjusts the integer row sequence number so that it refers to the
  8906. next row.
  8907. </summary>
  8908. </member>
  8909. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Dispose">
  8910. <summary>
  8911. Disposes of this object instance.
  8912. </summary>
  8913. </member>
  8914. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.CheckDisposed">
  8915. <summary>
  8916. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  8917. instance has been disposed.
  8918. </summary>
  8919. </member>
  8920. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Dispose(System.Boolean)">
  8921. <summary>
  8922. Disposes of this object instance.
  8923. </summary>
  8924. <param name="disposing">
  8925. Non-zero if this method is being called from the
  8926. <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Dispose"/> method. Zero if this method is being called
  8927. from the finalizer.
  8928. </param>
  8929. </member>
  8930. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Finalize">
  8931. <summary>
  8932. Finalizes this object instance.
  8933. </summary>
  8934. </member>
  8935. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.Table">
  8936. <summary>
  8937. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  8938. with this object instance.
  8939. </summary>
  8940. </member>
  8941. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.IndexNumber">
  8942. <summary>
  8943. Number used to help identify the selected index. This value will
  8944. be set via the <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  8945. </summary>
  8946. </member>
  8947. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.IndexString">
  8948. <summary>
  8949. String used to help identify the selected index. This value will
  8950. be set via the <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  8951. </summary>
  8952. </member>
  8953. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.Values">
  8954. <summary>
  8955. The values used to filter the rows returned via this cursor object
  8956. instance. This value will be set via the <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/>
  8957. method.
  8958. </summary>
  8959. </member>
  8960. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.NativeHandle">
  8961. <summary>
  8962. Returns the underlying SQLite native handle associated with this
  8963. object instance.
  8964. </summary>
  8965. </member>
  8966. <member name="T:System.Data.SQLite.ISQLiteNativeModule">
  8967. <summary>
  8968. This interface represents a virtual table implementation written in
  8969. native code.
  8970. </summary>
  8971. </member>
  8972. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  8973. <summary>
  8974. <para>
  8975. This method is called to create a new instance of a virtual table
  8976. in response to a CREATE VIRTUAL TABLE statement. The db parameter
  8977. is a pointer to the SQLite database connection that is executing
  8978. the CREATE VIRTUAL TABLE statement. The pAux argument is the copy
  8979. of the client data pointer that was the fourth argument to the
  8980. sqlite3_create_module() or sqlite3_create_module_v2() call that
  8981. registered the virtual table module. The argv parameter is an
  8982. array of argc pointers to null terminated strings. The first
  8983. string, argv[0], is the name of the module being invoked. The
  8984. module name is the name provided as the second argument to
  8985. sqlite3_create_module() and as the argument to the USING clause of
  8986. the CREATE VIRTUAL TABLE statement that is running. The second,
  8987. argv[1], is the name of the database in which the new virtual table
  8988. is being created. The database name is "main" for the primary
  8989. database, or "temp" for TEMP database, or the name given at the
  8990. end of the ATTACH statement for attached databases. The third
  8991. element of the array, argv[2], is the name of the new virtual
  8992. table, as specified following the TABLE keyword in the CREATE
  8993. VIRTUAL TABLE statement. If present, the fourth and subsequent
  8994. strings in the argv[] array report the arguments to the module name
  8995. in the CREATE VIRTUAL TABLE statement.
  8996. </para>
  8997. <para>
  8998. The job of this method is to construct the new virtual table object
  8999. (an sqlite3_vtab object) and return a pointer to it in *ppVTab.
  9000. </para>
  9001. <para>
  9002. As part of the task of creating a new sqlite3_vtab structure, this
  9003. method must invoke sqlite3_declare_vtab() to tell the SQLite core
  9004. about the columns and datatypes in the virtual table. The
  9005. sqlite3_declare_vtab() API has the following prototype:
  9006. </para>
  9007. <para>
  9008. <code>
  9009. int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable)
  9010. </code>
  9011. </para>
  9012. <para>
  9013. The first argument to sqlite3_declare_vtab() must be the same
  9014. database connection pointer as the first parameter to this method.
  9015. The second argument to sqlite3_declare_vtab() must a
  9016. zero-terminated UTF-8 string that contains a well-formed CREATE
  9017. TABLE statement that defines the columns in the virtual table and
  9018. their data types. The name of the table in this CREATE TABLE
  9019. statement is ignored, as are all constraints. Only the column names
  9020. and datatypes matter. The CREATE TABLE statement string need not to
  9021. be held in persistent memory. The string can be deallocated and/or
  9022. reused as soon as the sqlite3_declare_vtab() routine returns.
  9023. </para>
  9024. </summary>
  9025. <param name="pDb">
  9026. The native database connection handle.
  9027. </param>
  9028. <param name="pAux">
  9029. The original native pointer value that was provided to the
  9030. sqlite3_create_module(), sqlite3_create_module_v2() or
  9031. sqlite3_create_disposable_module() functions.
  9032. </param>
  9033. <param name="argc">
  9034. The number of arguments from the CREATE VIRTUAL TABLE statement.
  9035. </param>
  9036. <param name="argv">
  9037. The array of string arguments from the CREATE VIRTUAL TABLE
  9038. statement.
  9039. </param>
  9040. <param name="pVtab">
  9041. Upon success, this parameter must be modified to point to the newly
  9042. created native sqlite3_vtab derived structure.
  9043. </param>
  9044. <param name="pError">
  9045. Upon failure, this parameter must be modified to point to the error
  9046. message, with the underlying memory having been obtained from the
  9047. sqlite3_malloc() function.
  9048. </param>
  9049. <returns>
  9050. A standard SQLite return code.
  9051. </returns>
  9052. </member>
  9053. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  9054. <summary>
  9055. <para>
  9056. The xConnect method is very similar to xCreate. It has the same
  9057. parameters and constructs a new sqlite3_vtab structure just like
  9058. xCreate. And it must also call sqlite3_declare_vtab() like xCreate.
  9059. </para>
  9060. <para>
  9061. The difference is that xConnect is called to establish a new
  9062. connection to an existing virtual table whereas xCreate is called
  9063. to create a new virtual table from scratch.
  9064. </para>
  9065. <para>
  9066. The xCreate and xConnect methods are only different when the
  9067. virtual table has some kind of backing store that must be
  9068. initialized the first time the virtual table is created. The
  9069. xCreate method creates and initializes the backing store. The
  9070. xConnect method just connects to an existing backing store.
  9071. </para>
  9072. <para>
  9073. As an example, consider a virtual table implementation that
  9074. provides read-only access to existing comma-separated-value (CSV)
  9075. files on disk. There is no backing store that needs to be created
  9076. or initialized for such a virtual table (since the CSV files
  9077. already exist on disk) so the xCreate and xConnect methods will be
  9078. identical for that module.
  9079. </para>
  9080. <para>
  9081. Another example is a virtual table that implements a full-text
  9082. index. The xCreate method must create and initialize data
  9083. structures to hold the dictionary and posting lists for that index.
  9084. The xConnect method, on the other hand, only has to locate and use
  9085. an existing dictionary and posting lists that were created by a
  9086. prior xCreate call.
  9087. </para>
  9088. <para>
  9089. The xConnect method must return SQLITE_OK if it is successful in
  9090. creating the new virtual table, or SQLITE_ERROR if it is not
  9091. successful. If not successful, the sqlite3_vtab structure must not
  9092. be allocated. An error message may optionally be returned in *pzErr
  9093. if unsuccessful. Space to hold the error message string must be
  9094. allocated using an SQLite memory allocation function like
  9095. sqlite3_malloc() or sqlite3_mprintf() as the SQLite core will
  9096. attempt to free the space using sqlite3_free() after the error has
  9097. been reported up to the application.
  9098. </para>
  9099. <para>
  9100. The xConnect method is required for every virtual table
  9101. implementation, though the xCreate and xConnect pointers of the
  9102. sqlite3_module object may point to the same function the virtual
  9103. table does not need to initialize backing store.
  9104. </para>
  9105. </summary>
  9106. <param name="pDb">
  9107. The native database connection handle.
  9108. </param>
  9109. <param name="pAux">
  9110. The original native pointer value that was provided to the
  9111. sqlite3_create_module(), sqlite3_create_module_v2() or
  9112. sqlite3_create_disposable_module() functions.
  9113. </param>
  9114. <param name="argc">
  9115. The number of arguments from the CREATE VIRTUAL TABLE statement.
  9116. </param>
  9117. <param name="argv">
  9118. The array of string arguments from the CREATE VIRTUAL TABLE
  9119. statement.
  9120. </param>
  9121. <param name="pVtab">
  9122. Upon success, this parameter must be modified to point to the newly
  9123. created native sqlite3_vtab derived structure.
  9124. </param>
  9125. <param name="pError">
  9126. Upon failure, this parameter must be modified to point to the error
  9127. message, with the underlying memory having been obtained from the
  9128. sqlite3_malloc() function.
  9129. </param>
  9130. <returns>
  9131. A standard SQLite return code.
  9132. </returns>
  9133. </member>
  9134. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)">
  9135. <summary>
  9136. <para>
  9137. SQLite uses the xBestIndex method of a virtual table module to
  9138. determine the best way to access the virtual table. The xBestIndex
  9139. method has a prototype like this:
  9140. </para>
  9141. <code>
  9142. int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
  9143. </code>
  9144. <para>
  9145. The SQLite core communicates with the xBestIndex method by filling
  9146. in certain fields of the sqlite3_index_info structure and passing a
  9147. pointer to that structure into xBestIndex as the second parameter.
  9148. The xBestIndex method fills out other fields of this structure
  9149. which forms the reply. The sqlite3_index_info structure looks like
  9150. this:
  9151. </para>
  9152. <code>
  9153. struct sqlite3_index_info {
  9154. /* Inputs */
  9155. const int nConstraint; /* Number of entries in aConstraint */
  9156. const struct sqlite3_index_constraint {
  9157. int iColumn; /* Column on left-hand side of
  9158. * constraint */
  9159. unsigned char op; /* Constraint operator */
  9160. unsigned char usable; /* True if this constraint is usable */
  9161. int iTermOffset; /* Used internally - xBestIndex should
  9162. * ignore */
  9163. } *const aConstraint; /* Table of WHERE clause constraints */
  9164. const int nOrderBy; /* Number of terms in the ORDER BY
  9165. * clause */
  9166. const struct sqlite3_index_orderby {
  9167. int iColumn; /* Column number */
  9168. unsigned char desc; /* True for DESC. False for ASC. */
  9169. } *const aOrderBy; /* The ORDER BY clause */
  9170. /* Outputs */
  9171. struct sqlite3_index_constraint_usage {
  9172. int argvIndex; /* if greater than zero, constraint is
  9173. * part of argv to xFilter */
  9174. unsigned char omit; /* Do not code a test for this
  9175. * constraint */
  9176. } *const aConstraintUsage;
  9177. int idxNum; /* Number used to identify the index */
  9178. char *idxStr; /* String, possibly obtained from
  9179. * sqlite3_malloc() */
  9180. int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if
  9181. * true */
  9182. int orderByConsumed; /* True if output is already ordered */
  9183. double estimatedCost; /* Estimated cost of using this index */
  9184. };
  9185. </code>
  9186. <para>
  9187. In addition, there are some defined constants:
  9188. </para>
  9189. <code>
  9190. #define SQLITE_INDEX_CONSTRAINT_EQ 2
  9191. #define SQLITE_INDEX_CONSTRAINT_GT 4
  9192. #define SQLITE_INDEX_CONSTRAINT_LE 8
  9193. #define SQLITE_INDEX_CONSTRAINT_LT 16
  9194. #define SQLITE_INDEX_CONSTRAINT_GE 32
  9195. #define SQLITE_INDEX_CONSTRAINT_MATCH 64
  9196. </code>
  9197. <para>
  9198. The SQLite core calls the xBestIndex method when it is compiling a
  9199. query that involves a virtual table. In other words, SQLite calls
  9200. this method when it is running sqlite3_prepare() or the equivalent.
  9201. By calling this method, the SQLite core is saying to the virtual
  9202. table that it needs to access some subset of the rows in the
  9203. virtual table and it wants to know the most efficient way to do
  9204. that access. The xBestIndex method replies with information that
  9205. the SQLite core can then use to conduct an efficient search of the
  9206. virtual table.
  9207. </para>
  9208. <para>
  9209. While compiling a single SQL query, the SQLite core might call
  9210. xBestIndex multiple times with different settings in
  9211. sqlite3_index_info. The SQLite core will then select the
  9212. combination that appears to give the best performance.
  9213. </para>
  9214. <para>
  9215. Before calling this method, the SQLite core initializes an instance
  9216. of the sqlite3_index_info structure with information about the
  9217. query that it is currently trying to process. This information
  9218. derives mainly from the WHERE clause and ORDER BY or GROUP BY
  9219. clauses of the query, but also from any ON or USING clauses if the
  9220. query is a join. The information that the SQLite core provides to
  9221. the xBestIndex method is held in the part of the structure that is
  9222. marked as "Inputs". The "Outputs" section is initialized to zero.
  9223. </para>
  9224. <para>
  9225. The information in the sqlite3_index_info structure is ephemeral
  9226. and may be overwritten or deallocated as soon as the xBestIndex
  9227. method returns. If the xBestIndex method needs to remember any part
  9228. of the sqlite3_index_info structure, it should make a copy. Care
  9229. must be take to store the copy in a place where it will be
  9230. deallocated, such as in the idxStr field with needToFreeIdxStr set
  9231. to 1.
  9232. </para>
  9233. <para>
  9234. Note that xBestIndex will always be called before xFilter, since
  9235. the idxNum and idxStr outputs from xBestIndex are required inputs
  9236. to xFilter. However, there is no guarantee that xFilter will be
  9237. called following a successful xBestIndex.
  9238. </para>
  9239. <para>
  9240. The xBestIndex method is required for every virtual table
  9241. implementation.
  9242. </para>
  9243. <para>
  9244. 2.3.1 Inputs
  9245. </para>
  9246. <para>
  9247. The main thing that the SQLite core is trying to communicate to the
  9248. virtual table is the constraints that are available to limit the
  9249. number of rows that need to be searched. The aConstraint[] array
  9250. contains one entry for each constraint. There will be exactly
  9251. nConstraint entries in that array.
  9252. </para>
  9253. <para>
  9254. Each constraint will correspond to a term in the WHERE clause or in
  9255. a USING or ON clause that is of the form
  9256. </para>
  9257. <code>
  9258. column OP EXPR
  9259. </code>
  9260. <para>
  9261. Where "column" is a column in the virtual table, OP is an operator
  9262. like "=" or "&lt;", and EXPR is an arbitrary expression. So, for
  9263. example, if the WHERE clause contained a term like this:
  9264. </para>
  9265. <code>
  9266. a = 5
  9267. </code>
  9268. <para>
  9269. Then one of the constraints would be on the "a" column with
  9270. operator "=" and an expression of "5". Constraints need not have a
  9271. literal representation of the WHERE clause. The query optimizer
  9272. might make transformations to the WHERE clause in order to extract
  9273. as many constraints as it can. So, for example, if the WHERE clause
  9274. contained something like this:
  9275. </para>
  9276. <code>
  9277. x BETWEEN 10 AND 100 AND 999&gt;y
  9278. </code>
  9279. <para>
  9280. The query optimizer might translate this into three separate
  9281. constraints:
  9282. </para>
  9283. <code>
  9284. x &gt;= 10
  9285. x &lt;= 100
  9286. y &lt; 999
  9287. </code>
  9288. <para>
  9289. For each constraint, the aConstraint[].iColumn field indicates
  9290. which column appears on the left-hand side of the constraint. The
  9291. first column of the virtual table is column 0. The rowid of the
  9292. virtual table is column -1. The aConstraint[].op field indicates
  9293. which operator is used. The SQLITE_INDEX_CONSTRAINT_* constants map
  9294. integer constants into operator values. Columns occur in the order
  9295. they were defined by the call to sqlite3_declare_vtab() in the
  9296. xCreate or xConnect method. Hidden columns are counted when
  9297. determining the column index.
  9298. </para>
  9299. <para>
  9300. The aConstraint[] array contains information about all constraints
  9301. that apply to the virtual table. But some of the constraints might
  9302. not be usable because of the way tables are ordered in a join. The
  9303. xBestIndex method must therefore only consider constraints that
  9304. have an aConstraint[].usable flag which is true.
  9305. </para>
  9306. <para>
  9307. In addition to WHERE clause constraints, the SQLite core also tells
  9308. the xBestIndex method about the ORDER BY clause. (In an aggregate
  9309. query, the SQLite core might put in GROUP BY clause information in
  9310. place of the ORDER BY clause information, but this fact should not
  9311. make any difference to the xBestIndex method.) If all terms of the
  9312. ORDER BY clause are columns in the virtual table, then nOrderBy
  9313. will be the number of terms in the ORDER BY clause and the
  9314. aOrderBy[] array will identify the column for each term in the
  9315. order by clause and whether or not that column is ASC or DESC.
  9316. </para>
  9317. <para>
  9318. 2.3.2 Outputs
  9319. </para>
  9320. <para>
  9321. Given all of the information above, the job of the xBestIndex
  9322. method it to figure out the best way to search the virtual table.
  9323. </para>
  9324. <para>
  9325. The xBestIndex method fills the idxNum and idxStr fields with
  9326. information that communicates an indexing strategy to the xFilter
  9327. method. The information in idxNum and idxStr is arbitrary as far as
  9328. the SQLite core is concerned. The SQLite core just copies the
  9329. information through to the xFilter method. Any desired meaning can
  9330. be assigned to idxNum and idxStr as long as xBestIndex and xFilter
  9331. agree on what that meaning is.
  9332. </para>
  9333. <para>
  9334. The idxStr value may be a string obtained from an SQLite memory
  9335. allocation function such as sqlite3_mprintf(). If this is the case,
  9336. then the needToFreeIdxStr flag must be set to true so that the
  9337. SQLite core will know to call sqlite3_free() on that string when it
  9338. has finished with it, and thus avoid a memory leak.
  9339. </para>
  9340. <para>
  9341. If the virtual table will output rows in the order specified by the
  9342. ORDER BY clause, then the orderByConsumed flag may be set to true.
  9343. If the output is not automatically in the correct order then
  9344. orderByConsumed must be left in its default false setting. This
  9345. will indicate to the SQLite core that it will need to do a separate
  9346. sorting pass over the data after it comes out of the virtual table.
  9347. </para>
  9348. <para>
  9349. The estimatedCost field should be set to the estimated number of
  9350. disk access operations required to execute this query against the
  9351. virtual table. The SQLite core will often call xBestIndex multiple
  9352. times with different constraints, obtain multiple cost estimates,
  9353. then choose the query plan that gives the lowest estimate.
  9354. </para>
  9355. <para>
  9356. The aConstraintUsage[] array contains one element for each of the
  9357. nConstraint constraints in the inputs section of the
  9358. sqlite3_index_info structure. The aConstraintUsage[] array is used
  9359. by xBestIndex to tell the core how it is using the constraints.
  9360. </para>
  9361. <para>
  9362. The xBestIndex method may set aConstraintUsage[].argvIndex entries
  9363. to values greater than one. Exactly one entry should be set to 1,
  9364. another to 2, another to 3, and so forth up to as many or as few as
  9365. the xBestIndex method wants. The EXPR of the corresponding
  9366. constraints will then be passed in as the argv[] parameters to
  9367. xFilter.
  9368. </para>
  9369. <para>
  9370. For example, if the aConstraint[3].argvIndex is set to 1, then when
  9371. xFilter is called, the argv[0] passed to xFilter will have the EXPR
  9372. value of the aConstraint[3] constraint.
  9373. </para>
  9374. <para>
  9375. By default, the SQLite core double checks all constraints on each
  9376. row of the virtual table that it receives. If such a check is
  9377. redundant, the xBestFilter method can suppress that double-check by
  9378. setting aConstraintUsage[].omit.
  9379. </para>
  9380. </summary>
  9381. <param name="pVtab">
  9382. The native pointer to the sqlite3_vtab derived structure.
  9383. </param>
  9384. <param name="pIndex">
  9385. The native pointer to the sqlite3_index_info structure.
  9386. </param>
  9387. <returns>
  9388. A standard SQLite return code.
  9389. </returns>
  9390. </member>
  9391. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)">
  9392. <summary>
  9393. <para>
  9394. This method releases a connection to a virtual table. Only the
  9395. sqlite3_vtab object is destroyed. The virtual table is not
  9396. destroyed and any backing store associated with the virtual table
  9397. persists. This method undoes the work of xConnect.
  9398. </para>
  9399. <para>
  9400. This method is a destructor for a connection to the virtual table.
  9401. Contrast this method with xDestroy. The xDestroy is a destructor
  9402. for the entire virtual table.
  9403. </para>
  9404. <para>
  9405. The xDisconnect method is required for every virtual table
  9406. implementation, though it is acceptable for the xDisconnect and
  9407. xDestroy methods to be the same function if that makes sense for
  9408. the particular virtual table.
  9409. </para>
  9410. </summary>
  9411. <param name="pVtab">
  9412. The native pointer to the sqlite3_vtab derived structure.
  9413. </param>
  9414. <returns>
  9415. A standard SQLite return code.
  9416. </returns>
  9417. </member>
  9418. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)">
  9419. <summary>
  9420. <para>
  9421. This method releases a connection to a virtual table, just like the
  9422. xDisconnect method, and it also destroys the underlying table
  9423. implementation. This method undoes the work of xCreate.
  9424. </para>
  9425. <para>
  9426. The xDisconnect method is called whenever a database connection
  9427. that uses a virtual table is closed. The xDestroy method is only
  9428. called when a DROP TABLE statement is executed against the virtual
  9429. table.
  9430. </para>
  9431. <para>
  9432. The xDestroy method is required for every virtual table
  9433. implementation, though it is acceptable for the xDisconnect and
  9434. xDestroy methods to be the same function if that makes sense for
  9435. the particular virtual table.
  9436. </para>
  9437. </summary>
  9438. <param name="pVtab">
  9439. The native pointer to the sqlite3_vtab derived structure.
  9440. </param>
  9441. <returns>
  9442. A standard SQLite return code.
  9443. </returns>
  9444. </member>
  9445. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)">
  9446. <summary>
  9447. <para>
  9448. The xOpen method creates a new cursor used for accessing (read
  9449. and/or writing) a virtual table. A successful invocation of this
  9450. method will allocate the memory for the sqlite3_vtab_cursor (or a
  9451. subclass), initialize the new object, and make *ppCursor point to
  9452. the new object. The successful call then returns SQLITE_OK.
  9453. </para>
  9454. <para>
  9455. For every successful call to this method, the SQLite core will
  9456. later invoke the xClose method to destroy the allocated cursor.
  9457. </para>
  9458. <para>
  9459. The xOpen method need not initialize the pVtab field of the
  9460. sqlite3_vtab_cursor structure. The SQLite core will take care of
  9461. that chore automatically.
  9462. </para>
  9463. <para>
  9464. A virtual table implementation must be able to support an arbitrary
  9465. number of simultaneously open cursors.
  9466. </para>
  9467. <para>
  9468. When initially opened, the cursor is in an undefined state. The
  9469. SQLite core will invoke the xFilter method on the cursor prior to
  9470. any attempt to position or read from the cursor.
  9471. </para>
  9472. <para>
  9473. The xOpen method is required for every virtual table
  9474. implementation.
  9475. </para>
  9476. </summary>
  9477. <param name="pVtab">
  9478. The native pointer to the sqlite3_vtab derived structure.
  9479. </param>
  9480. <param name="pCursor">
  9481. Upon success, this parameter must be modified to point to the newly
  9482. created native sqlite3_vtab_cursor derived structure.
  9483. </param>
  9484. <returns>
  9485. A standard SQLite return code.
  9486. </returns>
  9487. </member>
  9488. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)">
  9489. <summary>
  9490. <para>
  9491. The xClose method closes a cursor previously opened by xOpen. The
  9492. SQLite core will always call xClose once for each cursor opened
  9493. using xOpen.
  9494. </para>
  9495. <para>
  9496. This method must release all resources allocated by the
  9497. corresponding xOpen call. The routine will not be called again even
  9498. if it returns an error. The SQLite core will not use the
  9499. sqlite3_vtab_cursor again after it has been closed.
  9500. </para>
  9501. <para>
  9502. The xClose method is required for every virtual table
  9503. implementation.
  9504. </para>
  9505. </summary>
  9506. <param name="pCursor">
  9507. The native pointer to the sqlite3_vtab_cursor derived structure.
  9508. </param>
  9509. <returns>
  9510. A standard SQLite return code.
  9511. </returns>
  9512. </member>
  9513. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  9514. <summary>
  9515. <para>
  9516. This method begins a search of a virtual table. The first argument
  9517. is a cursor opened by xOpen. The next two argument define a
  9518. particular search index previously chosen by xBestIndex. The
  9519. specific meanings of idxNum and idxStr are unimportant as long as
  9520. xFilter and xBestIndex agree on what that meaning is.
  9521. </para>
  9522. <para>
  9523. The xBestIndex function may have requested the values of certain
  9524. expressions using the aConstraintUsage[].argvIndex values of the
  9525. sqlite3_index_info structure. Those values are passed to xFilter
  9526. using the argc and argv parameters.
  9527. </para>
  9528. <para>
  9529. If the virtual table contains one or more rows that match the
  9530. search criteria, then the cursor must be left point at the first
  9531. row. Subsequent calls to xEof must return false (zero). If there
  9532. are no rows match, then the cursor must be left in a state that
  9533. will cause the xEof to return true (non-zero). The SQLite engine
  9534. will use the xColumn and xRowid methods to access that row content.
  9535. The xNext method will be used to advance to the next row.
  9536. </para>
  9537. <para>
  9538. This method must return SQLITE_OK if successful, or an sqlite error
  9539. code if an error occurs.
  9540. </para>
  9541. <para>
  9542. The xFilter method is required for every virtual table
  9543. implementation.
  9544. </para>
  9545. </summary>
  9546. <param name="pCursor">
  9547. The native pointer to the sqlite3_vtab_cursor derived structure.
  9548. </param>
  9549. <param name="idxNum">
  9550. Number used to help identify the selected index.
  9551. </param>
  9552. <param name="idxStr">
  9553. The native pointer to the UTF-8 encoded string containing the
  9554. string used to help identify the selected index.
  9555. </param>
  9556. <param name="argc">
  9557. The number of native pointers to sqlite3_value structures specified
  9558. in <paramref name="argv" />.
  9559. </param>
  9560. <param name="argv">
  9561. An array of native pointers to sqlite3_value structures containing
  9562. filtering criteria for the selected index.
  9563. </param>
  9564. <returns>
  9565. A standard SQLite return code.
  9566. </returns>
  9567. </member>
  9568. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)">
  9569. <summary>
  9570. <para>
  9571. The xNext method advances a virtual table cursor to the next row of
  9572. a result set initiated by xFilter. If the cursor is already
  9573. pointing at the last row when this routine is called, then the
  9574. cursor no longer points to valid data and a subsequent call to the
  9575. xEof method must return true (non-zero). If the cursor is
  9576. successfully advanced to another row of content, then subsequent
  9577. calls to xEof must return false (zero).
  9578. </para>
  9579. <para>
  9580. This method must return SQLITE_OK if successful, or an sqlite error
  9581. code if an error occurs.
  9582. </para>
  9583. <para>
  9584. The xNext method is required for every virtual table
  9585. implementation.
  9586. </para>
  9587. </summary>
  9588. <param name="pCursor">
  9589. The native pointer to the sqlite3_vtab_cursor derived structure.
  9590. </param>
  9591. <returns>
  9592. A standard SQLite return code.
  9593. </returns>
  9594. </member>
  9595. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)">
  9596. <summary>
  9597. <para>
  9598. The xEof method must return false (zero) if the specified cursor
  9599. currently points to a valid row of data, or true (non-zero)
  9600. otherwise. This method is called by the SQL engine immediately
  9601. after each xFilter and xNext invocation.
  9602. </para>
  9603. <para>
  9604. The xEof method is required for every virtual table implementation.
  9605. </para>
  9606. </summary>
  9607. <param name="pCursor">
  9608. The native pointer to the sqlite3_vtab_cursor derived structure.
  9609. </param>
  9610. <returns>
  9611. Non-zero if no more rows are available; zero otherwise.
  9612. </returns>
  9613. </member>
  9614. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)">
  9615. <summary>
  9616. <para>
  9617. The SQLite core invokes this method in order to find the value for
  9618. the N-th column of the current row. N is zero-based so the first
  9619. column is numbered 0. The xColumn method may return its result back
  9620. to SQLite using one of the following interface:
  9621. </para>
  9622. <code>
  9623. sqlite3_result_blob()
  9624. sqlite3_result_double()
  9625. sqlite3_result_int()
  9626. sqlite3_result_int64()
  9627. sqlite3_result_null()
  9628. sqlite3_result_text()
  9629. sqlite3_result_text16()
  9630. sqlite3_result_text16le()
  9631. sqlite3_result_text16be()
  9632. sqlite3_result_zeroblob()
  9633. </code>
  9634. <para>
  9635. If the xColumn method implementation calls none of the functions
  9636. above, then the value of the column defaults to an SQL NULL.
  9637. </para>
  9638. <para>
  9639. To raise an error, the xColumn method should use one of the
  9640. result_text() methods to set the error message text, then return an
  9641. appropriate error code. The xColumn method must return SQLITE_OK on
  9642. success.
  9643. </para>
  9644. <para>
  9645. The xColumn method is required for every virtual table
  9646. implementation.
  9647. </para>
  9648. </summary>
  9649. <param name="pCursor">
  9650. The native pointer to the sqlite3_vtab_cursor derived structure.
  9651. </param>
  9652. <param name="pContext">
  9653. The native pointer to the sqlite3_context structure to be used
  9654. for returning the specified column value to the SQLite core
  9655. library.
  9656. </param>
  9657. <param name="index">
  9658. The zero-based index corresponding to the column containing the
  9659. value to be returned.
  9660. </param>
  9661. <returns>
  9662. A standard SQLite return code.
  9663. </returns>
  9664. </member>
  9665. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)">
  9666. <summary>
  9667. <para>
  9668. A successful invocation of this method will cause *pRowid to be
  9669. filled with the rowid of row that the virtual table cursor pCur is
  9670. currently pointing at. This method returns SQLITE_OK on success. It
  9671. returns an appropriate error code on failure.
  9672. </para>
  9673. <para>
  9674. The xRowid method is required for every virtual table
  9675. implementation.
  9676. </para>
  9677. </summary>
  9678. <param name="pCursor">
  9679. The native pointer to the sqlite3_vtab_cursor derived structure.
  9680. </param>
  9681. <param name="rowId">
  9682. Upon success, this parameter must be modified to contain the unique
  9683. integer row identifier for the current row for the specified cursor.
  9684. </param>
  9685. <returns>
  9686. A standard SQLite return code.
  9687. </returns>
  9688. </member>
  9689. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)">
  9690. <summary>
  9691. <para>
  9692. All changes to a virtual table are made using the xUpdate method.
  9693. This one method can be used to insert, delete, or update.
  9694. </para>
  9695. <para>
  9696. The argc parameter specifies the number of entries in the argv
  9697. array. The value of argc will be 1 for a pure delete operation or
  9698. N+2 for an insert or replace or update where N is the number of
  9699. columns in the table. In the previous sentence, N includes any
  9700. hidden columns.
  9701. </para>
  9702. <para>
  9703. Every argv entry will have a non-NULL value in C but may contain
  9704. the SQL value NULL. In other words, it is always true that
  9705. argv[i]!=0 for i between 0 and argc-1. However, it might be the
  9706. case that sqlite3_value_type(argv[i])==SQLITE_NULL.
  9707. </para>
  9708. <para>
  9709. The argv[0] parameter is the rowid of a row in the virtual table
  9710. to be deleted. If argv[0] is an SQL NULL, then no deletion occurs.
  9711. </para>
  9712. <para>
  9713. The argv[1] parameter is the rowid of a new row to be inserted into
  9714. the virtual table. If argv[1] is an SQL NULL, then the
  9715. implementation must choose a rowid for the newly inserted row.
  9716. Subsequent argv[] entries contain values of the columns of the
  9717. virtual table, in the order that the columns were declared. The
  9718. number of columns will match the table declaration that the
  9719. xConnect or xCreate method made using the sqlite3_declare_vtab()
  9720. call. All hidden columns are included.
  9721. </para>
  9722. <para>
  9723. When doing an insert without a rowid (argc>1, argv[1] is an SQL
  9724. NULL), the implementation must set *pRowid to the rowid of the
  9725. newly inserted row; this will become the value returned by the
  9726. sqlite3_last_insert_rowid() function. Setting this value in all the
  9727. other cases is a harmless no-op; the SQLite engine ignores the
  9728. *pRowid return value if argc==1 or argv[1] is not an SQL NULL.
  9729. </para>
  9730. <para>
  9731. Each call to xUpdate will fall into one of cases shown below. Note
  9732. that references to argv[i] mean the SQL value held within the
  9733. argv[i] object, not the argv[i] object itself.
  9734. </para>
  9735. <code>
  9736. argc = 1
  9737. </code>
  9738. <para>
  9739. The single row with rowid equal to argv[0] is deleted. No
  9740. insert occurs.
  9741. </para>
  9742. <code>
  9743. argc > 1
  9744. argv[0] = NULL
  9745. </code>
  9746. <para>
  9747. A new row is inserted with a rowid argv[1] and column
  9748. values in argv[2] and following. If argv[1] is an SQL NULL,
  9749. the a new unique rowid is generated automatically.
  9750. </para>
  9751. <code>
  9752. argc > 1
  9753. argv[0] ? NULL
  9754. argv[0] = argv[1]
  9755. </code>
  9756. <para>
  9757. The row with rowid argv[0] is updated with new values in
  9758. argv[2] and following parameters.
  9759. </para>
  9760. <code>
  9761. argc > 1
  9762. argv[0] ? NULL
  9763. argv[0] ? argv[1]
  9764. </code>
  9765. <para>
  9766. The row with rowid argv[0] is updated with rowid argv[1]
  9767. and new values in argv[2] and following parameters. This
  9768. will occur when an SQL statement updates a rowid, as in
  9769. the statement:
  9770. </para>
  9771. <code>
  9772. UPDATE table SET rowid=rowid+1 WHERE ...;
  9773. </code>
  9774. <para>
  9775. The xUpdate method must return SQLITE_OK if and only if it is
  9776. successful. If a failure occurs, the xUpdate must return an
  9777. appropriate error code. On a failure, the pVTab->zErrMsg element
  9778. may optionally be replaced with error message text stored in memory
  9779. allocated from SQLite using functions such as sqlite3_mprintf() or
  9780. sqlite3_malloc().
  9781. </para>
  9782. <para>
  9783. If the xUpdate method violates some constraint of the virtual table
  9784. (including, but not limited to, attempting to store a value of the
  9785. wrong datatype, attempting to store a value that is too large or
  9786. too small, or attempting to change a read-only value) then the
  9787. xUpdate must fail with an appropriate error code.
  9788. </para>
  9789. <para>
  9790. There might be one or more sqlite3_vtab_cursor objects open and in
  9791. use on the virtual table instance and perhaps even on the row of
  9792. the virtual table when the xUpdate method is invoked. The
  9793. implementation of xUpdate must be prepared for attempts to delete
  9794. or modify rows of the table out from other existing cursors. If the
  9795. virtual table cannot accommodate such changes, the xUpdate method
  9796. must return an error code.
  9797. </para>
  9798. <para>
  9799. The xUpdate method is optional. If the xUpdate pointer in the
  9800. sqlite3_module for a virtual table is a NULL pointer, then the
  9801. virtual table is read-only.
  9802. </para>
  9803. </summary>
  9804. <param name="pVtab">
  9805. The native pointer to the sqlite3_vtab derived structure.
  9806. </param>
  9807. <param name="argc">
  9808. The number of new or modified column values contained in
  9809. <paramref name="argv" />.
  9810. </param>
  9811. <param name="argv">
  9812. The array of native pointers to sqlite3_value structures containing
  9813. the new or modified column values, if any.
  9814. </param>
  9815. <param name="rowId">
  9816. Upon success, this parameter must be modified to contain the unique
  9817. integer row identifier for the row that was inserted, if any.
  9818. </param>
  9819. <returns>
  9820. A standard SQLite return code.
  9821. </returns>
  9822. </member>
  9823. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)">
  9824. <summary>
  9825. <para>
  9826. This method begins a transaction on a virtual table. This is method
  9827. is optional. The xBegin pointer of sqlite3_module may be NULL.
  9828. </para>
  9829. <para>
  9830. This method is always followed by one call to either the xCommit or
  9831. xRollback method. Virtual table transactions do not nest, so the
  9832. xBegin method will not be invoked more than once on a single
  9833. virtual table without an intervening call to either xCommit or
  9834. xRollback. Multiple calls to other methods can and likely will
  9835. occur in between the xBegin and the corresponding xCommit or
  9836. xRollback.
  9837. </para>
  9838. </summary>
  9839. <param name="pVtab">
  9840. The native pointer to the sqlite3_vtab derived structure.
  9841. </param>
  9842. <returns>
  9843. A standard SQLite return code.
  9844. </returns>
  9845. </member>
  9846. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)">
  9847. <summary>
  9848. <para>
  9849. This method signals the start of a two-phase commit on a virtual
  9850. table. This is method is optional. The xSync pointer of
  9851. sqlite3_module may be NULL.
  9852. </para>
  9853. <para>
  9854. This method is only invoked after call to the xBegin method and
  9855. prior to an xCommit or xRollback. In order to implement two-phase
  9856. commit, the xSync method on all virtual tables is invoked prior to
  9857. invoking the xCommit method on any virtual table. If any of the
  9858. xSync methods fail, the entire transaction is rolled back.
  9859. </para>
  9860. </summary>
  9861. <param name="pVtab">
  9862. The native pointer to the sqlite3_vtab derived structure.
  9863. </param>
  9864. <returns>
  9865. A standard SQLite return code.
  9866. </returns>
  9867. </member>
  9868. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)">
  9869. <summary>
  9870. <para>
  9871. This method causes a virtual table transaction to commit. This is
  9872. method is optional. The xCommit pointer of sqlite3_module may be
  9873. NULL.
  9874. </para>
  9875. <para>
  9876. A call to this method always follows a prior call to xBegin and
  9877. xSync.
  9878. </para>
  9879. </summary>
  9880. <param name="pVtab">
  9881. The native pointer to the sqlite3_vtab derived structure.
  9882. </param>
  9883. <returns>
  9884. A standard SQLite return code.
  9885. </returns>
  9886. </member>
  9887. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)">
  9888. <summary>
  9889. <para>
  9890. This method causes a virtual table transaction to rollback. This is
  9891. method is optional. The xRollback pointer of sqlite3_module may be
  9892. NULL.
  9893. </para>
  9894. <para>
  9895. A call to this method always follows a prior call to xBegin.
  9896. </para>
  9897. </summary>
  9898. <param name="pVtab">
  9899. The native pointer to the sqlite3_vtab derived structure.
  9900. </param>
  9901. <returns>
  9902. A standard SQLite return code.
  9903. </returns>
  9904. </member>
  9905. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)">
  9906. <summary>
  9907. <para>
  9908. This method provides notification that the virtual table
  9909. implementation that the virtual table will be given a new name. If
  9910. this method returns SQLITE_OK then SQLite renames the table. If
  9911. this method returns an error code then the renaming is prevented.
  9912. </para>
  9913. <para>
  9914. The xRename method is required for every virtual table
  9915. implementation.
  9916. </para>
  9917. </summary>
  9918. <param name="pVtab">
  9919. The native pointer to the sqlite3_vtab derived structure.
  9920. </param>
  9921. <param name="nArg">
  9922. The number of arguments to the function being sought.
  9923. </param>
  9924. <param name="zName">
  9925. The name of the function being sought.
  9926. </param>
  9927. <param name="callback">
  9928. Upon success, this parameter must be modified to contain the
  9929. delegate responsible for implementing the specified function.
  9930. </param>
  9931. <param name="pClientData">
  9932. Upon success, this parameter must be modified to contain the
  9933. native user-data pointer associated with
  9934. <paramref name="callback" />.
  9935. </param>
  9936. <returns>
  9937. Non-zero if the specified function was found; zero otherwise.
  9938. </returns>
  9939. </member>
  9940. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)">
  9941. <summary>
  9942. <para>
  9943. This method provides notification that the virtual table
  9944. implementation that the virtual table will be given a new name. If
  9945. this method returns SQLITE_OK then SQLite renames the table. If
  9946. this method returns an error code then the renaming is prevented.
  9947. </para>
  9948. <para>
  9949. The xRename method is required for every virtual table
  9950. implementation.
  9951. </para>
  9952. </summary>
  9953. <param name="pVtab">
  9954. The native pointer to the sqlite3_vtab derived structure.
  9955. </param>
  9956. <param name="zNew">
  9957. The native pointer to the UTF-8 encoded string containing the new
  9958. name for the virtual table.
  9959. </param>
  9960. <returns>
  9961. A standard SQLite return code.
  9962. </returns>
  9963. </member>
  9964. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)">
  9965. <summary>
  9966. <para>
  9967. These methods provide the virtual table implementation an
  9968. opportunity to implement nested transactions. They are always
  9969. optional and will only be called in SQLite version 3.7.7 and later.
  9970. </para>
  9971. <para>
  9972. When xSavepoint(X,N) is invoked, that is a signal to the virtual
  9973. table X that it should save its current state as savepoint N. A
  9974. subsequent call to xRollbackTo(X,R) means that the state of the
  9975. virtual table should return to what it was when xSavepoint(X,R) was
  9976. last called. The call to xRollbackTo(X,R) will invalidate all
  9977. savepoints with N>R; none of the invalided savepoints will be
  9978. rolled back or released without first being reinitialized by a call
  9979. to xSavepoint(). A call to xRelease(X,M) invalidates all savepoints
  9980. where N>=M.
  9981. </para>
  9982. <para>
  9983. None of the xSavepoint(), xRelease(), or xRollbackTo() methods will
  9984. ever be called except in between calls to xBegin() and either
  9985. xCommit() or xRollback().
  9986. </para>
  9987. </summary>
  9988. <param name="pVtab">
  9989. The native pointer to the sqlite3_vtab derived structure.
  9990. </param>
  9991. <param name="iSavepoint">
  9992. This is an integer identifier under which the the current state of
  9993. the virtual table should be saved.
  9994. </param>
  9995. <returns>
  9996. A standard SQLite return code.
  9997. </returns>
  9998. </member>
  9999. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)">
  10000. <summary>
  10001. <para>
  10002. These methods provide the virtual table implementation an
  10003. opportunity to implement nested transactions. They are always
  10004. optional and will only be called in SQLite version 3.7.7 and later.
  10005. </para>
  10006. <para>
  10007. When xSavepoint(X,N) is invoked, that is a signal to the virtual
  10008. table X that it should save its current state as savepoint N. A
  10009. subsequent call to xRollbackTo(X,R) means that the state of the
  10010. virtual table should return to what it was when xSavepoint(X,R) was
  10011. last called. The call to xRollbackTo(X,R) will invalidate all
  10012. savepoints with N>R; none of the invalided savepoints will be
  10013. rolled back or released without first being reinitialized by a call
  10014. to xSavepoint(). A call to xRelease(X,M) invalidates all savepoints
  10015. where N>=M.
  10016. </para>
  10017. <para>
  10018. None of the xSavepoint(), xRelease(), or xRollbackTo() methods will
  10019. ever be called except in between calls to xBegin() and either
  10020. xCommit() or xRollback().
  10021. </para>
  10022. </summary>
  10023. <param name="pVtab">
  10024. The native pointer to the sqlite3_vtab derived structure.
  10025. </param>
  10026. <param name="iSavepoint">
  10027. This is an integer used to indicate that any saved states with an
  10028. identifier greater than or equal to this should be deleted by the
  10029. virtual table.
  10030. </param>
  10031. <returns>
  10032. A standard SQLite return code.
  10033. </returns>
  10034. </member>
  10035. <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)">
  10036. <summary>
  10037. <para>
  10038. These methods provide the virtual table implementation an
  10039. opportunity to implement nested transactions. They are always
  10040. optional and will only be called in SQLite version 3.7.7 and later.
  10041. </para>
  10042. <para>
  10043. When xSavepoint(X,N) is invoked, that is a signal to the virtual
  10044. table X that it should save its current state as savepoint N. A
  10045. subsequent call to xRollbackTo(X,R) means that the state of the
  10046. virtual table should return to what it was when xSavepoint(X,R) was
  10047. last called. The call to xRollbackTo(X,R) will invalidate all
  10048. savepoints with N>R; none of the invalided savepoints will be
  10049. rolled back or released without first being reinitialized by a call
  10050. to xSavepoint(). A call to xRelease(X,M) invalidates all savepoints
  10051. where N>=M.
  10052. </para>
  10053. <para>
  10054. None of the xSavepoint(), xRelease(), or xRollbackTo() methods will
  10055. ever be called except in between calls to xBegin() and either
  10056. xCommit() or xRollback().
  10057. </para>
  10058. </summary>
  10059. <param name="pVtab">
  10060. The native pointer to the sqlite3_vtab derived structure.
  10061. </param>
  10062. <param name="iSavepoint">
  10063. This is an integer identifier used to specify a specific saved
  10064. state for the virtual table for it to restore itself back to, which
  10065. should also have the effect of deleting all saved states with an
  10066. integer identifier greater than this one.
  10067. </param>
  10068. <returns>
  10069. A standard SQLite return code.
  10070. </returns>
  10071. </member>
  10072. <member name="T:System.Data.SQLite.ISQLiteManagedModule">
  10073. <summary>
  10074. This interface represents a virtual table implementation written in
  10075. managed code.
  10076. </summary>
  10077. </member>
  10078. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  10079. <summary>
  10080. This method is called in response to the
  10081. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  10082. </summary>
  10083. <param name="connection">
  10084. The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  10085. the virtual table.
  10086. </param>
  10087. <param name="pClientData">
  10088. The native user-data pointer associated with this module, as it was
  10089. provided to the SQLite core library when the native module instance
  10090. was created.
  10091. </param>
  10092. <param name="arguments">
  10093. The module name, database name, virtual table name, and all other
  10094. arguments passed to the CREATE VIRTUAL TABLE statement.
  10095. </param>
  10096. <param name="table">
  10097. Upon success, this parameter must be modified to contain the
  10098. <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  10099. the virtual table.
  10100. </param>
  10101. <param name="error">
  10102. Upon failure, this parameter must be modified to contain an error
  10103. message.
  10104. </param>
  10105. <returns>
  10106. A standard SQLite return code.
  10107. </returns>
  10108. </member>
  10109. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  10110. <summary>
  10111. This method is called in response to the
  10112. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  10113. </summary>
  10114. <param name="connection">
  10115. The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  10116. the virtual table.
  10117. </param>
  10118. <param name="pClientData">
  10119. The native user-data pointer associated with this module, as it was
  10120. provided to the SQLite core library when the native module instance
  10121. was created.
  10122. </param>
  10123. <param name="arguments">
  10124. The module name, database name, virtual table name, and all other
  10125. arguments passed to the CREATE VIRTUAL TABLE statement.
  10126. </param>
  10127. <param name="table">
  10128. Upon success, this parameter must be modified to contain the
  10129. <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  10130. the virtual table.
  10131. </param>
  10132. <param name="error">
  10133. Upon failure, this parameter must be modified to contain an error
  10134. message.
  10135. </param>
  10136. <returns>
  10137. A standard SQLite return code.
  10138. </returns>
  10139. </member>
  10140. <member name="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  10141. <summary>
  10142. This method is called in response to the
  10143. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  10144. </summary>
  10145. <param name="table">
  10146. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10147. with this virtual table.
  10148. </param>
  10149. <param name="index">
  10150. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  10151. data for the inputs and outputs relating to index selection.
  10152. </param>
  10153. <returns>
  10154. A standard SQLite return code.
  10155. </returns>
  10156. </member>
  10157. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  10158. <summary>
  10159. This method is called in response to the
  10160. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  10161. </summary>
  10162. <param name="table">
  10163. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10164. with this virtual table.
  10165. </param>
  10166. <returns>
  10167. A standard SQLite return code.
  10168. </returns>
  10169. </member>
  10170. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  10171. <summary>
  10172. This method is called in response to the
  10173. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  10174. </summary>
  10175. <param name="table">
  10176. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10177. with this virtual table.
  10178. </param>
  10179. <returns>
  10180. A standard SQLite return code.
  10181. </returns>
  10182. </member>
  10183. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  10184. <summary>
  10185. This method is called in response to the
  10186. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  10187. </summary>
  10188. <param name="table">
  10189. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10190. with this virtual table.
  10191. </param>
  10192. <param name="cursor">
  10193. Upon success, this parameter must be modified to contain the
  10194. <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance associated
  10195. with the newly opened virtual table cursor.
  10196. </param>
  10197. <returns>
  10198. A standard SQLite return code.
  10199. </returns>
  10200. </member>
  10201. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  10202. <summary>
  10203. This method is called in response to the
  10204. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  10205. </summary>
  10206. <param name="cursor">
  10207. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  10208. associated with the previously opened virtual table cursor to be
  10209. used.
  10210. </param>
  10211. <returns>
  10212. A standard SQLite return code.
  10213. </returns>
  10214. </member>
  10215. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  10216. <summary>
  10217. This method is called in response to the
  10218. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  10219. </summary>
  10220. <param name="cursor">
  10221. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  10222. associated with the previously opened virtual table cursor to be
  10223. used.
  10224. </param>
  10225. <param name="indexNumber">
  10226. Number used to help identify the selected index.
  10227. </param>
  10228. <param name="indexString">
  10229. String used to help identify the selected index.
  10230. </param>
  10231. <param name="values">
  10232. The values corresponding to each column in the selected index.
  10233. </param>
  10234. <returns>
  10235. A standard SQLite return code.
  10236. </returns>
  10237. </member>
  10238. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  10239. <summary>
  10240. This method is called in response to the
  10241. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  10242. </summary>
  10243. <param name="cursor">
  10244. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  10245. associated with the previously opened virtual table cursor to be
  10246. used.
  10247. </param>
  10248. <returns>
  10249. A standard SQLite return code.
  10250. </returns>
  10251. </member>
  10252. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  10253. <summary>
  10254. This method is called in response to the
  10255. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  10256. </summary>
  10257. <param name="cursor">
  10258. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  10259. associated with the previously opened virtual table cursor to be
  10260. used.
  10261. </param>
  10262. <returns>
  10263. Non-zero if no more rows are available; zero otherwise.
  10264. </returns>
  10265. </member>
  10266. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  10267. <summary>
  10268. This method is called in response to the
  10269. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  10270. </summary>
  10271. <param name="cursor">
  10272. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  10273. associated with the previously opened virtual table cursor to be
  10274. used.
  10275. </param>
  10276. <param name="context">
  10277. The <see cref="T:System.Data.SQLite.SQLiteContext"/> object instance to be used for
  10278. returning the specified column value to the SQLite core library.
  10279. </param>
  10280. <param name="index">
  10281. The zero-based index corresponding to the column containing the
  10282. value to be returned.
  10283. </param>
  10284. <returns>
  10285. A standard SQLite return code.
  10286. </returns>
  10287. </member>
  10288. <member name="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  10289. <summary>
  10290. This method is called in response to the
  10291. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  10292. </summary>
  10293. <param name="cursor">
  10294. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  10295. associated with the previously opened virtual table cursor to be
  10296. used.
  10297. </param>
  10298. <param name="rowId">
  10299. Upon success, this parameter must be modified to contain the unique
  10300. integer row identifier for the current row for the specified cursor.
  10301. </param>
  10302. <returns>
  10303. A standard SQLite return code.
  10304. </returns>
  10305. </member>
  10306. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  10307. <summary>
  10308. This method is called in response to the
  10309. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  10310. </summary>
  10311. <param name="table">
  10312. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10313. with this virtual table.
  10314. </param>
  10315. <param name="values">
  10316. The array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances containing
  10317. the new or modified column values, if any.
  10318. </param>
  10319. <param name="rowId">
  10320. Upon success, this parameter must be modified to contain the unique
  10321. integer row identifier for the row that was inserted, if any.
  10322. </param>
  10323. <returns>
  10324. A standard SQLite return code.
  10325. </returns>
  10326. </member>
  10327. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)">
  10328. <summary>
  10329. This method is called in response to the
  10330. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  10331. </summary>
  10332. <param name="table">
  10333. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10334. with this virtual table.
  10335. </param>
  10336. <returns>
  10337. A standard SQLite return code.
  10338. </returns>
  10339. </member>
  10340. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)">
  10341. <summary>
  10342. This method is called in response to the
  10343. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  10344. </summary>
  10345. <param name="table">
  10346. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10347. with this virtual table.
  10348. </param>
  10349. <returns>
  10350. A standard SQLite return code.
  10351. </returns>
  10352. </member>
  10353. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)">
  10354. <summary>
  10355. This method is called in response to the
  10356. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  10357. </summary>
  10358. <param name="table">
  10359. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10360. with this virtual table.
  10361. </param>
  10362. <returns>
  10363. A standard SQLite return code.
  10364. </returns>
  10365. </member>
  10366. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)">
  10367. <summary>
  10368. This method is called in response to the
  10369. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  10370. </summary>
  10371. <param name="table">
  10372. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10373. with this virtual table.
  10374. </param>
  10375. <returns>
  10376. A standard SQLite return code.
  10377. </returns>
  10378. </member>
  10379. <member name="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)">
  10380. <summary>
  10381. This method is called in response to the
  10382. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  10383. </summary>
  10384. <param name="table">
  10385. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10386. with this virtual table.
  10387. </param>
  10388. <param name="argumentCount">
  10389. The number of arguments to the function being sought.
  10390. </param>
  10391. <param name="name">
  10392. The name of the function being sought.
  10393. </param>
  10394. <param name="function">
  10395. Upon success, this parameter must be modified to contain the
  10396. <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance responsible for
  10397. implementing the specified function.
  10398. </param>
  10399. <param name="pClientData">
  10400. Upon success, this parameter must be modified to contain the
  10401. native user-data pointer associated with
  10402. <paramref name="function"/>.
  10403. </param>
  10404. <returns>
  10405. Non-zero if the specified function was found; zero otherwise.
  10406. </returns>
  10407. </member>
  10408. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  10409. <summary>
  10410. This method is called in response to the
  10411. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  10412. </summary>
  10413. <param name="table">
  10414. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10415. with this virtual table.
  10416. </param>
  10417. <param name="newName">
  10418. The new name for the virtual table.
  10419. </param>
  10420. <returns>
  10421. A standard SQLite return code.
  10422. </returns>
  10423. </member>
  10424. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  10425. <summary>
  10426. This method is called in response to the
  10427. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  10428. </summary>
  10429. <param name="table">
  10430. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10431. with this virtual table.
  10432. </param>
  10433. <param name="savepoint">
  10434. This is an integer identifier under which the the current state of
  10435. the virtual table should be saved.
  10436. </param>
  10437. <returns>
  10438. A standard SQLite return code.
  10439. </returns>
  10440. </member>
  10441. <member name="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  10442. <summary>
  10443. This method is called in response to the
  10444. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  10445. </summary>
  10446. <param name="table">
  10447. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10448. with this virtual table.
  10449. </param>
  10450. <param name="savepoint">
  10451. This is an integer used to indicate that any saved states with an
  10452. identifier greater than or equal to this should be deleted by the
  10453. virtual table.
  10454. </param>
  10455. <returns>
  10456. A standard SQLite return code.
  10457. </returns>
  10458. </member>
  10459. <member name="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  10460. <summary>
  10461. This method is called in response to the
  10462. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  10463. </summary>
  10464. <param name="table">
  10465. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10466. with this virtual table.
  10467. </param>
  10468. <param name="savepoint">
  10469. This is an integer identifier used to specify a specific saved
  10470. state for the virtual table for it to restore itself back to, which
  10471. should also have the effect of deleting all saved states with an
  10472. integer identifier greater than this one.
  10473. </param>
  10474. <returns>
  10475. A standard SQLite return code.
  10476. </returns>
  10477. </member>
  10478. <member name="P:System.Data.SQLite.ISQLiteManagedModule.Declared">
  10479. <summary>
  10480. Returns non-zero if the schema for the virtual table has been
  10481. declared.
  10482. </summary>
  10483. </member>
  10484. <member name="P:System.Data.SQLite.ISQLiteManagedModule.Name">
  10485. <summary>
  10486. Returns the name of the module as it was registered with the SQLite
  10487. core library.
  10488. </summary>
  10489. </member>
  10490. <member name="T:System.Data.SQLite.SQLiteMemory">
  10491. <summary>
  10492. This class contains static methods that are used to allocate,
  10493. manipulate, and free native memory provided by the SQLite core library.
  10494. </summary>
  10495. </member>
  10496. <member name="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)">
  10497. <summary>
  10498. Allocates at least the specified number of bytes of native memory
  10499. via the SQLite core library sqlite3_malloc() function and returns
  10500. the resulting native pointer.
  10501. </summary>
  10502. <param name="size">
  10503. The number of bytes to allocate.
  10504. </param>
  10505. <returns>
  10506. The native pointer that points to a block of memory of at least the
  10507. specified size -OR- <see cref="F:System.IntPtr.Zero"/> if the memory could
  10508. not be allocated.
  10509. </returns>
  10510. </member>
  10511. <member name="M:System.Data.SQLite.SQLiteMemory.Size(System.IntPtr)">
  10512. <summary>
  10513. Gets and returns the actual size of the specified memory block that
  10514. was previously obtained from the <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10515. </summary>
  10516. <param name="pMemory">
  10517. The native pointer to the memory block previously obtained from the
  10518. <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10519. </param>
  10520. <returns>
  10521. The actual size, in bytes, of the memory block specified via the
  10522. native pointer.
  10523. </returns>
  10524. </member>
  10525. <member name="M:System.Data.SQLite.SQLiteMemory.Free(System.IntPtr)">
  10526. <summary>
  10527. Frees a memory block previously obtained from the
  10528. <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10529. </summary>
  10530. <param name="pMemory">
  10531. The native pointer to the memory block previously obtained from the
  10532. <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10533. </param>
  10534. </member>
  10535. <member name="T:System.Data.SQLite.SQLiteString">
  10536. <summary>
  10537. This class contains static methods that are used to deal with native
  10538. UTF-8 string pointers to be used with the SQLite core library.
  10539. </summary>
  10540. </member>
  10541. <member name="F:System.Data.SQLite.SQLiteString.ThirtyBits">
  10542. <summary>
  10543. This is the maximum possible length for the native UTF-8 encoded
  10544. strings used with the SQLite core library.
  10545. </summary>
  10546. </member>
  10547. <member name="F:System.Data.SQLite.SQLiteString.Utf8Encoding">
  10548. <summary>
  10549. This is the <see cref="T:System.Text.Encoding"/> object instance used to handle
  10550. conversions from/to UTF-8.
  10551. </summary>
  10552. </member>
  10553. <member name="M:System.Data.SQLite.SQLiteString.GetUtf8BytesFromString(System.String)">
  10554. <summary>
  10555. Converts the specified managed string into the UTF-8 encoding and
  10556. returns the array of bytes containing its representation in that
  10557. encoding.
  10558. </summary>
  10559. <param name="value">
  10560. The managed string to convert.
  10561. </param>
  10562. <returns>
  10563. The array of bytes containing the representation of the managed
  10564. string in the UTF-8 encoding or null upon failure.
  10565. </returns>
  10566. </member>
  10567. <member name="M:System.Data.SQLite.SQLiteString.GetStringFromUtf8Bytes(System.Byte[])">
  10568. <summary>
  10569. Converts the specified array of bytes representing a string in the
  10570. UTF-8 encoding and returns a managed string.
  10571. </summary>
  10572. <param name="bytes">
  10573. The array of bytes to convert.
  10574. </param>
  10575. <returns>
  10576. The managed string or null upon failure.
  10577. </returns>
  10578. </member>
  10579. <member name="M:System.Data.SQLite.SQLiteString.ProbeForUtf8ByteLength(System.IntPtr,System.Int32)">
  10580. <summary>
  10581. Probes a native pointer to a string in the UTF-8 encoding for its
  10582. terminating NUL character, within the specified length limit.
  10583. </summary>
  10584. <param name="pValue">
  10585. The native NUL-terminated string pointer.
  10586. </param>
  10587. <param name="limit">
  10588. The maximum length of the native string, in bytes.
  10589. </param>
  10590. <returns>
  10591. The length of the native string, in bytes -OR- zero if the length
  10592. could not be determined.
  10593. </returns>
  10594. </member>
  10595. <member name="M:System.Data.SQLite.SQLiteString.StringFromUtf8IntPtr(System.IntPtr)">
  10596. <summary>
  10597. Converts the specified native NUL-terminated UTF-8 string pointer
  10598. into a managed string.
  10599. </summary>
  10600. <param name="pValue">
  10601. The native NUL-terminated UTF-8 string pointer.
  10602. </param>
  10603. <returns>
  10604. The managed string or null upon failure.
  10605. </returns>
  10606. </member>
  10607. <member name="M:System.Data.SQLite.SQLiteString.StringFromUtf8IntPtr(System.IntPtr,System.Int32)">
  10608. <summary>
  10609. Converts the specified native UTF-8 string pointer of the specified
  10610. length into a managed string.
  10611. </summary>
  10612. <param name="pValue">
  10613. The native UTF-8 string pointer.
  10614. </param>
  10615. <param name="length">
  10616. The length of the native string, in bytes.
  10617. </param>
  10618. <returns>
  10619. The managed string or null upon failure.
  10620. </returns>
  10621. </member>
  10622. <member name="M:System.Data.SQLite.SQLiteString.Utf8IntPtrFromString(System.String)">
  10623. <summary>
  10624. Converts the specified managed string into a native NUL-terminated
  10625. UTF-8 string pointer using memory obtained from the SQLite core
  10626. library.
  10627. </summary>
  10628. <param name="value">
  10629. The managed string to convert.
  10630. </param>
  10631. <returns>
  10632. The native NUL-terminated UTF-8 string pointer or
  10633. <see cref="F:System.IntPtr.Zero"/> upon failure.
  10634. </returns>
  10635. </member>
  10636. <member name="M:System.Data.SQLite.SQLiteString.StringArrayFromUtf8SizeAndIntPtr(System.Int32,System.IntPtr)">
  10637. <summary>
  10638. Converts a logical array of native NUL-terminated UTF-8 string
  10639. pointers into an array of managed strings.
  10640. </summary>
  10641. <param name="argc">
  10642. The number of elements in the logical array of native
  10643. NUL-terminated UTF-8 string pointers.
  10644. </param>
  10645. <param name="argv">
  10646. The native pointer to the logical array of native NUL-terminated
  10647. UTF-8 string pointers to convert.
  10648. </param>
  10649. <returns>
  10650. The array of managed strings or null upon failure.
  10651. </returns>
  10652. </member>
  10653. <member name="M:System.Data.SQLite.SQLiteString.Utf8IntPtrArrayFromStringArray(System.String[])">
  10654. <summary>
  10655. Converts an array of managed strings into an array of native
  10656. NUL-terminated UTF-8 string pointers.
  10657. </summary>
  10658. <param name="values">
  10659. The array of managed strings to convert.
  10660. </param>
  10661. <returns>
  10662. The array of native NUL-terminated UTF-8 string pointers or null
  10663. upon failure.
  10664. </returns>
  10665. </member>
  10666. <member name="T:System.Data.SQLite.SQLiteBytes">
  10667. <summary>
  10668. This class contains static methods that are used to deal with native
  10669. pointers to memory blocks that logically contain arrays of bytes to be
  10670. used with the SQLite core library.
  10671. </summary>
  10672. </member>
  10673. <member name="M:System.Data.SQLite.SQLiteBytes.FromIntPtr(System.IntPtr,System.Int32)">
  10674. <summary>
  10675. Converts a native pointer to a logical array of bytes of the
  10676. specified length into a managed byte array.
  10677. </summary>
  10678. <param name="pValue">
  10679. The native pointer to the logical array of bytes to convert.
  10680. </param>
  10681. <param name="length">
  10682. The length, in bytes, of the logical array of bytes to convert.
  10683. </param>
  10684. <returns>
  10685. The managed byte array or null upon failure.
  10686. </returns>
  10687. </member>
  10688. <member name="M:System.Data.SQLite.SQLiteBytes.ToIntPtr(System.Byte[])">
  10689. <summary>
  10690. Converts a managed byte array into a native pointer to a logical
  10691. array of bytes.
  10692. </summary>
  10693. <param name="value">
  10694. The managed byte array to convert.
  10695. </param>
  10696. <returns>
  10697. The native pointer to a logical byte array or null upon failure.
  10698. </returns>
  10699. </member>
  10700. <member name="T:System.Data.SQLite.SQLiteMarshal">
  10701. <summary>
  10702. This class contains static methods that are used to perform several
  10703. low-level data marshalling tasks between native and managed code.
  10704. </summary>
  10705. </member>
  10706. <member name="M:System.Data.SQLite.SQLiteMarshal.IntPtrForOffset(System.IntPtr,System.Int32)">
  10707. <summary>
  10708. Returns a new <see cref="T:System.IntPtr"/> object instance based on the
  10709. specified <see cref="T:System.IntPtr"/> object instance and an integer
  10710. offset.
  10711. </summary>
  10712. <param name="pointer">
  10713. The <see cref="T:System.IntPtr"/> object instance representing the base
  10714. memory location.
  10715. </param>
  10716. <param name="offset">
  10717. The integer offset from the base memory location that the new
  10718. <see cref="T:System.IntPtr"/> object instance should point to.
  10719. </param>
  10720. <returns>
  10721. The new <see cref="T:System.IntPtr"/> object instance.
  10722. </returns>
  10723. </member>
  10724. <member name="M:System.Data.SQLite.SQLiteMarshal.RoundUp(System.Int32,System.Int32)">
  10725. <summary>
  10726. Rounds up an integer size to the next multiple of the alignment.
  10727. </summary>
  10728. <param name="size">
  10729. The size, in bytes, to be rounded up.
  10730. </param>
  10731. <param name="alignment">
  10732. The required alignment for the return value.
  10733. </param>
  10734. <returns>
  10735. The size, in bytes, rounded up to the next multiple of the
  10736. alignment. This value may end up being the same as the original
  10737. size.
  10738. </returns>
  10739. </member>
  10740. <member name="M:System.Data.SQLite.SQLiteMarshal.NextOffsetOf(System.Int32,System.Int32,System.Int32)">
  10741. <summary>
  10742. Determines the offset, in bytes, of the next structure member.
  10743. </summary>
  10744. <param name="offset">
  10745. The offset, in bytes, of the current structure member.
  10746. </param>
  10747. <param name="size">
  10748. The size, in bytes, of the current structure member.
  10749. </param>
  10750. <param name="alignment">
  10751. The alignment, in bytes, of the next structure member.
  10752. </param>
  10753. <returns>
  10754. The offset, in bytes, of the next structure member.
  10755. </returns>
  10756. </member>
  10757. <member name="M:System.Data.SQLite.SQLiteMarshal.ReadInt32(System.IntPtr,System.Int32)">
  10758. <summary>
  10759. Reads a <see cref="T:System.Int32"/> value from the specified memory
  10760. location.
  10761. </summary>
  10762. <param name="pointer">
  10763. The <see cref="T:System.IntPtr"/> object instance representing the base
  10764. memory location.
  10765. </param>
  10766. <param name="offset">
  10767. The integer offset from the base memory location where the
  10768. <see cref="T:System.Int32"/> value to be read is located.
  10769. </param>
  10770. <returns>
  10771. The <see cref="T:System.Int32"/> value at the specified memory location.
  10772. </returns>
  10773. </member>
  10774. <member name="M:System.Data.SQLite.SQLiteMarshal.ReadDouble(System.IntPtr,System.Int32)">
  10775. <summary>
  10776. Reads a <see cref="T:System.Double"/> value from the specified memory
  10777. location.
  10778. </summary>
  10779. <param name="pointer">
  10780. The <see cref="T:System.IntPtr"/> object instance representing the base
  10781. memory location.
  10782. </param>
  10783. <param name="offset">
  10784. The integer offset from the base memory location where the
  10785. <see cref="T:System.Double"/> to be read is located.
  10786. </param>
  10787. <returns>
  10788. The <see cref="T:System.Double"/> value at the specified memory location.
  10789. </returns>
  10790. </member>
  10791. <member name="M:System.Data.SQLite.SQLiteMarshal.ReadIntPtr(System.IntPtr,System.Int32)">
  10792. <summary>
  10793. Reads an <see cref="T:System.IntPtr"/> value from the specified memory
  10794. location.
  10795. </summary>
  10796. <param name="pointer">
  10797. The <see cref="T:System.IntPtr"/> object instance representing the base
  10798. memory location.
  10799. </param>
  10800. <param name="offset">
  10801. The integer offset from the base memory location where the
  10802. <see cref="T:System.IntPtr"/> value to be read is located.
  10803. </param>
  10804. <returns>
  10805. The <see cref="T:System.IntPtr"/> value at the specified memory location.
  10806. </returns>
  10807. </member>
  10808. <member name="M:System.Data.SQLite.SQLiteMarshal.WriteInt32(System.IntPtr,System.Int32,System.Int32)">
  10809. <summary>
  10810. Writes an <see cref="T:System.Int32"/> value to the specified memory
  10811. location.
  10812. </summary>
  10813. <param name="pointer">
  10814. The <see cref="T:System.IntPtr"/> object instance representing the base
  10815. memory location.
  10816. </param>
  10817. <param name="offset">
  10818. The integer offset from the base memory location where the
  10819. <see cref="T:System.Int32"/> value to be written is located.
  10820. </param>
  10821. <param name="value">
  10822. The <see cref="T:System.Int32"/> value to write.
  10823. </param>
  10824. </member>
  10825. <member name="M:System.Data.SQLite.SQLiteMarshal.WriteInt64(System.IntPtr,System.Int32,System.Int64)">
  10826. <summary>
  10827. Writes an <see cref="T:System.Int64"/> value to the specified memory
  10828. location.
  10829. </summary>
  10830. <param name="pointer">
  10831. The <see cref="T:System.IntPtr"/> object instance representing the base
  10832. memory location.
  10833. </param>
  10834. <param name="offset">
  10835. The integer offset from the base memory location where the
  10836. <see cref="T:System.Int64"/> value to be written is located.
  10837. </param>
  10838. <param name="value">
  10839. The <see cref="T:System.Int64"/> value to write.
  10840. </param>
  10841. </member>
  10842. <member name="M:System.Data.SQLite.SQLiteMarshal.WriteDouble(System.IntPtr,System.Int32,System.Double)">
  10843. <summary>
  10844. Writes a <see cref="T:System.Double"/> value to the specified memory
  10845. location.
  10846. </summary>
  10847. <param name="pointer">
  10848. The <see cref="T:System.IntPtr"/> object instance representing the base
  10849. memory location.
  10850. </param>
  10851. <param name="offset">
  10852. The integer offset from the base memory location where the
  10853. <see cref="T:System.Double"/> value to be written is located.
  10854. </param>
  10855. <param name="value">
  10856. The <see cref="T:System.Double"/> value to write.
  10857. </param>
  10858. </member>
  10859. <member name="M:System.Data.SQLite.SQLiteMarshal.WriteIntPtr(System.IntPtr,System.Int32,System.IntPtr)">
  10860. <summary>
  10861. Writes a <see cref="T:System.IntPtr"/> value to the specified memory
  10862. location.
  10863. </summary>
  10864. <param name="pointer">
  10865. The <see cref="T:System.IntPtr"/> object instance representing the base
  10866. memory location.
  10867. </param>
  10868. <param name="offset">
  10869. The integer offset from the base memory location where the
  10870. <see cref="T:System.IntPtr"/> value to be written is located.
  10871. </param>
  10872. <param name="value">
  10873. The <see cref="T:System.IntPtr"/> value to write.
  10874. </param>
  10875. </member>
  10876. <member name="M:System.Data.SQLite.SQLiteMarshal.GetHashCode(System.Object,System.Boolean)">
  10877. <summary>
  10878. Generates a hash code value for the object.
  10879. </summary>
  10880. <param name="value">
  10881. The object instance used to calculate the hash code.
  10882. </param>
  10883. <param name="identity">
  10884. Non-zero if different object instances with the same value should
  10885. generate different hash codes, where applicable. This parameter
  10886. has no effect on the .NET Compact Framework.
  10887. </param>
  10888. <returns>
  10889. The hash code value -OR- zero if the object is null.
  10890. </returns>
  10891. </member>
  10892. <member name="T:System.Data.SQLite.SQLiteModule">
  10893. <summary>
  10894. This class represents a managed virtual table module implementation.
  10895. It is not sealed and must be used as the base class for any
  10896. user-defined virtual table module classes implemented in managed code.
  10897. </summary>
  10898. </member>
  10899. <member name="F:System.Data.SQLite.SQLiteModule.DefaultModuleVersion">
  10900. <summary>
  10901. The default version of the native sqlite3_module structure in use.
  10902. </summary>
  10903. </member>
  10904. <member name="F:System.Data.SQLite.SQLiteModule.nativeModule">
  10905. <summary>
  10906. This field is used to store the native sqlite3_module structure
  10907. associated with this object instance.
  10908. </summary>
  10909. </member>
  10910. <member name="F:System.Data.SQLite.SQLiteModule.destroyModule">
  10911. <summary>
  10912. This field is used to store the destructor delegate to be passed to
  10913. the SQLite core library via the sqlite3_create_disposable_module()
  10914. function.
  10915. </summary>
  10916. </member>
  10917. <member name="F:System.Data.SQLite.SQLiteModule.disposableModule">
  10918. <summary>
  10919. This field is used to store a pointer to the native sqlite3_module
  10920. structure returned by the sqlite3_create_disposable_module
  10921. function.
  10922. </summary>
  10923. </member>
  10924. <member name="F:System.Data.SQLite.SQLiteModule.tables">
  10925. <summary>
  10926. This field is used to store the virtual table instances associated
  10927. with this module. The native pointer to the sqlite3_vtab derived
  10928. structure is used to key into this collection.
  10929. </summary>
  10930. </member>
  10931. <member name="F:System.Data.SQLite.SQLiteModule.cursors">
  10932. <summary>
  10933. This field is used to store the virtual table cursor instances
  10934. associated with this module. The native pointer to the
  10935. sqlite3_vtab_cursor derived structure is used to key into this
  10936. collection.
  10937. </summary>
  10938. </member>
  10939. <member name="F:System.Data.SQLite.SQLiteModule.functions">
  10940. <summary>
  10941. This field is used to store the virtual table function instances
  10942. associated with this module. The case-insensitive function name
  10943. and the number of arguments (with -1 meaning "any") are used to
  10944. construct the string that is used to key into this collection.
  10945. </summary>
  10946. </member>
  10947. <member name="M:System.Data.SQLite.SQLiteModule.#ctor(System.String)">
  10948. <summary>
  10949. Constructs an instance of this class.
  10950. </summary>
  10951. <param name="name">
  10952. The name of the module. This parameter cannot be null.
  10953. </param>
  10954. </member>
  10955. <member name="M:System.Data.SQLite.SQLiteModule.CreateDisposableModule(System.IntPtr)">
  10956. <summary>
  10957. Calls the native SQLite core library in order to create a new
  10958. disposable module containing the implementation of a virtual table.
  10959. </summary>
  10960. <param name="pDb">
  10961. The native database connection pointer to use.
  10962. </param>
  10963. <returns>
  10964. Non-zero upon success.
  10965. </returns>
  10966. </member>
  10967. <member name="M:System.Data.SQLite.SQLiteModule.xDestroyModule(System.IntPtr)">
  10968. <summary>
  10969. This method is called by the SQLite core library when the native
  10970. module associated with this object instance is being destroyed due
  10971. to its parent connection being closed. It may also be called by
  10972. the "vtshim" module if/when the sqlite3_dispose_module() function
  10973. is called.
  10974. </summary>
  10975. <param name="pClientData">
  10976. The native user-data pointer associated with this module, as it was
  10977. provided to the SQLite core library when the native module instance
  10978. was created.
  10979. </param>
  10980. </member>
  10981. <member name="M:System.Data.SQLite.SQLiteModule.AllocateNativeModule">
  10982. <summary>
  10983. Creates and returns the native sqlite_module structure using the
  10984. configured (or default) <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  10985. interface implementation.
  10986. </summary>
  10987. <returns>
  10988. The native sqlite_module structure using the configured (or
  10989. default) <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface
  10990. implementation.
  10991. </returns>
  10992. </member>
  10993. <member name="M:System.Data.SQLite.SQLiteModule.AllocateNativeModule(System.Data.SQLite.ISQLiteNativeModule)">
  10994. <summary>
  10995. Creates and returns the native sqlite_module structure using the
  10996. specified <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface
  10997. implementation.
  10998. </summary>
  10999. <param name="module">
  11000. The <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation to
  11001. use.
  11002. </param>
  11003. <returns>
  11004. The native sqlite_module structure using the specified
  11005. <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation.
  11006. </returns>
  11007. </member>
  11008. <member name="M:System.Data.SQLite.SQLiteModule.CopyNativeModule(System.Data.SQLite.UnsafeNativeMethods.sqlite3_module)">
  11009. <summary>
  11010. Creates a copy of the specified
  11011. <see cref="T:System.Data.SQLite.UnsafeNativeMethods.sqlite3_module"/> object instance,
  11012. using default implementations for the contained delegates when
  11013. necessary.
  11014. </summary>
  11015. <param name="module">
  11016. The <see cref="T:System.Data.SQLite.UnsafeNativeMethods.sqlite3_module"/> object
  11017. instance to copy.
  11018. </param>
  11019. <returns>
  11020. The new <see cref="T:System.Data.SQLite.UnsafeNativeMethods.sqlite3_module"/> object
  11021. instance.
  11022. </returns>
  11023. </member>
  11024. <member name="M:System.Data.SQLite.SQLiteModule.CreateOrConnect(System.Boolean,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  11025. <summary>
  11026. Calls one of the virtual table initialization methods.
  11027. </summary>
  11028. <param name="create">
  11029. Non-zero to call the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/>
  11030. method; otherwise, the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/>
  11031. method will be called.
  11032. </param>
  11033. <param name="pDb">
  11034. The native database connection handle.
  11035. </param>
  11036. <param name="pAux">
  11037. The original native pointer value that was provided to the
  11038. sqlite3_create_module(), sqlite3_create_module_v2() or
  11039. sqlite3_create_disposable_module() functions.
  11040. </param>
  11041. <param name="argc">
  11042. The number of arguments from the CREATE VIRTUAL TABLE statement.
  11043. </param>
  11044. <param name="argv">
  11045. The array of string arguments from the CREATE VIRTUAL TABLE
  11046. statement.
  11047. </param>
  11048. <param name="pVtab">
  11049. Upon success, this parameter must be modified to point to the newly
  11050. created native sqlite3_vtab derived structure.
  11051. </param>
  11052. <param name="pError">
  11053. Upon failure, this parameter must be modified to point to the error
  11054. message, with the underlying memory having been obtained from the
  11055. sqlite3_malloc() function.
  11056. </param>
  11057. <returns>
  11058. A standard SQLite return code.
  11059. </returns>
  11060. </member>
  11061. <member name="M:System.Data.SQLite.SQLiteModule.DestroyOrDisconnect(System.Boolean,System.IntPtr)">
  11062. <summary>
  11063. Calls one of the virtual table finalization methods.
  11064. </summary>
  11065. <param name="destroy">
  11066. Non-zero to call the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/>
  11067. method; otherwise, the
  11068. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method will be
  11069. called.
  11070. </param>
  11071. <param name="pVtab">
  11072. The native pointer to the sqlite3_vtab derived structure.
  11073. </param>
  11074. <returns>
  11075. A standard SQLite return code.
  11076. </returns>
  11077. </member>
  11078. <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteModule,System.IntPtr,System.Boolean,System.Boolean,System.String)">
  11079. <summary>
  11080. Arranges for the specified error message to be placed into the
  11081. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11082. existing error message, if any.
  11083. </summary>
  11084. <param name="module">
  11085. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  11086. </param>
  11087. <param name="pVtab">
  11088. The native pointer to the sqlite3_vtab derived structure.
  11089. </param>
  11090. <param name="logErrors">
  11091. Non-zero if this error message should also be logged using the
  11092. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11093. </param>
  11094. <param name="logExceptions">
  11095. Non-zero if caught exceptions should be logged using the
  11096. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11097. </param>
  11098. <param name="error">
  11099. The error message.
  11100. </param>
  11101. <returns>
  11102. Non-zero upon success.
  11103. </returns>
  11104. </member>
  11105. <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteVirtualTable,System.Boolean,System.Boolean,System.String)">
  11106. <summary>
  11107. Arranges for the specified error message to be placed into the
  11108. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11109. existing error message, if any.
  11110. </summary>
  11111. <param name="module">
  11112. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  11113. </param>
  11114. <param name="table">
  11115. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance used to
  11116. lookup the native pointer to the sqlite3_vtab derived structure.
  11117. </param>
  11118. <param name="logErrors">
  11119. Non-zero if this error message should also be logged using the
  11120. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11121. </param>
  11122. <param name="logExceptions">
  11123. Non-zero if caught exceptions should be logged using the
  11124. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11125. </param>
  11126. <param name="error">
  11127. The error message.
  11128. </param>
  11129. <returns>
  11130. Non-zero upon success.
  11131. </returns>
  11132. </member>
  11133. <member name="M:System.Data.SQLite.SQLiteModule.SetCursorError(System.Data.SQLite.SQLiteModule,System.IntPtr,System.Boolean,System.Boolean,System.String)">
  11134. <summary>
  11135. Arranges for the specified error message to be placed into the
  11136. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11137. existing error message, if any.
  11138. </summary>
  11139. <param name="module">
  11140. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  11141. </param>
  11142. <param name="pCursor">
  11143. The native pointer to the sqlite3_vtab_cursor derived structure
  11144. used to get the native pointer to the sqlite3_vtab derived
  11145. structure.
  11146. </param>
  11147. <param name="logErrors">
  11148. Non-zero if this error message should also be logged using the
  11149. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11150. </param>
  11151. <param name="logExceptions">
  11152. Non-zero if caught exceptions should be logged using the
  11153. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11154. </param>
  11155. <param name="error">
  11156. The error message.
  11157. </param>
  11158. <returns>
  11159. Non-zero upon success.
  11160. </returns>
  11161. </member>
  11162. <member name="M:System.Data.SQLite.SQLiteModule.SetCursorError(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteVirtualTableCursor,System.Boolean,System.Boolean,System.String)">
  11163. <summary>
  11164. Arranges for the specified error message to be placed into the
  11165. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11166. existing error message, if any.
  11167. </summary>
  11168. <param name="module">
  11169. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  11170. </param>
  11171. <param name="cursor">
  11172. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance used to
  11173. lookup the native pointer to the sqlite3_vtab derived structure.
  11174. </param>
  11175. <param name="logErrors">
  11176. Non-zero if this error message should also be logged using the
  11177. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11178. </param>
  11179. <param name="logExceptions">
  11180. Non-zero if caught exceptions should be logged using the
  11181. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11182. </param>
  11183. <param name="error">
  11184. The error message.
  11185. </param>
  11186. <returns>
  11187. Non-zero upon success.
  11188. </returns>
  11189. </member>
  11190. <member name="M:System.Data.SQLite.SQLiteModule.GetNativeModuleImpl">
  11191. <summary>
  11192. Gets and returns the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface
  11193. implementation to be used when creating the native sqlite3_module
  11194. structure. Derived classes may override this method to supply an
  11195. alternate implementation for the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  11196. interface.
  11197. </summary>
  11198. <returns>
  11199. The <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation to
  11200. be used when populating the native sqlite3_module structure. If
  11201. the returned value is null, the private methods provided by the
  11202. <see cref="T:System.Data.SQLite.SQLiteModule"/> class and relating to the
  11203. <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface will be used to
  11204. create the necessary delegates.
  11205. </returns>
  11206. </member>
  11207. <member name="M:System.Data.SQLite.SQLiteModule.CreateNativeModuleImpl">
  11208. <summary>
  11209. Creates and returns the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  11210. interface implementation corresponding to the current
  11211. <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance.
  11212. </summary>
  11213. <returns>
  11214. The <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation
  11215. corresponding to the current <see cref="T:System.Data.SQLite.SQLiteModule"/> object
  11216. instance.
  11217. </returns>
  11218. </member>
  11219. <member name="M:System.Data.SQLite.SQLiteModule.AllocateTable">
  11220. <summary>
  11221. Allocates a native sqlite3_vtab derived structure and returns a
  11222. native pointer to it.
  11223. </summary>
  11224. <returns>
  11225. A native pointer to a native sqlite3_vtab derived structure.
  11226. </returns>
  11227. </member>
  11228. <member name="M:System.Data.SQLite.SQLiteModule.ZeroTable(System.IntPtr)">
  11229. <summary>
  11230. Zeros out the fields of a native sqlite3_vtab derived structure.
  11231. </summary>
  11232. <param name="pVtab">
  11233. The native pointer to the native sqlite3_vtab derived structure to
  11234. zero.
  11235. </param>
  11236. </member>
  11237. <member name="M:System.Data.SQLite.SQLiteModule.FreeTable(System.IntPtr)">
  11238. <summary>
  11239. Frees a native sqlite3_vtab structure using the provided native
  11240. pointer to it.
  11241. </summary>
  11242. <param name="pVtab">
  11243. A native pointer to a native sqlite3_vtab derived structure.
  11244. </param>
  11245. </member>
  11246. <member name="M:System.Data.SQLite.SQLiteModule.AllocateCursor">
  11247. <summary>
  11248. Allocates a native sqlite3_vtab_cursor derived structure and
  11249. returns a native pointer to it.
  11250. </summary>
  11251. <returns>
  11252. A native pointer to a native sqlite3_vtab_cursor derived structure.
  11253. </returns>
  11254. </member>
  11255. <member name="M:System.Data.SQLite.SQLiteModule.FreeCursor(System.IntPtr)">
  11256. <summary>
  11257. Frees a native sqlite3_vtab_cursor structure using the provided
  11258. native pointer to it.
  11259. </summary>
  11260. <param name="pCursor">
  11261. A native pointer to a native sqlite3_vtab_cursor derived structure.
  11262. </param>
  11263. </member>
  11264. <member name="M:System.Data.SQLite.SQLiteModule.TableFromCursor(System.Data.SQLite.SQLiteModule,System.IntPtr)">
  11265. <summary>
  11266. Reads and returns the native pointer to the sqlite3_vtab derived
  11267. structure based on the native pointer to the sqlite3_vtab_cursor
  11268. derived structure.
  11269. </summary>
  11270. <param name="module">
  11271. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  11272. </param>
  11273. <param name="pCursor">
  11274. The native pointer to the sqlite3_vtab_cursor derived structure
  11275. from which to read the native pointer to the sqlite3_vtab derived
  11276. structure.
  11277. </param>
  11278. <returns>
  11279. The native pointer to the sqlite3_vtab derived structure -OR-
  11280. <see cref="F:System.IntPtr.Zero"/> if it cannot be determined.
  11281. </returns>
  11282. </member>
  11283. <member name="M:System.Data.SQLite.SQLiteModule.TableFromCursor(System.IntPtr)">
  11284. <summary>
  11285. Reads and returns the native pointer to the sqlite3_vtab derived
  11286. structure based on the native pointer to the sqlite3_vtab_cursor
  11287. derived structure.
  11288. </summary>
  11289. <param name="pCursor">
  11290. The native pointer to the sqlite3_vtab_cursor derived structure
  11291. from which to read the native pointer to the sqlite3_vtab derived
  11292. structure.
  11293. </param>
  11294. <returns>
  11295. The native pointer to the sqlite3_vtab derived structure -OR-
  11296. <see cref="F:System.IntPtr.Zero"/> if it cannot be determined.
  11297. </returns>
  11298. </member>
  11299. <member name="M:System.Data.SQLite.SQLiteModule.TableFromIntPtr(System.IntPtr)">
  11300. <summary>
  11301. Looks up and returns the <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object
  11302. instance based on the native pointer to the sqlite3_vtab derived
  11303. structure.
  11304. </summary>
  11305. <param name="pVtab">
  11306. The native pointer to the sqlite3_vtab derived structure.
  11307. </param>
  11308. <returns>
  11309. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance or null if
  11310. the corresponding one cannot be found.
  11311. </returns>
  11312. </member>
  11313. <member name="M:System.Data.SQLite.SQLiteModule.TableToIntPtr(System.Data.SQLite.SQLiteVirtualTable)">
  11314. <summary>
  11315. Allocates and returns a native pointer to a sqlite3_vtab derived
  11316. structure and creates an association between it and the specified
  11317. <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance.
  11318. </summary>
  11319. <param name="table">
  11320. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance to be used
  11321. when creating the association.
  11322. </param>
  11323. <returns>
  11324. The native pointer to a sqlite3_vtab derived structure or
  11325. <see cref="F:System.IntPtr.Zero"/> if the method fails for any reason.
  11326. </returns>
  11327. </member>
  11328. <member name="M:System.Data.SQLite.SQLiteModule.CursorFromIntPtr(System.IntPtr,System.IntPtr)">
  11329. <summary>
  11330. Looks up and returns the <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/>
  11331. object instance based on the native pointer to the
  11332. sqlite3_vtab_cursor derived structure.
  11333. </summary>
  11334. <param name="pVtab">
  11335. The native pointer to the sqlite3_vtab derived structure.
  11336. </param>
  11337. <param name="pCursor">
  11338. The native pointer to the sqlite3_vtab_cursor derived structure.
  11339. </param>
  11340. <returns>
  11341. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance or null
  11342. if the corresponding one cannot be found.
  11343. </returns>
  11344. </member>
  11345. <member name="M:System.Data.SQLite.SQLiteModule.CursorToIntPtr(System.Data.SQLite.SQLiteVirtualTableCursor)">
  11346. <summary>
  11347. Allocates and returns a native pointer to a sqlite3_vtab_cursor
  11348. derived structure and creates an association between it and the
  11349. specified <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance.
  11350. </summary>
  11351. <param name="cursor">
  11352. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance to be
  11353. used when creating the association.
  11354. </param>
  11355. <returns>
  11356. The native pointer to a sqlite3_vtab_cursor derived structure or
  11357. <see cref="F:System.IntPtr.Zero"/> if the method fails for any reason.
  11358. </returns>
  11359. </member>
  11360. <member name="M:System.Data.SQLite.SQLiteModule.GetFunctionKey(System.Int32,System.String,System.Data.SQLite.SQLiteFunction)">
  11361. <summary>
  11362. Deterimines the key that should be used to identify and store the
  11363. <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance for the virtual table
  11364. (i.e. to be returned via the
  11365. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method).
  11366. </summary>
  11367. <param name="argumentCount">
  11368. The number of arguments to the virtual table function.
  11369. </param>
  11370. <param name="name">
  11371. The name of the virtual table function.
  11372. </param>
  11373. <param name="function">
  11374. The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance associated with
  11375. this virtual table function.
  11376. </param>
  11377. <returns>
  11378. The string that should be used to identify and store the virtual
  11379. table function instance. This method cannot return null. If null
  11380. is returned from this method, the behavior is undefined.
  11381. </returns>
  11382. </member>
  11383. <member name="M:System.Data.SQLite.SQLiteModule.DeclareTable(System.Data.SQLite.SQLiteConnection,System.String,System.String@)">
  11384. <summary>
  11385. Attempts to declare the schema for the virtual table using the
  11386. specified database connection.
  11387. </summary>
  11388. <param name="connection">
  11389. The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance to use when
  11390. declaring the schema of the virtual table. This parameter may not
  11391. be null.
  11392. </param>
  11393. <param name="sql">
  11394. The string containing the CREATE TABLE statement that completely
  11395. describes the schema for the virtual table. This parameter may not
  11396. be null.
  11397. </param>
  11398. <param name="error">
  11399. Upon failure, this parameter must be modified to contain an error
  11400. message.
  11401. </param>
  11402. <returns>
  11403. A standard SQLite return code.
  11404. </returns>
  11405. </member>
  11406. <member name="M:System.Data.SQLite.SQLiteModule.DeclareFunction(System.Data.SQLite.SQLiteConnection,System.Int32,System.String,System.String@)">
  11407. <summary>
  11408. Calls the native SQLite core library in order to declare a virtual
  11409. table function in response to a call into the
  11410. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  11411. or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table
  11412. methods.
  11413. </summary>
  11414. <param name="connection">
  11415. The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance to use when
  11416. declaring the schema of the virtual table.
  11417. </param>
  11418. <param name="argumentCount">
  11419. The number of arguments to the function being declared.
  11420. </param>
  11421. <param name="name">
  11422. The name of the function being declared.
  11423. </param>
  11424. <param name="error">
  11425. Upon success, the contents of this parameter are undefined. Upon
  11426. failure, it should contain an appropriate error message.
  11427. </param>
  11428. <returns>
  11429. A standard SQLite return code.
  11430. </returns>
  11431. </member>
  11432. <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.IntPtr,System.String)">
  11433. <summary>
  11434. Arranges for the specified error message to be placed into the
  11435. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11436. existing error message, if any.
  11437. </summary>
  11438. <param name="pVtab">
  11439. The native pointer to the sqlite3_vtab derived structure.
  11440. </param>
  11441. <param name="error">
  11442. The error message.
  11443. </param>
  11444. <returns>
  11445. Non-zero upon success.
  11446. </returns>
  11447. </member>
  11448. <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  11449. <summary>
  11450. Arranges for the specified error message to be placed into the
  11451. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11452. existing error message, if any.
  11453. </summary>
  11454. <param name="table">
  11455. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance used to
  11456. lookup the native pointer to the sqlite3_vtab derived structure.
  11457. </param>
  11458. <param name="error">
  11459. The error message.
  11460. </param>
  11461. <returns>
  11462. Non-zero upon success.
  11463. </returns>
  11464. </member>
  11465. <member name="M:System.Data.SQLite.SQLiteModule.SetCursorError(System.Data.SQLite.SQLiteVirtualTableCursor,System.String)">
  11466. <summary>
  11467. Arranges for the specified error message to be placed into the
  11468. zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11469. existing error message, if any.
  11470. </summary>
  11471. <param name="cursor">
  11472. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance used to
  11473. lookup the native pointer to the sqlite3_vtab derived structure.
  11474. </param>
  11475. <param name="error">
  11476. The error message.
  11477. </param>
  11478. <returns>
  11479. Non-zero upon success.
  11480. </returns>
  11481. </member>
  11482. <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedCost(System.Data.SQLite.SQLiteIndex,System.Nullable{System.Double})">
  11483. <summary>
  11484. Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11485. to contain the specified estimated cost.
  11486. </summary>
  11487. <param name="index">
  11488. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11489. </param>
  11490. <param name="estimatedCost">
  11491. The estimated cost value to use. Using a null value means that the
  11492. default value provided by the SQLite core library should be used.
  11493. </param>
  11494. <returns>
  11495. Non-zero upon success.
  11496. </returns>
  11497. </member>
  11498. <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedCost(System.Data.SQLite.SQLiteIndex)">
  11499. <summary>
  11500. Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11501. to contain the default estimated cost.
  11502. </summary>
  11503. <param name="index">
  11504. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11505. </param>
  11506. <returns>
  11507. Non-zero upon success.
  11508. </returns>
  11509. </member>
  11510. <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedRows(System.Data.SQLite.SQLiteIndex,System.Nullable{System.Int64})">
  11511. <summary>
  11512. Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11513. to contain the specified estimated rows.
  11514. </summary>
  11515. <param name="index">
  11516. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11517. </param>
  11518. <param name="estimatedRows">
  11519. The estimated rows value to use. Using a null value means that the
  11520. default value provided by the SQLite core library should be used.
  11521. </param>
  11522. <returns>
  11523. Non-zero upon success.
  11524. </returns>
  11525. </member>
  11526. <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedRows(System.Data.SQLite.SQLiteIndex)">
  11527. <summary>
  11528. Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11529. to contain the default estimated rows.
  11530. </summary>
  11531. <param name="index">
  11532. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11533. </param>
  11534. <returns>
  11535. Non-zero upon success.
  11536. </returns>
  11537. </member>
  11538. <member name="M:System.Data.SQLite.SQLiteModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  11539. <summary>
  11540. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11541. </summary>
  11542. <param name="pDb">
  11543. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11544. </param>
  11545. <param name="pAux">
  11546. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11547. </param>
  11548. <param name="argc">
  11549. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11550. </param>
  11551. <param name="argv">
  11552. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11553. </param>
  11554. <param name="pVtab">
  11555. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11556. </param>
  11557. <param name="pError">
  11558. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11559. </param>
  11560. <returns>
  11561. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11562. </returns>
  11563. </member>
  11564. <member name="M:System.Data.SQLite.SQLiteModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  11565. <summary>
  11566. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11567. </summary>
  11568. <param name="pDb">
  11569. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11570. </param>
  11571. <param name="pAux">
  11572. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11573. </param>
  11574. <param name="argc">
  11575. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11576. </param>
  11577. <param name="argv">
  11578. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11579. </param>
  11580. <param name="pVtab">
  11581. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11582. </param>
  11583. <param name="pError">
  11584. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11585. </param>
  11586. <returns>
  11587. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11588. </returns>
  11589. </member>
  11590. <member name="M:System.Data.SQLite.SQLiteModule.xBestIndex(System.IntPtr,System.IntPtr)">
  11591. <summary>
  11592. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11593. </summary>
  11594. <param name="pVtab">
  11595. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11596. </param>
  11597. <param name="pIndex">
  11598. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11599. </param>
  11600. <returns>
  11601. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11602. </returns>
  11603. </member>
  11604. <member name="M:System.Data.SQLite.SQLiteModule.xDisconnect(System.IntPtr)">
  11605. <summary>
  11606. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11607. </summary>
  11608. <param name="pVtab">
  11609. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11610. </param>
  11611. <returns>
  11612. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11613. </returns>
  11614. </member>
  11615. <member name="M:System.Data.SQLite.SQLiteModule.xDestroy(System.IntPtr)">
  11616. <summary>
  11617. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11618. </summary>
  11619. <param name="pVtab">
  11620. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11621. </param>
  11622. <returns>
  11623. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11624. </returns>
  11625. </member>
  11626. <member name="M:System.Data.SQLite.SQLiteModule.xOpen(System.IntPtr,System.IntPtr@)">
  11627. <summary>
  11628. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11629. </summary>
  11630. <param name="pVtab">
  11631. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11632. </param>
  11633. <param name="pCursor">
  11634. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11635. </param>
  11636. <returns>
  11637. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11638. </returns>
  11639. </member>
  11640. <member name="M:System.Data.SQLite.SQLiteModule.xClose(System.IntPtr)">
  11641. <summary>
  11642. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11643. </summary>
  11644. <param name="pCursor">
  11645. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11646. </param>
  11647. <returns>
  11648. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11649. </returns>
  11650. </member>
  11651. <member name="M:System.Data.SQLite.SQLiteModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  11652. <summary>
  11653. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11654. </summary>
  11655. <param name="pCursor">
  11656. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11657. </param>
  11658. <param name="idxNum">
  11659. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11660. </param>
  11661. <param name="idxStr">
  11662. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11663. </param>
  11664. <param name="argc">
  11665. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11666. </param>
  11667. <param name="argv">
  11668. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11669. </param>
  11670. <returns>
  11671. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11672. </returns>
  11673. </member>
  11674. <member name="M:System.Data.SQLite.SQLiteModule.xNext(System.IntPtr)">
  11675. <summary>
  11676. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11677. </summary>
  11678. <param name="pCursor">
  11679. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11680. </param>
  11681. <returns>
  11682. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11683. </returns>
  11684. </member>
  11685. <member name="M:System.Data.SQLite.SQLiteModule.xEof(System.IntPtr)">
  11686. <summary>
  11687. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11688. </summary>
  11689. <param name="pCursor">
  11690. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11691. </param>
  11692. <returns>
  11693. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11694. </returns>
  11695. </member>
  11696. <member name="M:System.Data.SQLite.SQLiteModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)">
  11697. <summary>
  11698. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11699. </summary>
  11700. <param name="pCursor">
  11701. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11702. </param>
  11703. <param name="pContext">
  11704. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11705. </param>
  11706. <param name="index">
  11707. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11708. </param>
  11709. <returns>
  11710. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11711. </returns>
  11712. </member>
  11713. <member name="M:System.Data.SQLite.SQLiteModule.xRowId(System.IntPtr,System.Int64@)">
  11714. <summary>
  11715. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11716. </summary>
  11717. <param name="pCursor">
  11718. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11719. </param>
  11720. <param name="rowId">
  11721. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11722. </param>
  11723. <returns>
  11724. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11725. </returns>
  11726. </member>
  11727. <member name="M:System.Data.SQLite.SQLiteModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)">
  11728. <summary>
  11729. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11730. </summary>
  11731. <param name="pVtab">
  11732. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11733. </param>
  11734. <param name="argc">
  11735. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11736. </param>
  11737. <param name="argv">
  11738. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11739. </param>
  11740. <param name="rowId">
  11741. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11742. </param>
  11743. <returns>
  11744. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11745. </returns>
  11746. </member>
  11747. <member name="M:System.Data.SQLite.SQLiteModule.xBegin(System.IntPtr)">
  11748. <summary>
  11749. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11750. </summary>
  11751. <param name="pVtab">
  11752. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11753. </param>
  11754. <returns>
  11755. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11756. </returns>
  11757. </member>
  11758. <member name="M:System.Data.SQLite.SQLiteModule.xSync(System.IntPtr)">
  11759. <summary>
  11760. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11761. </summary>
  11762. <param name="pVtab">
  11763. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11764. </param>
  11765. <returns>
  11766. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11767. </returns>
  11768. </member>
  11769. <member name="M:System.Data.SQLite.SQLiteModule.xCommit(System.IntPtr)">
  11770. <summary>
  11771. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11772. </summary>
  11773. <param name="pVtab">
  11774. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11775. </param>
  11776. <returns>
  11777. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11778. </returns>
  11779. </member>
  11780. <member name="M:System.Data.SQLite.SQLiteModule.xRollback(System.IntPtr)">
  11781. <summary>
  11782. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11783. </summary>
  11784. <param name="pVtab">
  11785. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11786. </param>
  11787. <returns>
  11788. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11789. </returns>
  11790. </member>
  11791. <member name="M:System.Data.SQLite.SQLiteModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)">
  11792. <summary>
  11793. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11794. </summary>
  11795. <param name="pVtab">
  11796. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11797. </param>
  11798. <param name="nArg">
  11799. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11800. </param>
  11801. <param name="zName">
  11802. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11803. </param>
  11804. <param name="callback">
  11805. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11806. </param>
  11807. <param name="pClientData">
  11808. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11809. </param>
  11810. <returns>
  11811. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11812. </returns>
  11813. </member>
  11814. <member name="M:System.Data.SQLite.SQLiteModule.xRename(System.IntPtr,System.IntPtr)">
  11815. <summary>
  11816. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11817. </summary>
  11818. <param name="pVtab">
  11819. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11820. </param>
  11821. <param name="zNew">
  11822. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11823. </param>
  11824. <returns>
  11825. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11826. </returns>
  11827. </member>
  11828. <member name="M:System.Data.SQLite.SQLiteModule.xSavepoint(System.IntPtr,System.Int32)">
  11829. <summary>
  11830. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11831. </summary>
  11832. <param name="pVtab">
  11833. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11834. </param>
  11835. <param name="iSavepoint">
  11836. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11837. </param>
  11838. <returns>
  11839. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11840. </returns>
  11841. </member>
  11842. <member name="M:System.Data.SQLite.SQLiteModule.xRelease(System.IntPtr,System.Int32)">
  11843. <summary>
  11844. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11845. </summary>
  11846. <param name="pVtab">
  11847. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11848. </param>
  11849. <param name="iSavepoint">
  11850. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11851. </param>
  11852. <returns>
  11853. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11854. </returns>
  11855. </member>
  11856. <member name="M:System.Data.SQLite.SQLiteModule.xRollbackTo(System.IntPtr,System.Int32)">
  11857. <summary>
  11858. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11859. </summary>
  11860. <param name="pVtab">
  11861. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11862. </param>
  11863. <param name="iSavepoint">
  11864. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11865. </param>
  11866. <returns>
  11867. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11868. </returns>
  11869. </member>
  11870. <member name="M:System.Data.SQLite.SQLiteModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  11871. <summary>
  11872. This method is called in response to the
  11873. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11874. </summary>
  11875. <param name="connection">
  11876. The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  11877. the virtual table.
  11878. </param>
  11879. <param name="pClientData">
  11880. The native user-data pointer associated with this module, as it was
  11881. provided to the SQLite core library when the native module instance
  11882. was created.
  11883. </param>
  11884. <param name="arguments">
  11885. The module name, database name, virtual table name, and all other
  11886. arguments passed to the CREATE VIRTUAL TABLE statement.
  11887. </param>
  11888. <param name="table">
  11889. Upon success, this parameter must be modified to contain the
  11890. <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  11891. the virtual table.
  11892. </param>
  11893. <param name="error">
  11894. Upon failure, this parameter must be modified to contain an error
  11895. message.
  11896. </param>
  11897. <returns>
  11898. A standard SQLite return code.
  11899. </returns>
  11900. </member>
  11901. <member name="M:System.Data.SQLite.SQLiteModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  11902. <summary>
  11903. This method is called in response to the
  11904. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11905. </summary>
  11906. <param name="connection">
  11907. The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  11908. the virtual table.
  11909. </param>
  11910. <param name="pClientData">
  11911. The native user-data pointer associated with this module, as it was
  11912. provided to the SQLite core library when the native module instance
  11913. was created.
  11914. </param>
  11915. <param name="arguments">
  11916. The module name, database name, virtual table name, and all other
  11917. arguments passed to the CREATE VIRTUAL TABLE statement.
  11918. </param>
  11919. <param name="table">
  11920. Upon success, this parameter must be modified to contain the
  11921. <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  11922. the virtual table.
  11923. </param>
  11924. <param name="error">
  11925. Upon failure, this parameter must be modified to contain an error
  11926. message.
  11927. </param>
  11928. <returns>
  11929. A standard SQLite return code.
  11930. </returns>
  11931. </member>
  11932. <member name="M:System.Data.SQLite.SQLiteModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  11933. <summary>
  11934. This method is called in response to the
  11935. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11936. </summary>
  11937. <param name="table">
  11938. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11939. with this virtual table.
  11940. </param>
  11941. <param name="index">
  11942. The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  11943. data for the inputs and outputs relating to index selection.
  11944. </param>
  11945. <returns>
  11946. A standard SQLite return code.
  11947. </returns>
  11948. </member>
  11949. <member name="M:System.Data.SQLite.SQLiteModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  11950. <summary>
  11951. This method is called in response to the
  11952. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11953. </summary>
  11954. <param name="table">
  11955. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11956. with this virtual table.
  11957. </param>
  11958. <returns>
  11959. A standard SQLite return code.
  11960. </returns>
  11961. </member>
  11962. <member name="M:System.Data.SQLite.SQLiteModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  11963. <summary>
  11964. This method is called in response to the
  11965. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11966. </summary>
  11967. <param name="table">
  11968. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11969. with this virtual table.
  11970. </param>
  11971. <returns>
  11972. A standard SQLite return code.
  11973. </returns>
  11974. </member>
  11975. <member name="M:System.Data.SQLite.SQLiteModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  11976. <summary>
  11977. This method is called in response to the
  11978. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11979. </summary>
  11980. <param name="table">
  11981. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11982. with this virtual table.
  11983. </param>
  11984. <param name="cursor">
  11985. Upon success, this parameter must be modified to contain the
  11986. <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance associated
  11987. with the newly opened virtual table cursor.
  11988. </param>
  11989. <returns>
  11990. A standard SQLite return code.
  11991. </returns>
  11992. </member>
  11993. <member name="M:System.Data.SQLite.SQLiteModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  11994. <summary>
  11995. This method is called in response to the
  11996. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11997. </summary>
  11998. <param name="cursor">
  11999. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  12000. associated with the previously opened virtual table cursor to be
  12001. used.
  12002. </param>
  12003. <returns>
  12004. A standard SQLite return code.
  12005. </returns>
  12006. </member>
  12007. <member name="M:System.Data.SQLite.SQLiteModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  12008. <summary>
  12009. This method is called in response to the
  12010. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12011. </summary>
  12012. <param name="cursor">
  12013. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  12014. associated with the previously opened virtual table cursor to be
  12015. used.
  12016. </param>
  12017. <param name="indexNumber">
  12018. Number used to help identify the selected index.
  12019. </param>
  12020. <param name="indexString">
  12021. String used to help identify the selected index.
  12022. </param>
  12023. <param name="values">
  12024. The values corresponding to each column in the selected index.
  12025. </param>
  12026. <returns>
  12027. A standard SQLite return code.
  12028. </returns>
  12029. </member>
  12030. <member name="M:System.Data.SQLite.SQLiteModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  12031. <summary>
  12032. This method is called in response to the
  12033. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12034. </summary>
  12035. <param name="cursor">
  12036. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  12037. associated with the previously opened virtual table cursor to be
  12038. used.
  12039. </param>
  12040. <returns>
  12041. A standard SQLite return code.
  12042. </returns>
  12043. </member>
  12044. <member name="M:System.Data.SQLite.SQLiteModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  12045. <summary>
  12046. This method is called in response to the
  12047. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12048. </summary>
  12049. <param name="cursor">
  12050. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  12051. associated with the previously opened virtual table cursor to be
  12052. used.
  12053. </param>
  12054. <returns>
  12055. Non-zero if no more rows are available; zero otherwise.
  12056. </returns>
  12057. </member>
  12058. <member name="M:System.Data.SQLite.SQLiteModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  12059. <summary>
  12060. This method is called in response to the
  12061. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12062. </summary>
  12063. <param name="cursor">
  12064. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  12065. associated with the previously opened virtual table cursor to be
  12066. used.
  12067. </param>
  12068. <param name="context">
  12069. The <see cref="T:System.Data.SQLite.SQLiteContext"/> object instance to be used for
  12070. returning the specified column value to the SQLite core library.
  12071. </param>
  12072. <param name="index">
  12073. The zero-based index corresponding to the column containing the
  12074. value to be returned.
  12075. </param>
  12076. <returns>
  12077. A standard SQLite return code.
  12078. </returns>
  12079. </member>
  12080. <member name="M:System.Data.SQLite.SQLiteModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  12081. <summary>
  12082. This method is called in response to the
  12083. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12084. </summary>
  12085. <param name="cursor">
  12086. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  12087. associated with the previously opened virtual table cursor to be
  12088. used.
  12089. </param>
  12090. <param name="rowId">
  12091. Upon success, this parameter must be modified to contain the unique
  12092. integer row identifier for the current row for the specified cursor.
  12093. </param>
  12094. <returns>
  12095. A standard SQLite return code.
  12096. </returns>
  12097. </member>
  12098. <member name="M:System.Data.SQLite.SQLiteModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  12099. <summary>
  12100. This method is called in response to the
  12101. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12102. </summary>
  12103. <param name="table">
  12104. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12105. with this virtual table.
  12106. </param>
  12107. <param name="values">
  12108. The array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances containing
  12109. the new or modified column values, if any.
  12110. </param>
  12111. <param name="rowId">
  12112. Upon success, this parameter must be modified to contain the unique
  12113. integer row identifier for the row that was inserted, if any.
  12114. </param>
  12115. <returns>
  12116. A standard SQLite return code.
  12117. </returns>
  12118. </member>
  12119. <member name="M:System.Data.SQLite.SQLiteModule.Begin(System.Data.SQLite.SQLiteVirtualTable)">
  12120. <summary>
  12121. This method is called in response to the
  12122. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12123. </summary>
  12124. <param name="table">
  12125. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12126. with this virtual table.
  12127. </param>
  12128. <returns>
  12129. A standard SQLite return code.
  12130. </returns>
  12131. </member>
  12132. <member name="M:System.Data.SQLite.SQLiteModule.Sync(System.Data.SQLite.SQLiteVirtualTable)">
  12133. <summary>
  12134. This method is called in response to the
  12135. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12136. </summary>
  12137. <param name="table">
  12138. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12139. with this virtual table.
  12140. </param>
  12141. <returns>
  12142. A standard SQLite return code.
  12143. </returns>
  12144. </member>
  12145. <member name="M:System.Data.SQLite.SQLiteModule.Commit(System.Data.SQLite.SQLiteVirtualTable)">
  12146. <summary>
  12147. This method is called in response to the
  12148. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12149. </summary>
  12150. <param name="table">
  12151. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12152. with this virtual table.
  12153. </param>
  12154. <returns>
  12155. A standard SQLite return code.
  12156. </returns>
  12157. </member>
  12158. <member name="M:System.Data.SQLite.SQLiteModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)">
  12159. <summary>
  12160. This method is called in response to the
  12161. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12162. </summary>
  12163. <param name="table">
  12164. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12165. with this virtual table.
  12166. </param>
  12167. <returns>
  12168. A standard SQLite return code.
  12169. </returns>
  12170. </member>
  12171. <member name="M:System.Data.SQLite.SQLiteModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)">
  12172. <summary>
  12173. This method is called in response to the
  12174. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12175. </summary>
  12176. <param name="table">
  12177. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12178. with this virtual table.
  12179. </param>
  12180. <param name="argumentCount">
  12181. The number of arguments to the function being sought.
  12182. </param>
  12183. <param name="name">
  12184. The name of the function being sought.
  12185. </param>
  12186. <param name="function">
  12187. Upon success, this parameter must be modified to contain the
  12188. <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance responsible for
  12189. implementing the specified function.
  12190. </param>
  12191. <param name="pClientData">
  12192. Upon success, this parameter must be modified to contain the
  12193. native user-data pointer associated with
  12194. <paramref name="function"/>.
  12195. </param>
  12196. <returns>
  12197. Non-zero if the specified function was found; zero otherwise.
  12198. </returns>
  12199. </member>
  12200. <member name="M:System.Data.SQLite.SQLiteModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  12201. <summary>
  12202. This method is called in response to the
  12203. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12204. </summary>
  12205. <param name="table">
  12206. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12207. with this virtual table.
  12208. </param>
  12209. <param name="newName">
  12210. The new name for the virtual table.
  12211. </param>
  12212. <returns>
  12213. A standard SQLite return code.
  12214. </returns>
  12215. </member>
  12216. <member name="M:System.Data.SQLite.SQLiteModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  12217. <summary>
  12218. This method is called in response to the
  12219. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12220. </summary>
  12221. <param name="table">
  12222. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12223. with this virtual table.
  12224. </param>
  12225. <param name="savepoint">
  12226. This is an integer identifier under which the the current state of
  12227. the virtual table should be saved.
  12228. </param>
  12229. <returns>
  12230. A standard SQLite return code.
  12231. </returns>
  12232. </member>
  12233. <member name="M:System.Data.SQLite.SQLiteModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  12234. <summary>
  12235. This method is called in response to the
  12236. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12237. </summary>
  12238. <param name="table">
  12239. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12240. with this virtual table.
  12241. </param>
  12242. <param name="savepoint">
  12243. This is an integer used to indicate that any saved states with an
  12244. identifier greater than or equal to this should be deleted by the
  12245. virtual table.
  12246. </param>
  12247. <returns>
  12248. A standard SQLite return code.
  12249. </returns>
  12250. </member>
  12251. <member name="M:System.Data.SQLite.SQLiteModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  12252. <summary>
  12253. This method is called in response to the
  12254. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12255. </summary>
  12256. <param name="table">
  12257. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12258. with this virtual table.
  12259. </param>
  12260. <param name="savepoint">
  12261. This is an integer identifier used to specify a specific saved
  12262. state for the virtual table for it to restore itself back to, which
  12263. should also have the effect of deleting all saved states with an
  12264. integer identifier greater than this one.
  12265. </param>
  12266. <returns>
  12267. A standard SQLite return code.
  12268. </returns>
  12269. </member>
  12270. <member name="M:System.Data.SQLite.SQLiteModule.Dispose">
  12271. <summary>
  12272. Disposes of this object instance.
  12273. </summary>
  12274. </member>
  12275. <member name="M:System.Data.SQLite.SQLiteModule.CheckDisposed">
  12276. <summary>
  12277. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  12278. instance has been disposed.
  12279. </summary>
  12280. </member>
  12281. <member name="M:System.Data.SQLite.SQLiteModule.Dispose(System.Boolean)">
  12282. <summary>
  12283. Disposes of this object instance.
  12284. </summary>
  12285. <param name="disposing">
  12286. Non-zero if this method is being called from the
  12287. <see cref="M:System.Data.SQLite.SQLiteModule.Dispose"/> method. Zero if this method is being
  12288. called from the finalizer.
  12289. </param>
  12290. </member>
  12291. <member name="M:System.Data.SQLite.SQLiteModule.Finalize">
  12292. <summary>
  12293. Finalizes this object instance.
  12294. </summary>
  12295. </member>
  12296. <member name="P:System.Data.SQLite.SQLiteModule.LogErrorsNoThrow">
  12297. <summary>
  12298. Returns or sets a boolean value indicating whether virtual table
  12299. errors should be logged using the <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  12300. </summary>
  12301. </member>
  12302. <member name="P:System.Data.SQLite.SQLiteModule.LogExceptionsNoThrow">
  12303. <summary>
  12304. Returns or sets a boolean value indicating whether exceptions
  12305. caught in the
  12306. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method,
  12307. the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method,
  12308. the <see cref="M:System.Data.SQLite.SQLiteModule.SetTableError(System.IntPtr,System.String)"/> method,
  12309. the <see cref="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method,
  12310. and the <see cref="M:System.Data.SQLite.SQLiteModule.Dispose"/> method should be logged using the
  12311. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  12312. </summary>
  12313. </member>
  12314. <member name="P:System.Data.SQLite.SQLiteModule.LogErrors">
  12315. <summary>
  12316. Returns or sets a boolean value indicating whether virtual table
  12317. errors should be logged using the <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  12318. </summary>
  12319. </member>
  12320. <member name="P:System.Data.SQLite.SQLiteModule.LogExceptions">
  12321. <summary>
  12322. Returns or sets a boolean value indicating whether exceptions
  12323. caught in the
  12324. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method,
  12325. <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method, and the
  12326. <see cref="M:System.Data.SQLite.SQLiteModule.Dispose"/> method should be logged using the
  12327. <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  12328. </summary>
  12329. </member>
  12330. <member name="P:System.Data.SQLite.SQLiteModule.Declared">
  12331. <summary>
  12332. Returns non-zero if the schema for the virtual table has been
  12333. declared.
  12334. </summary>
  12335. </member>
  12336. <member name="P:System.Data.SQLite.SQLiteModule.Name">
  12337. <summary>
  12338. Returns the name of the module as it was registered with the SQLite
  12339. core library.
  12340. </summary>
  12341. </member>
  12342. <member name="T:System.Data.SQLite.SQLiteModule.SQLiteNativeModule">
  12343. <summary>
  12344. This class implements the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  12345. interface by forwarding those method calls to the
  12346. <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance it contains. If the
  12347. contained <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance is null, all
  12348. the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> methods simply generate an
  12349. error.
  12350. </summary>
  12351. </member>
  12352. <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.DefaultLogErrors">
  12353. <summary>
  12354. This is the value that is always used for the "logErrors"
  12355. parameter to the various static error handling methods provided
  12356. by the <see cref="T:System.Data.SQLite.SQLiteModule"/> class.
  12357. </summary>
  12358. </member>
  12359. <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.DefaultLogExceptions">
  12360. <summary>
  12361. This is the value that is always used for the "logExceptions"
  12362. parameter to the various static error handling methods provided
  12363. by the <see cref="T:System.Data.SQLite.SQLiteModule"/> class.
  12364. </summary>
  12365. </member>
  12366. <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.ModuleNotAvailableErrorMessage">
  12367. <summary>
  12368. This is the error message text used when the contained
  12369. <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance is not available
  12370. for any reason.
  12371. </summary>
  12372. </member>
  12373. <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.module">
  12374. <summary>
  12375. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance used to provide
  12376. an implementation of the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  12377. interface.
  12378. </summary>
  12379. </member>
  12380. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.#ctor(System.Data.SQLite.SQLiteModule)">
  12381. <summary>
  12382. Constructs an instance of this class.
  12383. </summary>
  12384. <param name="module">
  12385. The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance used to provide
  12386. an implementation of the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  12387. interface.
  12388. </param>
  12389. </member>
  12390. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.ModuleNotAvailableTableError(System.IntPtr)">
  12391. <summary>
  12392. Sets the table error message to one that indicates the native
  12393. module implementation is not available.
  12394. </summary>
  12395. <param name="pVtab">
  12396. The native pointer to the sqlite3_vtab derived structure.
  12397. </param>
  12398. <returns>
  12399. The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  12400. </returns>
  12401. </member>
  12402. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.ModuleNotAvailableCursorError(System.IntPtr)">
  12403. <summary>
  12404. Sets the table error message to one that indicates the native
  12405. module implementation is not available.
  12406. </summary>
  12407. <param name="pCursor">
  12408. The native pointer to the sqlite3_vtab_cursor derived
  12409. structure.
  12410. </param>
  12411. <returns>
  12412. The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  12413. </returns>
  12414. </member>
  12415. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  12416. <summary>
  12417. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12418. </summary>
  12419. <param name="pDb">
  12420. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12421. </param>
  12422. <param name="pAux">
  12423. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12424. </param>
  12425. <param name="argc">
  12426. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12427. </param>
  12428. <param name="argv">
  12429. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12430. </param>
  12431. <param name="pVtab">
  12432. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12433. </param>
  12434. <param name="pError">
  12435. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12436. </param>
  12437. <returns>
  12438. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12439. </returns>
  12440. </member>
  12441. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  12442. <summary>
  12443. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12444. </summary>
  12445. <param name="pDb">
  12446. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12447. </param>
  12448. <param name="pAux">
  12449. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12450. </param>
  12451. <param name="argc">
  12452. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12453. </param>
  12454. <param name="argv">
  12455. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12456. </param>
  12457. <param name="pVtab">
  12458. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12459. </param>
  12460. <param name="pError">
  12461. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12462. </param>
  12463. <returns>
  12464. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12465. </returns>
  12466. </member>
  12467. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)">
  12468. <summary>
  12469. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12470. </summary>
  12471. <param name="pVtab">
  12472. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12473. </param>
  12474. <param name="pIndex">
  12475. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12476. </param>
  12477. <returns>
  12478. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12479. </returns>
  12480. </member>
  12481. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xDisconnect(System.IntPtr)">
  12482. <summary>
  12483. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  12484. </summary>
  12485. <param name="pVtab">
  12486. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  12487. </param>
  12488. <returns>
  12489. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  12490. </returns>
  12491. </member>
  12492. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xDestroy(System.IntPtr)">
  12493. <summary>
  12494. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  12495. </summary>
  12496. <param name="pVtab">
  12497. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  12498. </param>
  12499. <returns>
  12500. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  12501. </returns>
  12502. </member>
  12503. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)">
  12504. <summary>
  12505. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12506. </summary>
  12507. <param name="pVtab">
  12508. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12509. </param>
  12510. <param name="pCursor">
  12511. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12512. </param>
  12513. <returns>
  12514. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12515. </returns>
  12516. </member>
  12517. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xClose(System.IntPtr)">
  12518. <summary>
  12519. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  12520. </summary>
  12521. <param name="pCursor">
  12522. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  12523. </param>
  12524. <returns>
  12525. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  12526. </returns>
  12527. </member>
  12528. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  12529. <summary>
  12530. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12531. </summary>
  12532. <param name="pCursor">
  12533. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12534. </param>
  12535. <param name="idxNum">
  12536. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12537. </param>
  12538. <param name="idxStr">
  12539. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12540. </param>
  12541. <param name="argc">
  12542. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12543. </param>
  12544. <param name="argv">
  12545. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12546. </param>
  12547. <returns>
  12548. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12549. </returns>
  12550. </member>
  12551. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xNext(System.IntPtr)">
  12552. <summary>
  12553. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12554. </summary>
  12555. <param name="pCursor">
  12556. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12557. </param>
  12558. <returns>
  12559. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12560. </returns>
  12561. </member>
  12562. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xEof(System.IntPtr)">
  12563. <summary>
  12564. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12565. </summary>
  12566. <param name="pCursor">
  12567. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12568. </param>
  12569. <returns>
  12570. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12571. </returns>
  12572. </member>
  12573. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)">
  12574. <summary>
  12575. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12576. </summary>
  12577. <param name="pCursor">
  12578. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12579. </param>
  12580. <param name="pContext">
  12581. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12582. </param>
  12583. <param name="index">
  12584. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12585. </param>
  12586. <returns>
  12587. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12588. </returns>
  12589. </member>
  12590. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)">
  12591. <summary>
  12592. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12593. </summary>
  12594. <param name="pCursor">
  12595. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12596. </param>
  12597. <param name="rowId">
  12598. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12599. </param>
  12600. <returns>
  12601. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12602. </returns>
  12603. </member>
  12604. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)">
  12605. <summary>
  12606. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12607. </summary>
  12608. <param name="pVtab">
  12609. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12610. </param>
  12611. <param name="argc">
  12612. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12613. </param>
  12614. <param name="argv">
  12615. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12616. </param>
  12617. <param name="rowId">
  12618. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12619. </param>
  12620. <returns>
  12621. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12622. </returns>
  12623. </member>
  12624. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xBegin(System.IntPtr)">
  12625. <summary>
  12626. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12627. </summary>
  12628. <param name="pVtab">
  12629. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12630. </param>
  12631. <returns>
  12632. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12633. </returns>
  12634. </member>
  12635. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xSync(System.IntPtr)">
  12636. <summary>
  12637. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12638. </summary>
  12639. <param name="pVtab">
  12640. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12641. </param>
  12642. <returns>
  12643. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12644. </returns>
  12645. </member>
  12646. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xCommit(System.IntPtr)">
  12647. <summary>
  12648. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12649. </summary>
  12650. <param name="pVtab">
  12651. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12652. </param>
  12653. <returns>
  12654. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12655. </returns>
  12656. </member>
  12657. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRollback(System.IntPtr)">
  12658. <summary>
  12659. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12660. </summary>
  12661. <param name="pVtab">
  12662. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12663. </param>
  12664. <returns>
  12665. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12666. </returns>
  12667. </member>
  12668. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)">
  12669. <summary>
  12670. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12671. </summary>
  12672. <param name="pVtab">
  12673. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12674. </param>
  12675. <param name="nArg">
  12676. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12677. </param>
  12678. <param name="zName">
  12679. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12680. </param>
  12681. <param name="callback">
  12682. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12683. </param>
  12684. <param name="pClientData">
  12685. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12686. </param>
  12687. <returns>
  12688. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12689. </returns>
  12690. </member>
  12691. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)">
  12692. <summary>
  12693. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12694. </summary>
  12695. <param name="pVtab">
  12696. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12697. </param>
  12698. <param name="zNew">
  12699. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12700. </param>
  12701. <returns>
  12702. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12703. </returns>
  12704. </member>
  12705. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)">
  12706. <summary>
  12707. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12708. </summary>
  12709. <param name="pVtab">
  12710. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12711. </param>
  12712. <param name="iSavepoint">
  12713. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12714. </param>
  12715. <returns>
  12716. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12717. </returns>
  12718. </member>
  12719. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRelease(System.IntPtr,System.Int32)">
  12720. <summary>
  12721. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12722. </summary>
  12723. <param name="pVtab">
  12724. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12725. </param>
  12726. <param name="iSavepoint">
  12727. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12728. </param>
  12729. <returns>
  12730. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12731. </returns>
  12732. </member>
  12733. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)">
  12734. <summary>
  12735. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12736. </summary>
  12737. <param name="pVtab">
  12738. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12739. </param>
  12740. <param name="iSavepoint">
  12741. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12742. </param>
  12743. <returns>
  12744. See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12745. </returns>
  12746. </member>
  12747. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Dispose">
  12748. <summary>
  12749. Disposes of this object instance.
  12750. </summary>
  12751. </member>
  12752. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.CheckDisposed">
  12753. <summary>
  12754. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  12755. instance has been disposed.
  12756. </summary>
  12757. </member>
  12758. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Dispose(System.Boolean)">
  12759. <summary>
  12760. Disposes of this object instance.
  12761. </summary>
  12762. <param name="disposing">
  12763. Non-zero if this method is being called from the
  12764. <see cref="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Dispose"/> method. Zero if this method is being
  12765. called from the finalizer.
  12766. </param>
  12767. </member>
  12768. <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Finalize">
  12769. <summary>
  12770. Finalizes this object instance.
  12771. </summary>
  12772. </member>
  12773. <member name="T:System.Data.SQLite.SQLiteModuleCommon">
  12774. <summary>
  12775. This class contains some virtual methods that may be useful for other
  12776. virtual table classes. It specifically does NOT implement any of the
  12777. <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface methods.
  12778. </summary>
  12779. </member>
  12780. <member name="T:System.Data.SQLite.SQLiteModuleNoop">
  12781. <summary>
  12782. This class implements a virtual table module that does nothing by
  12783. providing "empty" implementations for all of the
  12784. <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface methods. The result
  12785. codes returned by these "empty" method implementations may be
  12786. controlled on a per-method basis by using and/or overriding the
  12787. <see cref="M:System.Data.SQLite.SQLiteModuleNoop.GetDefaultResultCode"/>,
  12788. <see cref="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToEofResult(System.Data.SQLite.SQLiteErrorCode)"/>,
  12789. <see cref="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToFindFunctionResult(System.Data.SQLite.SQLiteErrorCode)"/>,
  12790. <see cref="M:System.Data.SQLite.SQLiteModuleNoop.GetMethodResultCode(System.String)"/>, and
  12791. <see cref="M:System.Data.SQLite.SQLiteModuleNoop.SetMethodResultCode(System.String,System.Data.SQLite.SQLiteErrorCode)"/> methods from within derived classes.
  12792. </summary>
  12793. </member>
  12794. <member name="F:System.Data.SQLite.SQLiteModuleNoop.resultCodes">
  12795. <summary>
  12796. This field is used to store the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>
  12797. values to return, on a per-method basis, for all methods that are
  12798. part of the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface.
  12799. </summary>
  12800. </member>
  12801. <member name="M:System.Data.SQLite.SQLiteModuleNoop.#ctor(System.String)">
  12802. <summary>
  12803. Constructs an instance of this class.
  12804. </summary>
  12805. <param name="name">
  12806. The name of the module. This parameter cannot be null.
  12807. </param>
  12808. </member>
  12809. <member name="M:System.Data.SQLite.SQLiteModuleNoop.GetDefaultResultCode">
  12810. <summary>
  12811. Determines the default <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to be
  12812. returned by methods of the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/>
  12813. interface that lack an overridden implementation in all classes
  12814. derived from the <see cref="T:System.Data.SQLite.SQLiteModuleNoop"/> class.
  12815. </summary>
  12816. <returns>
  12817. The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be returned
  12818. by all <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface methods unless
  12819. a more specific result code has been set for that interface method.
  12820. </returns>
  12821. </member>
  12822. <member name="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToEofResult(System.Data.SQLite.SQLiteErrorCode)">
  12823. <summary>
  12824. Converts a <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value into a boolean
  12825. return value for use with the
  12826. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12827. </summary>
  12828. <param name="resultCode">
  12829. The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to convert.
  12830. </param>
  12831. <returns>
  12832. The <see cref="T:System.Boolean"/> value.
  12833. </returns>
  12834. </member>
  12835. <member name="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToFindFunctionResult(System.Data.SQLite.SQLiteErrorCode)">
  12836. <summary>
  12837. Converts a <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value into a boolean
  12838. return value for use with the
  12839. <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12840. </summary>
  12841. <param name="resultCode">
  12842. The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to convert.
  12843. </param>
  12844. <returns>
  12845. The <see cref="T:System.Boolean"/> value.
  12846. </returns>
  12847. </member>
  12848. <member name="M:System.Data.SQLite.SQLiteModuleNoop.GetMethodResultCode(System.String)">
  12849. <summary>
  12850. Determines the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be
  12851. returned by the specified <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/>
  12852. interface method if it lack an overridden implementation. If no
  12853. specific <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value is available (or set)
  12854. for the specified method, the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value
  12855. returned by the <see cref="M:System.Data.SQLite.SQLiteModuleNoop.GetDefaultResultCode"/> method will be
  12856. returned instead.
  12857. </summary>
  12858. <param name="methodName">
  12859. The name of the method. Currently, this method must be part of
  12860. the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface.
  12861. </param>
  12862. <returns>
  12863. The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be returned
  12864. by the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface method.
  12865. </returns>
  12866. </member>
  12867. <member name="M:System.Data.SQLite.SQLiteModuleNoop.SetMethodResultCode(System.String,System.Data.SQLite.SQLiteErrorCode)">
  12868. <summary>
  12869. Sets the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be
  12870. returned by the specified <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/>
  12871. interface method if it lack an overridden implementation.
  12872. </summary>
  12873. <param name="methodName">
  12874. The name of the method. Currently, this method must be part of
  12875. the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface.
  12876. </param>
  12877. <param name="resultCode">
  12878. The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be returned
  12879. by the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface method.
  12880. </param>
  12881. <returns>
  12882. Non-zero upon success.
  12883. </returns>
  12884. </member>
  12885. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  12886. <summary>
  12887. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12888. </summary>
  12889. <param name="connection">
  12890. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12891. </param>
  12892. <param name="pClientData">
  12893. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12894. </param>
  12895. <param name="arguments">
  12896. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12897. </param>
  12898. <param name="table">
  12899. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12900. </param>
  12901. <param name="error">
  12902. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12903. </param>
  12904. <returns>
  12905. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12906. </returns>
  12907. </member>
  12908. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  12909. <summary>
  12910. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12911. </summary>
  12912. <param name="connection">
  12913. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12914. </param>
  12915. <param name="pClientData">
  12916. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12917. </param>
  12918. <param name="arguments">
  12919. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12920. </param>
  12921. <param name="table">
  12922. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12923. </param>
  12924. <param name="error">
  12925. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12926. </param>
  12927. <returns>
  12928. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12929. </returns>
  12930. </member>
  12931. <member name="M:System.Data.SQLite.SQLiteModuleNoop.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  12932. <summary>
  12933. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12934. </summary>
  12935. <param name="table">
  12936. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12937. </param>
  12938. <param name="index">
  12939. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12940. </param>
  12941. <returns>
  12942. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12943. </returns>
  12944. </member>
  12945. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  12946. <summary>
  12947. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12948. </summary>
  12949. <param name="table">
  12950. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12951. </param>
  12952. <returns>
  12953. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12954. </returns>
  12955. </member>
  12956. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  12957. <summary>
  12958. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12959. </summary>
  12960. <param name="table">
  12961. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12962. </param>
  12963. <returns>
  12964. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12965. </returns>
  12966. </member>
  12967. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  12968. <summary>
  12969. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12970. </summary>
  12971. <param name="table">
  12972. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12973. </param>
  12974. <param name="cursor">
  12975. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12976. </param>
  12977. <returns>
  12978. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12979. </returns>
  12980. </member>
  12981. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  12982. <summary>
  12983. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12984. </summary>
  12985. <param name="cursor">
  12986. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12987. </param>
  12988. <returns>
  12989. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12990. </returns>
  12991. </member>
  12992. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  12993. <summary>
  12994. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12995. </summary>
  12996. <param name="cursor">
  12997. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12998. </param>
  12999. <param name="indexNumber">
  13000. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13001. </param>
  13002. <param name="indexString">
  13003. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13004. </param>
  13005. <param name="values">
  13006. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13007. </param>
  13008. <returns>
  13009. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13010. </returns>
  13011. </member>
  13012. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13013. <summary>
  13014. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13015. </summary>
  13016. <param name="cursor">
  13017. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13018. </param>
  13019. <returns>
  13020. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13021. </returns>
  13022. </member>
  13023. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13024. <summary>
  13025. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13026. </summary>
  13027. <param name="cursor">
  13028. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13029. </param>
  13030. <returns>
  13031. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13032. </returns>
  13033. </member>
  13034. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  13035. <summary>
  13036. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13037. </summary>
  13038. <param name="cursor">
  13039. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13040. </param>
  13041. <param name="context">
  13042. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13043. </param>
  13044. <param name="index">
  13045. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13046. </param>
  13047. <returns>
  13048. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13049. </returns>
  13050. </member>
  13051. <member name="M:System.Data.SQLite.SQLiteModuleNoop.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  13052. <summary>
  13053. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13054. </summary>
  13055. <param name="cursor">
  13056. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13057. </param>
  13058. <param name="rowId">
  13059. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13060. </param>
  13061. <returns>
  13062. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13063. </returns>
  13064. </member>
  13065. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  13066. <summary>
  13067. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13068. </summary>
  13069. <param name="table">
  13070. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13071. </param>
  13072. <param name="values">
  13073. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13074. </param>
  13075. <param name="rowId">
  13076. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13077. </param>
  13078. <returns>
  13079. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13080. </returns>
  13081. </member>
  13082. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Begin(System.Data.SQLite.SQLiteVirtualTable)">
  13083. <summary>
  13084. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13085. </summary>
  13086. <param name="table">
  13087. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13088. </param>
  13089. <returns>
  13090. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13091. </returns>
  13092. </member>
  13093. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Sync(System.Data.SQLite.SQLiteVirtualTable)">
  13094. <summary>
  13095. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13096. </summary>
  13097. <param name="table">
  13098. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13099. </param>
  13100. <returns>
  13101. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13102. </returns>
  13103. </member>
  13104. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Commit(System.Data.SQLite.SQLiteVirtualTable)">
  13105. <summary>
  13106. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13107. </summary>
  13108. <param name="table">
  13109. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13110. </param>
  13111. <returns>
  13112. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13113. </returns>
  13114. </member>
  13115. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Rollback(System.Data.SQLite.SQLiteVirtualTable)">
  13116. <summary>
  13117. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13118. </summary>
  13119. <param name="table">
  13120. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13121. </param>
  13122. <returns>
  13123. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13124. </returns>
  13125. </member>
  13126. <member name="M:System.Data.SQLite.SQLiteModuleNoop.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)">
  13127. <summary>
  13128. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13129. </summary>
  13130. <param name="table">
  13131. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13132. </param>
  13133. <param name="argumentCount">
  13134. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13135. </param>
  13136. <param name="name">
  13137. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13138. </param>
  13139. <param name="function">
  13140. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13141. </param>
  13142. <param name="pClientData">
  13143. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13144. </param>
  13145. <returns>
  13146. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  13147. </returns>
  13148. </member>
  13149. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  13150. <summary>
  13151. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13152. </summary>
  13153. <param name="table">
  13154. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13155. </param>
  13156. <param name="newName">
  13157. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13158. </param>
  13159. <returns>
  13160. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13161. </returns>
  13162. </member>
  13163. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  13164. <summary>
  13165. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13166. </summary>
  13167. <param name="table">
  13168. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13169. </param>
  13170. <param name="savepoint">
  13171. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13172. </param>
  13173. <returns>
  13174. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13175. </returns>
  13176. </member>
  13177. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  13178. <summary>
  13179. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13180. </summary>
  13181. <param name="table">
  13182. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13183. </param>
  13184. <param name="savepoint">
  13185. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13186. </param>
  13187. <returns>
  13188. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13189. </returns>
  13190. </member>
  13191. <member name="M:System.Data.SQLite.SQLiteModuleNoop.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  13192. <summary>
  13193. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13194. </summary>
  13195. <param name="table">
  13196. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13197. </param>
  13198. <param name="savepoint">
  13199. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13200. </param>
  13201. <returns>
  13202. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13203. </returns>
  13204. </member>
  13205. <member name="M:System.Data.SQLite.SQLiteModuleNoop.CheckDisposed">
  13206. <summary>
  13207. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13208. instance has been disposed.
  13209. </summary>
  13210. </member>
  13211. <member name="M:System.Data.SQLite.SQLiteModuleNoop.Dispose(System.Boolean)">
  13212. <summary>
  13213. Disposes of this object instance.
  13214. </summary>
  13215. <param name="disposing">
  13216. Non-zero if this method is being called from the
  13217. <see cref="M:System.IDisposable.Dispose"/> method. Zero if this method is
  13218. being called from the finalizer.
  13219. </param>
  13220. </member>
  13221. <member name="F:System.Data.SQLite.SQLiteModuleCommon.declareSql">
  13222. <summary>
  13223. The CREATE TABLE statement used to declare the schema for the
  13224. virtual table.
  13225. </summary>
  13226. </member>
  13227. <member name="F:System.Data.SQLite.SQLiteModuleCommon.objectIdentity">
  13228. <summary>
  13229. Non-zero if different object instances with the same value should
  13230. generate different row identifiers, where applicable. This has no
  13231. effect on the .NET Compact Framework.
  13232. </summary>
  13233. </member>
  13234. <member name="M:System.Data.SQLite.SQLiteModuleCommon.#ctor(System.String)">
  13235. <summary>
  13236. Constructs an instance of this class.
  13237. </summary>
  13238. <param name="name">
  13239. The name of the module. This parameter cannot be null.
  13240. </param>
  13241. </member>
  13242. <member name="M:System.Data.SQLite.SQLiteModuleCommon.#ctor(System.String,System.Boolean)">
  13243. <summary>
  13244. Constructs an instance of this class.
  13245. </summary>
  13246. <param name="name">
  13247. The name of the module. This parameter cannot be null.
  13248. </param>
  13249. <param name="objectIdentity">
  13250. Non-zero if different object instances with the same value should
  13251. generate different row identifiers, where applicable. This
  13252. parameter has no effect on the .NET Compact Framework.
  13253. </param>
  13254. </member>
  13255. <member name="M:System.Data.SQLite.SQLiteModuleCommon.GetSqlForDeclareTable">
  13256. <summary>
  13257. Determines the SQL statement used to declare the virtual table.
  13258. This method should be overridden in derived classes if they require
  13259. a custom virtual table schema.
  13260. </summary>
  13261. <returns>
  13262. The SQL statement used to declare the virtual table -OR- null if it
  13263. cannot be determined.
  13264. </returns>
  13265. </member>
  13266. <member name="M:System.Data.SQLite.SQLiteModuleCommon.CursorTypeMismatchError(System.Data.SQLite.SQLiteVirtualTableCursor,System.Type)">
  13267. <summary>
  13268. Sets the table error message to one that indicates the virtual
  13269. table cursor is of the wrong type.
  13270. </summary>
  13271. <param name="cursor">
  13272. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance.
  13273. </param>
  13274. <param name="type">
  13275. The <see cref="T:System.Type"/> that the virtual table cursor should be.
  13276. </param>
  13277. <returns>
  13278. The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  13279. </returns>
  13280. </member>
  13281. <member name="M:System.Data.SQLite.SQLiteModuleCommon.GetStringFromObject(System.Data.SQLite.SQLiteVirtualTableCursor,System.Object)">
  13282. <summary>
  13283. Determines the string to return as the column value for the object
  13284. instance value.
  13285. </summary>
  13286. <param name="cursor">
  13287. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  13288. associated with the previously opened virtual table cursor to be
  13289. used.
  13290. </param>
  13291. <param name="value">
  13292. The object instance to return a string representation for.
  13293. </param>
  13294. <returns>
  13295. The string representation of the specified object instance or null
  13296. upon failure.
  13297. </returns>
  13298. </member>
  13299. <member name="M:System.Data.SQLite.SQLiteModuleCommon.MakeRowId(System.Int32,System.Int32)">
  13300. <summary>
  13301. Constructs an <see cref="T:System.Int64"/> unique row identifier from two
  13302. <see cref="T:System.Int32"/> values. The first <see cref="T:System.Int32"/> value
  13303. must contain the row sequence number for the current row and the
  13304. second value must contain the hash code of the key column value
  13305. for the current row.
  13306. </summary>
  13307. <param name="rowIndex">
  13308. The integer row sequence number for the current row.
  13309. </param>
  13310. <param name="hashCode">
  13311. The hash code of the key column value for the current row.
  13312. </param>
  13313. <returns>
  13314. The unique row identifier or zero upon failure.
  13315. </returns>
  13316. </member>
  13317. <member name="M:System.Data.SQLite.SQLiteModuleCommon.GetRowIdFromObject(System.Data.SQLite.SQLiteVirtualTableCursor,System.Object)">
  13318. <summary>
  13319. Determines the unique row identifier for the current row.
  13320. </summary>
  13321. <param name="cursor">
  13322. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  13323. associated with the previously opened virtual table cursor to be
  13324. used.
  13325. </param>
  13326. <param name="value">
  13327. The object instance to return a unique row identifier for.
  13328. </param>
  13329. <returns>
  13330. The unique row identifier or zero upon failure.
  13331. </returns>
  13332. </member>
  13333. <member name="M:System.Data.SQLite.SQLiteModuleCommon.CheckDisposed">
  13334. <summary>
  13335. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13336. instance has been disposed.
  13337. </summary>
  13338. </member>
  13339. <member name="M:System.Data.SQLite.SQLiteModuleCommon.Dispose(System.Boolean)">
  13340. <summary>
  13341. Disposes of this object instance.
  13342. </summary>
  13343. <param name="disposing">
  13344. Non-zero if this method is being called from the
  13345. <see cref="M:System.IDisposable.Dispose"/> method. Zero if this method is
  13346. being called from the finalizer.
  13347. </param>
  13348. </member>
  13349. <member name="T:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator">
  13350. <summary>
  13351. This class represents a virtual table cursor to be used with the
  13352. <see cref="T:System.Data.SQLite.SQLiteModuleEnumerable"/> class. It is not sealed and may
  13353. be used as the base class for any user-defined virtual table cursor
  13354. class that wraps an <see cref="T:System.Collections.IEnumerator"/> object instance.
  13355. </summary>
  13356. </member>
  13357. <member name="F:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.enumerator">
  13358. <summary>
  13359. The <see cref="T:System.Collections.IEnumerator"/> instance provided when this cursor
  13360. was created.
  13361. </summary>
  13362. </member>
  13363. <member name="F:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.endOfEnumerator">
  13364. <summary>
  13365. This value will be non-zero if false has been returned from the
  13366. <see cref="M:System.Collections.IEnumerator.MoveNext"/> method.
  13367. </summary>
  13368. </member>
  13369. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.#ctor(System.Data.SQLite.SQLiteVirtualTable,System.Collections.IEnumerator)">
  13370. <summary>
  13371. Constructs an instance of this class.
  13372. </summary>
  13373. <param name="table">
  13374. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  13375. with this object instance.
  13376. </param>
  13377. <param name="enumerator">
  13378. The <see cref="T:System.Collections.IEnumerator"/> instance to expose as a virtual
  13379. table cursor.
  13380. </param>
  13381. </member>
  13382. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.MoveNext">
  13383. <summary>
  13384. Advances to the next row of the virtual table cursor using the
  13385. <see cref="M:System.Collections.IEnumerator.MoveNext"/> method of the
  13386. <see cref="T:System.Collections.IEnumerator"/> object instance.
  13387. </summary>
  13388. <returns>
  13389. Non-zero if the current row is valid; zero otherwise. If zero is
  13390. returned, no further rows are available.
  13391. </returns>
  13392. </member>
  13393. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Reset">
  13394. <summary>
  13395. Resets the virtual table cursor position, also invalidating the
  13396. current row, using the <see cref="M:System.Collections.IEnumerator.Reset"/> method of
  13397. the <see cref="T:System.Collections.IEnumerator"/> object instance.
  13398. </summary>
  13399. </member>
  13400. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Close">
  13401. <summary>
  13402. Closes the virtual table cursor. This method must not throw any
  13403. exceptions.
  13404. </summary>
  13405. </member>
  13406. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.CheckClosed">
  13407. <summary>
  13408. Throws an <see cref="T:System.InvalidOperationException"/> if the virtual
  13409. table cursor has been closed.
  13410. </summary>
  13411. </member>
  13412. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.CheckDisposed">
  13413. <summary>
  13414. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13415. instance has been disposed.
  13416. </summary>
  13417. </member>
  13418. <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Dispose(System.Boolean)">
  13419. <summary>
  13420. Disposes of this object instance.
  13421. </summary>
  13422. <param name="disposing">
  13423. Non-zero if this method is being called from the
  13424. <see cref="M:System.IDisposable.Dispose"/> method. Zero if this method is
  13425. being called from the finalizer.
  13426. </param>
  13427. </member>
  13428. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Current">
  13429. <summary>
  13430. Returns the value for the current row of the virtual table cursor
  13431. using the <see cref="P:System.Collections.IEnumerator.Current"/> property of the
  13432. <see cref="T:System.Collections.IEnumerator"/> object instance.
  13433. </summary>
  13434. </member>
  13435. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.EndOfEnumerator">
  13436. <summary>
  13437. Returns non-zero if the end of the virtual table cursor has been
  13438. seen (i.e. no more rows are available, including the current one).
  13439. </summary>
  13440. </member>
  13441. <member name="P:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.IsOpen">
  13442. <summary>
  13443. Returns non-zero if the virtual table cursor is open.
  13444. </summary>
  13445. </member>
  13446. <member name="T:System.Data.SQLite.SQLiteModuleEnumerable">
  13447. <summary>
  13448. This class implements a virtual table module that exposes an
  13449. <see cref="T:System.Collections.IEnumerable"/> object instance as a read-only virtual
  13450. table. It is not sealed and may be used as the base class for any
  13451. user-defined virtual table class that wraps an
  13452. <see cref="T:System.Collections.IEnumerable"/> object instance. The following short
  13453. example shows it being used to treat an array of strings as a table
  13454. data source:
  13455. <code>
  13456. public static class Sample
  13457. {
  13458. public static void Main()
  13459. {
  13460. using (SQLiteConnection connection = new SQLiteConnection(
  13461. "Data Source=:memory:;"))
  13462. {
  13463. connection.Open();
  13464. connection.CreateModule(new SQLiteModuleEnumerable(
  13465. "sampleModule", new string[] { "one", "two", "three" }));
  13466. using (SQLiteCommand command = connection.CreateCommand())
  13467. {
  13468. command.CommandText =
  13469. "CREATE VIRTUAL TABLE t1 USING sampleModule;";
  13470. command.ExecuteNonQuery();
  13471. }
  13472. using (SQLiteCommand command = connection.CreateCommand())
  13473. {
  13474. command.CommandText = "SELECT * FROM t1;";
  13475. using (SQLiteDataReader dataReader = command.ExecuteReader())
  13476. {
  13477. while (dataReader.Read())
  13478. Console.WriteLine(dataReader[0].ToString());
  13479. }
  13480. }
  13481. connection.Close();
  13482. }
  13483. }
  13484. }
  13485. </code>
  13486. </summary>
  13487. </member>
  13488. <member name="F:System.Data.SQLite.SQLiteModuleEnumerable.enumerable">
  13489. <summary>
  13490. The <see cref="T:System.Collections.IEnumerable"/> instance containing the backing data
  13491. for the virtual table.
  13492. </summary>
  13493. </member>
  13494. <member name="F:System.Data.SQLite.SQLiteModuleEnumerable.objectIdentity">
  13495. <summary>
  13496. Non-zero if different object instances with the same value should
  13497. generate different row identifiers, where applicable. This has no
  13498. effect on the .NET Compact Framework.
  13499. </summary>
  13500. </member>
  13501. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.#ctor(System.String,System.Collections.IEnumerable)">
  13502. <summary>
  13503. Constructs an instance of this class.
  13504. </summary>
  13505. <param name="name">
  13506. The name of the module. This parameter cannot be null.
  13507. </param>
  13508. <param name="enumerable">
  13509. The <see cref="T:System.Collections.IEnumerable"/> instance to expose as a virtual
  13510. table. This parameter cannot be null.
  13511. </param>
  13512. </member>
  13513. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.#ctor(System.String,System.Collections.IEnumerable,System.Boolean)">
  13514. <summary>
  13515. Constructs an instance of this class.
  13516. </summary>
  13517. <param name="name">
  13518. The name of the module. This parameter cannot be null.
  13519. </param>
  13520. <param name="enumerable">
  13521. The <see cref="T:System.Collections.IEnumerable"/> instance to expose as a virtual
  13522. table. This parameter cannot be null.
  13523. </param>
  13524. <param name="objectIdentity">
  13525. Non-zero if different object instances with the same value should
  13526. generate different row identifiers, where applicable. This
  13527. parameter has no effect on the .NET Compact Framework.
  13528. </param>
  13529. </member>
  13530. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.CursorEndOfEnumeratorError(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13531. <summary>
  13532. Sets the table error message to one that indicates the virtual
  13533. table cursor has no current row.
  13534. </summary>
  13535. <param name="cursor">
  13536. The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance.
  13537. </param>
  13538. <returns>
  13539. The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  13540. </returns>
  13541. </member>
  13542. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  13543. <summary>
  13544. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13545. </summary>
  13546. <param name="connection">
  13547. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13548. </param>
  13549. <param name="pClientData">
  13550. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13551. </param>
  13552. <param name="arguments">
  13553. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13554. </param>
  13555. <param name="table">
  13556. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13557. </param>
  13558. <param name="error">
  13559. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13560. </param>
  13561. <returns>
  13562. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13563. </returns>
  13564. </member>
  13565. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  13566. <summary>
  13567. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13568. </summary>
  13569. <param name="connection">
  13570. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13571. </param>
  13572. <param name="pClientData">
  13573. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13574. </param>
  13575. <param name="arguments">
  13576. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13577. </param>
  13578. <param name="table">
  13579. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13580. </param>
  13581. <param name="error">
  13582. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13583. </param>
  13584. <returns>
  13585. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13586. </returns>
  13587. </member>
  13588. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  13589. <summary>
  13590. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13591. </summary>
  13592. <param name="table">
  13593. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13594. </param>
  13595. <param name="index">
  13596. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13597. </param>
  13598. <returns>
  13599. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13600. </returns>
  13601. </member>
  13602. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  13603. <summary>
  13604. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13605. </summary>
  13606. <param name="table">
  13607. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13608. </param>
  13609. <returns>
  13610. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13611. </returns>
  13612. </member>
  13613. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  13614. <summary>
  13615. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13616. </summary>
  13617. <param name="table">
  13618. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13619. </param>
  13620. <returns>
  13621. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13622. </returns>
  13623. </member>
  13624. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  13625. <summary>
  13626. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13627. </summary>
  13628. <param name="table">
  13629. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13630. </param>
  13631. <param name="cursor">
  13632. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13633. </param>
  13634. <returns>
  13635. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13636. </returns>
  13637. </member>
  13638. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13639. <summary>
  13640. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13641. </summary>
  13642. <param name="cursor">
  13643. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13644. </param>
  13645. <returns>
  13646. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13647. </returns>
  13648. </member>
  13649. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  13650. <summary>
  13651. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13652. </summary>
  13653. <param name="cursor">
  13654. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13655. </param>
  13656. <param name="indexNumber">
  13657. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13658. </param>
  13659. <param name="indexString">
  13660. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13661. </param>
  13662. <param name="values">
  13663. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13664. </param>
  13665. <returns>
  13666. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13667. </returns>
  13668. </member>
  13669. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13670. <summary>
  13671. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13672. </summary>
  13673. <param name="cursor">
  13674. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13675. </param>
  13676. <returns>
  13677. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13678. </returns>
  13679. </member>
  13680. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13681. <summary>
  13682. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13683. </summary>
  13684. <param name="cursor">
  13685. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13686. </param>
  13687. <returns>
  13688. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13689. </returns>
  13690. </member>
  13691. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  13692. <summary>
  13693. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13694. </summary>
  13695. <param name="cursor">
  13696. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13697. </param>
  13698. <param name="context">
  13699. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13700. </param>
  13701. <param name="index">
  13702. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13703. </param>
  13704. <returns>
  13705. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13706. </returns>
  13707. </member>
  13708. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  13709. <summary>
  13710. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13711. </summary>
  13712. <param name="cursor">
  13713. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13714. </param>
  13715. <param name="rowId">
  13716. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13717. </param>
  13718. <returns>
  13719. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13720. </returns>
  13721. </member>
  13722. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  13723. <summary>
  13724. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13725. </summary>
  13726. <param name="table">
  13727. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13728. </param>
  13729. <param name="values">
  13730. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13731. </param>
  13732. <param name="rowId">
  13733. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13734. </param>
  13735. <returns>
  13736. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13737. </returns>
  13738. </member>
  13739. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  13740. <summary>
  13741. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13742. </summary>
  13743. <param name="table">
  13744. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13745. </param>
  13746. <param name="newName">
  13747. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13748. </param>
  13749. <returns>
  13750. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13751. </returns>
  13752. </member>
  13753. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.CheckDisposed">
  13754. <summary>
  13755. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13756. instance has been disposed.
  13757. </summary>
  13758. </member>
  13759. <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Dispose(System.Boolean)">
  13760. <summary>
  13761. Disposes of this object instance.
  13762. </summary>
  13763. <param name="disposing">
  13764. Non-zero if this method is being called from the
  13765. <see cref="M:System.IDisposable.Dispose"/> method. Zero if this method is
  13766. being called from the finalizer.
  13767. </param>
  13768. </member>
  13769. <member name="T:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1">
  13770. <summary>
  13771. This class represents a virtual table cursor to be used with the
  13772. <see cref="T:System.Data.SQLite.SQLiteModuleEnumerable"/> class. It is not sealed and may
  13773. be used as the base class for any user-defined virtual table cursor
  13774. class that wraps an <see cref="T:System.Collections.Generic.IEnumerator`1"/> object instance.
  13775. </summary>
  13776. </member>
  13777. <member name="F:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.enumerator">
  13778. <summary>
  13779. The <see cref="T:System.Collections.Generic.IEnumerator`1"/> instance provided when this
  13780. cursor was created.
  13781. </summary>
  13782. </member>
  13783. <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.#ctor(System.Data.SQLite.SQLiteVirtualTable,System.Collections.Generic.IEnumerator{`0})">
  13784. <summary>
  13785. Constructs an instance of this class.
  13786. </summary>
  13787. <param name="table">
  13788. The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  13789. with this object instance.
  13790. </param>
  13791. <param name="enumerator">
  13792. The <see cref="T:System.Collections.Generic.IEnumerator`1"/> instance to expose as a virtual
  13793. table cursor.
  13794. </param>
  13795. </member>
  13796. <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.Close">
  13797. <summary>
  13798. Closes the virtual table cursor. This method must not throw any
  13799. exceptions.
  13800. </summary>
  13801. </member>
  13802. <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.CheckDisposed">
  13803. <summary>
  13804. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13805. instance has been disposed.
  13806. </summary>
  13807. </member>
  13808. <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.Dispose(System.Boolean)">
  13809. <summary>
  13810. Disposes of this object instance.
  13811. </summary>
  13812. <param name="disposing">
  13813. Non-zero if this method is being called from the
  13814. <see cref="M:System.IDisposable.Dispose"/> method. Zero if this method is
  13815. being called from the finalizer.
  13816. </param>
  13817. </member>
  13818. <member name="P:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.System#Collections#Generic#IEnumerator{T}#Current">
  13819. <summary>
  13820. Returns the value for the current row of the virtual table cursor
  13821. using the <see cref="P:System.Collections.Generic.IEnumerator`1.Current"/> property of the
  13822. <see cref="T:System.Collections.Generic.IEnumerator`1"/> object instance.
  13823. </summary>
  13824. </member>
  13825. <member name="T:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1">
  13826. <summary>
  13827. This class implements a virtual table module that exposes an
  13828. <see cref="T:System.Collections.Generic.IEnumerable`1"/> object instance as a read-only virtual
  13829. table. It is not sealed and may be used as the base class for any
  13830. user-defined virtual table class that wraps an
  13831. <see cref="T:System.Collections.Generic.IEnumerable`1"/> object instance.
  13832. </summary>
  13833. </member>
  13834. <member name="F:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.enumerable">
  13835. <summary>
  13836. The <see cref="T:System.Collections.Generic.IEnumerable`1"/> instance containing the backing
  13837. data for the virtual table.
  13838. </summary>
  13839. </member>
  13840. <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.#ctor(System.String,System.Collections.Generic.IEnumerable{`0})">
  13841. <summary>
  13842. Constructs an instance of this class.
  13843. </summary>
  13844. <param name="name">
  13845. The name of the module. This parameter cannot be null.
  13846. </param>
  13847. <param name="enumerable">
  13848. The <see cref="T:System.Collections.Generic.IEnumerable`1"/> instance to expose as a virtual
  13849. table. This parameter cannot be null.
  13850. </param>
  13851. </member>
  13852. <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  13853. <summary>
  13854. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13855. </summary>
  13856. <param name="table">
  13857. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13858. </param>
  13859. <param name="cursor">
  13860. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13861. </param>
  13862. <returns>
  13863. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13864. </returns>
  13865. </member>
  13866. <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  13867. <summary>
  13868. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13869. </summary>
  13870. <param name="cursor">
  13871. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13872. </param>
  13873. <param name="context">
  13874. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13875. </param>
  13876. <param name="index">
  13877. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13878. </param>
  13879. <returns>
  13880. See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13881. </returns>
  13882. </member>
  13883. <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.CheckDisposed">
  13884. <summary>
  13885. Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13886. instance has been disposed.
  13887. </summary>
  13888. </member>
  13889. <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.Dispose(System.Boolean)">
  13890. <summary>
  13891. Disposes of this object instance.
  13892. </summary>
  13893. <param name="disposing">
  13894. Non-zero if this method is being called from the
  13895. <see cref="M:System.IDisposable.Dispose"/> method. Zero if this method is
  13896. being called from the finalizer.
  13897. </param>
  13898. </member>
  13899. </members>
  13900. </doc>