Friday, November 20, 2009
Home Retrieving XML Writing XML General Contact About  

Why doesn't bulk loading work in .Net? (31842 Requests)

Answer provided by weipingle

Bulkload works well in VB since VB uses single thread apartment by default. In C#, the same code will cause the following exception:

 
System.InvalidCastException: QueryInterface for interface
SQLXMLBULKLOADLib.ISQLXMLBulkLoad failed
 

In order to make bulkload work in C#, you need to make sure that the thread mode is STA by :

 
System.Threading.Thread.CurrentThread.ApartmentState = System.Threading.ApartmentState.STA;
 

The bulkload code is simple:

 
SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class objXBL = new SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class();
 
objXBL.ConnectionString = "Provider=sqloledb;server=server;database=db;uid=id;pwd=password";
 
objXBL.ErrorLogFile = "SQLXML3Books.errlog";
 
objXBL.KeepIdentity = false;
 
objXBL.Execute("Books.xsd", "Books1.xml");
 

The following code was provided by Gjalt Wijma which demonstrates how to use threading with bulk loading.

 
// Create a new thread 
Thread bulkLoad = new Thread( new ThreadStart( LoadData ) ); 
bulkLoad.ApartmentState = ApartmentState.STA; 
bulkLoad.Start(); 
 
// Load data 
public void LoadData() 
{ 
    // Create new bulk load object SQLXMLBulkLoad3Class 
    objXBL = new SQLXMLBulkLoad3Class(); 
    // Set connection string 
    objXBL.ConnectionString = "..." 
    // Set log file 
    objXBL.ErrorLogFile = ".." 
    // Set keep identity to false 
    objXBL.KeepIdentity = false; 
    // Execute bulk load 
    objXBL.Execute("Books.xsd", "Books1.xml"); 
} 
 

Feedback

# Thread Mode does not work Jason

Hello, I tried the thread mode but it is not workign properly.Actually I am using SQLXMLBULKLIAD in the web service.I did set [STAThread] for the method which makes use of XMLBULK . Same code works in WinForm application.

# Start a new thread Gjalt Wijma

You can create a new thread as follows: // Create a new thread Thread bulkLoad = new Thread( new ThreadStart( LoadData ) ); bulkLoad.ApartmentState = ApartmentState.STA; bulkLoad.Start(); // Load data public void LoadData() { // Create new bulk load object SQLXMLBulkLoad3Class objXBL = new SQLXMLBulkLoad3Class(); // Set connection string objXBL.ConnectionString = "..." // Set log file objXBL.ErrorLogFile = ".." // Set keep identity ti false objXBL.KeepIdentity = false; // Execute bulk load objXBL.Execute("Books.xsd", "Books1.xml"); }

# storing xml files in sql peter

is there a way to store xml files in sql server 2000

# Always fails on connection string Steven Grigsby

In VB.Net the line with the connection string always fails.

# Always fails on connection string Bryant

I hope you changed it from what it is above.... (fill in yourserver with your server's name)

# Always fails on connection string Steven Grigsby

Here's the code that fails in VB.Net: System.Threading.Thread.CurrentThread.ApartmentState = Threading.ApartmentState.STA Dim objBL As New SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class() objBL.ErrorLogFile = "c:\myerror.log" objBL.CheckConstraints = True objBL.ConnectionString = "Provider=SQLOLEDB;data source=localhost;database=MYXMLDATABASE;user id=XXXXXX;pwd=XXXXXX;workstation id=XXXXXX;packet size=4096;" objBL.Execute("c:\SampleSchema.xml", "c:\SampleXMLData.xml")

# storing xml files in sql

# Thread Mode does not work TCherry

Gjalt Wijma... you're example was awesome! Finally got it working in C# in .NET. For those having trouble with thread state in .NET.... use his example.

# re: Why doesn't bulk loading work in .Net? Carsten Daugaard

Jep, Gjalt Wijma wins this one for sure!

# re: Why doesn't bulk loading work in .Net? Jeno

Used the sample code, I use a similar connection string and receive a System.Runtime.InteropServices.COMException. It says that the "The statement has been terminated." :/

# re: Why doesn't bulk loading work in .Net? Gabriela Lo

What namespace or reference is SQLXMLBULKLOADLiB? I tried you VB.NET version but SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class not defined. Please help!

Thanks.

# re: Why doesn't bulk loading work in .Net? RikeR

@Gabriela Lo

Add a reference to Microsoft SQLXML BulkLoad 3.0 Type Library. This is a COM library.

# re: Why doesn't bulk loading work in .Net? Cliffta

After struggling for several hours, Gjalt Wijma's example worked perfectly. Thanks so much!

# re: Why doesn't bulk loading work in .Net? Tung

I cannot file the Microsoft SQLXML BulkLoad 3.0 Type Library. Is there some components need to be installed? (I'm using MS .NET Framework 1.1 version 1.1.4322 and MS SQL Server 2000.Please help me.

# re: Why doesn't bulk loading work in .Net? Paddy

What about late-binding the sqlxmlbulkload com object, does that work?

# re: Why doesn't bulk loading work in .Net? n00b

@Tung

Have you added the "Imports SQLXMLBULKLOADLib" (for VB.net) or "using SQLXMLBULKLOADLib" (for C#) statement at the beginning of ur code behind?

# re: Why doesn't bulk loading work in .Net? Gary

For anyone trying to run this in an ASP.NET page, ensure that ASPCompat="true" is added to the .aspx @Page directive. The lines declaring a new thread are not necessary.

# re: Why doesn't bulk loading work in .Net? srinivas

how I can use the code above in Mypage.aspx.cs

# re: Why doesn't bulk loading work in .Net? Rajini

why bulk loading does'nt work ? do i need to do any settings in IIS Virtual Directory for SQL Server. it does not save data.. there is no exception too.

# re: Why doesn't bulk loading work in .Net? Anji

Bulk Insert(System.InvalidCastException: QueryInterface for interface)
I am Using BulkLoad from WebService and as per our project requirements i cannt spawn thread in WebMethod and also [STAThread] is not working for WebService using BulkLoad.

Is there any other way of using BulLoad from WebService ???

Thanx in advance

# re: Why doesn't bulk loading work in .Net? Sneha

I cannot file the Microsoft SQLXML BulkLoad 3.0 Type LibraryI cannot file the Microsoft SQLXML BulkLoad 3.0 Type Library.Please Help

# re: Why doesn't bulk loading work in .Net? BobF

Search for the COM DLL: XBLKLD?.DLL.

On my system the dll is XBLKLD3.DLL and can be found in folder C:\Program Files\Common Files\System\Ole DB.

Add the DLL to your .NET project.

To install the library use this URL: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/anch_sqlxml.asp

or if you want to get SqlXml 3.0 sp3: http://www.microsoft.com/downloads/details.aspx?FamilyID=51d4a154-8e23-47d2-a033-764259cfb53b&DisplayLang=en

Hope this helps.

# re: Why doesn't bulk loading work in .Net? vcs

The code was very helpfull .
It worked for me.

Thanks and Regards
vcs

# The first solution is no longer valid Shannon

The main solution (first post in the thread) is no longer valid. MS product help file says:

In the .NET Framework version 2.0, new threads are initialized as ApartmentState.MTA if their apartment state has not been set before they are started. The main application thread is initialized to ApartmentState.MTA by default. You can no longer set the main application thread to ApartmentState.STA by setting the Thread.ApartmentState property on the first line of code. Use the STAThreadAttribute instead.

Note you can still set Threading.ApartmentState on a new thread you are creating, Gjalt Wijma demonstrates.

# re: Why doesn't bulk loading work in .Net? Phillip H. Blanton

Here is the 2.0 way...

// Create a new thread
Thread bulkLoad = new Thread(new ThreadStart(LoadData));
bulkLoad.SetApartmentState(ApartmentState.STA);
bulkLoad.Start();

# re: connection string problem in vb.net jawad

i assigned my server name in connection string but still it is not working plz help its urgent

# re: Why doesn't bulk loading work in .Net? cs

i tried the bulload with vb.net it works ,the same code in webform does not i ahve ' data source invalid
any idea

# re: Why doesn't bulk loading work in .Net? B

I have also been trying to get this working from ASP.NET C# ... although it works from a console app the exact same code & database string. The sqlxml object call fails saying data source invalid. Thing is i can only a database connection in the same code block successfully. So it seems to be a problem with using the object in a web app. The connection string is using sql auth. need help !!!

# re: Why doesn't bulk loading work in .Net? res2

Is there and issue with the bulk load and SQLServer Express? I cannot get the XMLBulkLoader to recognize a valid SSE connection string.

# re: Why doesn't bulk loading work in .Net? Raghav

You should give the ConnectionString as follows
"provider=SQLOLEDB.1;data source=SEVERNAME;database=DBNAME;Uid=XXXX;Pwd=YYY".You can replace your SEVERNAME,DBNAME,XXXX-Uid and YYY-Pwd. It should work.

# re: Why doesn't bulk loading work in .Net? anand

what is namespace for SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class

# jdewiut ftps uolsfe@mail.com

wyhen ahnel lqedf unzqow oqtfax dmjestf fxigoljw

# tujxsyz cyahxof jmecafnl@mail.com

vpxg vnou hypl mknia dfcq chus xmbzoq

# xenical xenical

Article Opinion <a

# ephedrine ephedrine

Article Opinion <a

# lexapro lexapro

Article Opinion <a

# viagra viagra

Article Opinion <a

# ambien ambien

Article Opinion <a

# xenical xenical

Article Opinion <a

# viagra viagra

Article Opinion <a

# ambien ambien

Article Opinion <a

# ephedrine ephedrine

Article Opinion <a

# lexapro lexapro

Article Opinion <a

# dors.txt;5;5 iWzyOJuuhnSCpV

dors.txt;5;5

# dors.txt;5;5 iWzyOJuuhnSCpV

dors.txt;5;5

# dors.txt;5;5 fZtHmNMBFGqpBUfCeSj

dors.txt;5;5

# dors.txt;5;5 fZtHmNMBFGqpBUfCeSj

dors.txt;5;5

# dors.txt;5;5 rJizPFaxRN

dors.txt;5;5

# dors.txt;5;5 rJizPFaxRN

dors.txt;5;5

# berry berry

s3aa7K hlgo8G3bdDa2Nx

# berry berry

s3aa7K hlgo8G3bdDa2Nx

# lisa lisa

Northern Virginia Voters Chime In washingtonpost.com/wp-dyn/content/video/2008/09/11/VI2008091102914.html

# lisa lisa

Northern Virginia Voters Chime In washingtonpost.com/wp-dyn/content/video/2008/09/11/VI2008091102914.html

# john john

Palin Links Iraq & 9/11 | McCain: Link Is 'Naive' voices.washingtonpost.com/the-trail/2008/09/11/palin_endorses_idea_mccain_cal.html

# bobby bobby

Cindy McCain's battle against prescription drug addiction has been part of her public speaking points for years, but a deeper investigation reveals the far-reaching consequences of her actions washingtonpost.com/wp-dyn/content/article/2008/09/11/AR2008091103928.html

# john john

Palin Links Iraq & 9/11 | McCain: Link Is 'Naive' voices.washingtonpost.com/the-trail/2008/09/11/palin_endorses_idea_mccain_cal.html

# john john

Palin Links Iraq & 9/11 | McCain: Link Is 'Naive' voices.washingtonpost.com/the-trail/2008/09/11/palin_endorses_idea_mccain_cal.html

# lola lola

Has Obama Underestimated McCain? voices.washingtonpost.com/the-trail/2008/09/11/misunderestimating_mccain.html

# lola lola

Has Obama Underestimated McCain? voices.washingtonpost.com/the-trail/2008/09/11/misunderestimating_mccain.html

# britney britney

Sarah Palin: Who Do We Think She Is? washingtonpost.com/wp-dyn/content/article/2008/09/11/AR2008091103630.html

# britney britney

Sarah Palin: Who Do We Think She Is? washingtonpost.com/wp-dyn/content/article/2008/09/11/AR2008091103630.html

# re: Why doesn't bulk loading work in .Net? Amit Kohli

Hi Everybody,

I am using below code. But there is error coming :

"Schema: mixed content is not allowed on element 'xxxx. Property elements cannot have subelements."

so please do suggest asap so that i can solve this problem and able to insert this nested
xml in db.

Code :

SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class objXBL = new SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class();
objXBL.ConnectionString = "provider=SQLOLEDB;Data Source=xxxxxx;Initial Catalog=xxxxxx;Persist Security Info=True;User ID=xxxxxxx;Password=xxxxx";

objXBL.SchemaGen = true;

objXBL.Execute(@"D:\newxmlTry\msgxml_1.6.xsd", "XMLFile1.xml");

Best Regards,
Amit Kohli

# sandra sandra

HCZqCX gjsRt3i9fkls03GsAc

# alex alex

oi8LtT fkjgh62vDfulv0s5FvSa

# martin martin

Gc2D9G hi! its a nice site!

# martin martin

Gc2D9G hi! its a nice site!

# martin martin

Gc2D9G hi! its a nice site!

# martin martin

Gc2D9G hi! its a nice site!

# martin martin

Gc2D9G hi! its a nice site!

# re: Why doesn't bulk loading work in .Net? wm

what is right code to use SQLXMLBULKLOADLib in vb.net? I have vs2008, and have code like following:
Dim objBL As New SQLXMLBulkLoad4()
objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkload.4.0"),
it failed at CreateObject()
System.InvalidCastException was unhandled by user code
Message="Unable to cast COM object of type 'SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class' to interface type 'SQLXMLBULKLOADLib.ISQLXMLBulkLoad4'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{88465BA7-AEEE-49A1-9499-4416287A0160}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE))."
Source="Interop.SQLXMLBULKLOADLib"
StackTrace:
at SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class.set_ConnectionString(String pbstrConnectionString)
at ExpImpXml._Default.btnExpXml_Click(Object sender, EventArgs e) in C:\CDB\1.3.1.1\TestDAL\ExpImpXml\Default.aspx.vb:line 25
at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
InnerException:


Please help !!!

# richard richard

Rftmvw dkv7Rq29nVvzm74lApqSw

# richard richard

Rftmvw dkv7Rq29nVvzm74lApqSw

# richard richard

Rftmvw dkv7Rq29nVvzm74lApqSw

# richard richard

Rftmvw dkv7Rq29nVvzm74lApqSw

# Cheap viagra Very nice site!

Very nice site!

# Cheap viagra Very nice site!

Very nice site!

# Cheap viagra Very nice site!

Very nice site!

# Rdbxrzhz Rdbxrzhz

comment1

# Rdbxrzhz Rdbxrzhz

comment1

# Rdbxrzhz Rdbxrzhz

comment1

# Itqgnzuh Itqgnzuh

comment2

# Vdpaqysv Vdpaqysv

comment6

# Vdpaqysv Vdpaqysv

comment6

# Vdpaqysv Vdpaqysv

comment6

# Zsjzyenp Zsjzyenp

comment5

# Gqgyjkwt Gqgyjkwt

comment2

# Gqgyjkwt Gqgyjkwt

comment2

# Gqgyjkwt Gqgyjkwt

comment2

# Egjepuwe Egjepuwe

comment5

# Egjepuwe Egjepuwe

comment5

# Egjepuwe Egjepuwe

comment5

# Gtzdcstr Gtzdcstr

comment2

# Gtzdcstr Gtzdcstr

comment2

# Gtzdcstr Gtzdcstr

comment2

# Adnfykiy Adnfykiy

comment3

# Adnfykiy Adnfykiy

comment3

# Ytgimhtg Ytgimhtg

comment2

# Ytgimhtg Ytgimhtg

comment2

# Ytgimhtg Ytgimhtg

comment2

# Yaafecnj Yaafecnj

comment1

# Yaafecnj Yaafecnj

comment1

# Qnvzyqvj Qnvzyqvj

comment5

# Qnvzyqvj Qnvzyqvj

comment5

# Rofjuvgv Rofjuvgv

comment6

# Rofjuvgv Rofjuvgv

comment6

# Rofjuvgv Rofjuvgv

comment6

# Ducypprh Ducypprh

comment5

# Kinregwe Kinregwe

comment3

# Kinregwe Kinregwe

comment3

# Kinregwe Kinregwe

comment3

# Kvotidje Kvotidje

comment3

# Kvotidje Kvotidje

comment3

# Kvotidje Kvotidje

comment3

# Rzagmwmt Rzagmwmt

comment4

# Rzagmwmt Rzagmwmt

comment4

# Kvojxtdk Kvojxtdk

comment4

# Ysqdigum Ysqdigum

comment6

# Sftstrlf Sftstrlf

comment1

# Sftstrlf Sftstrlf

comment1

# Sftstrlf Sftstrlf

comment1

# Cmfebijy Cmfebijy

comment6

# Cmfebijy Cmfebijy

comment6

# Fyypsdel Fyypsdel

comment2

# Fyypsdel Fyypsdel

comment2

# Fyypsdel Fyypsdel

comment2

# Anjkioqp Anjkioqp

comment2

# Anjkioqp Anjkioqp

comment2

# Anjkioqp Anjkioqp

comment2

# Ravxkmav Ravxkmav

comment1

# Ravxkmav Ravxkmav

comment1

# Nmcmwjsg Nmcmwjsg

comment4

# Nmcmwjsg Nmcmwjsg

comment4

# Nmcmwjsg Nmcmwjsg

comment4

# Ttvduzqm Ttvduzqm

comment5

# Ttvduzqm Ttvduzqm

comment5

# Ttvduzqm Ttvduzqm

comment5

# Vvdloloj Vvdloloj

comment5

# Vvdloloj Vvdloloj

comment5

# Zbqhsmzy Zbqhsmzy

comment5

# Zbqhsmzy Zbqhsmzy

comment5

# Bofqtggm Bofqtggm

comment5

# Bofqtggm Bofqtggm

comment5

# Umnyassg Umnyassg

comment3

# Umnyassg Umnyassg

comment3

# Umnyassg Umnyassg

comment3

# Hskhmftj Hskhmftj

comment5

# Hskhmftj Hskhmftj

comment5

# Hskhmftj Hskhmftj

comment5

# Jkvndgzn Jkvndgzn

comment5

# Jkvndgzn Jkvndgzn

comment5

# Ywfghqsf Ywfghqsf

comment5

# Ywfghqsf Ywfghqsf

comment5

# Ywfghqsf Ywfghqsf

comment5

# Fxintwti Fxintwti

comment3

# Opwqqlaq Opwqqlaq

comment4

# Opwqqlaq Opwqqlaq

comment4

# Fvzdkmjx Fvzdkmjx

comment4

# Fvzdkmjx Fvzdkmjx

comment4

# Fvzdkmjx Fvzdkmjx

comment4

# Itgfrksb Itgfrksb

comment6

# Itgfrksb Itgfrksb

comment6

# Qpgkmpnw Qpgkmpnw

comment3

# Fymoiehr Fymoiehr

comment1

# Fymoiehr Fymoiehr

comment1

# Kgojzdev Kgojzdev

comment4

# Kgojzdev Kgojzdev

comment4

# Drxfzueq Drxfzueq

comment5

# Drxfzueq Drxfzueq

comment5

# Drxfzueq Drxfzueq

comment5

# Ceshtwmp Ceshtwmp

comment6

# Ceshtwmp Ceshtwmp

comment6

# Ceshtwmp Ceshtwmp

comment6

# Zjvdbdfa Zjvdbdfa

comment3

# Olsaablj Olsaablj

comment1

# Olsaablj Olsaablj

comment1

# Uvzctyeq Uvzctyeq

comment3

# Uvzctyeq Uvzctyeq

comment3

# Uvzctyeq Uvzctyeq

comment3

# Dqststxk Dqststxk

comment1

# Dqststxk Dqststxk

comment1

# Dqststxk Dqststxk

comment1

# Igzkmwan Igzkmwan

comment4

# Igzkmwan Igzkmwan

comment4

# Igzkmwan Igzkmwan

comment4

# Hlvnejym Hlvnejym

comment1

# Hlvnejym Hlvnejym

comment1

# Fksgmcgt Fksgmcgt

comment6

# Fksgmcgt Fksgmcgt

comment6

# Fksgmcgt Fksgmcgt

comment6

# Vlypbpcg Vlypbpcg

comment5

# Vlypbpcg Vlypbpcg

comment5

# Cheap viagra Very nice site!

Very nice site!

# Grjupjli Grjupjli

comment4

# Zsbkboip Zsbkboip

comment4

# Zsbkboip Zsbkboip

comment4

# Zsbkboip Zsbkboip

comment4

# Cflupejm Cflupejm

comment1

# Cflupejm Cflupejm

comment1

# Cflupejm Cflupejm

comment1

# Fojhropd Fojhropd

comment1

# Fojhropd Fojhropd

comment1

# Qeldaxnd Qeldaxnd

comment4

# Qeldaxnd Qeldaxnd

comment4

# Qeldaxnd Qeldaxnd

comment4

# Indbvpwb Indbvpwb

comment4

# Indbvpwb Indbvpwb

comment4

# Indbvpwb Indbvpwb

comment4

# Eaewseus Eaewseus

comment6

# Eaewseus Eaewseus

comment6

# Eaewseus Eaewseus

comment6

# Xeftewbv Xeftewbv

comment6

# Xeftewbv Xeftewbv

comment6

# Vjaykpua Vjaykpua

comment6

# Yoxvlcoj Yoxvlcoj

comment4

# Yoxvlcoj Yoxvlcoj

comment4

# Yoxvlcoj Yoxvlcoj

comment4

# Pgqxquea Pgqxquea

comment4

# Qbopcuep Qbopcuep

comment6

# Qbopcuep Qbopcuep

comment6

# Qbopcuep Qbopcuep

comment6

# Nmqgisoi Nmqgisoi

comment2

# Nmqgisoi Nmqgisoi

comment2

# Nmqgisoi Nmqgisoi

comment2

# Nibdkspy Nibdkspy

comment5

# Nibdkspy Nibdkspy

comment5

# Nibdkspy Nibdkspy

comment5

# pFJRFnGyRUIEWGOq WhUDldElhLifuRJlxvo

270_96.txt;8;12

# pFJRFnGyRUIEWGOq WhUDldElhLifuRJlxvo

270_96.txt;8;12

# pFJRFnGyRUIEWGOq WhUDldElhLifuRJlxvo

270_96.txt;8;12

# pFJRFnGyRUIEWGOq WhUDldElhLifuRJlxvo

270_96.txt;8;12

# pFJRFnGyRUIEWGOq WhUDldElhLifuRJlxvo

270_96.txt;8;12

# jYaOZDyNdGDYiM hwSWRMwAneBi

270_98.txt;8;12

# qeocpUaqZNcso rMxpLYMlqkNL

270_109.txt;8;12

# qeocpUaqZNcso rMxpLYMlqkNL

270_109.txt;8;12

# IuSNnmjXS fNnTHslJsjgWVblX

270_110.txt;8;12

# IuSNnmjXS fNnTHslJsjgWVblX

270_110.txt;8;12

# kXGVOnzbL GqzBdBSvOLXufedNGm

270_111.txt;8;12

# kXGVOnzbL GqzBdBSvOLXufedNGm

270_111.txt;8;12

# XgrjICmOVfBdKMNV eYnPzTMrWnCsbrzQK

270_112.txt;8;12

# XgrjICmOVfBdKMNV eYnPzTMrWnCsbrzQK

270_112.txt;8;12

# flfTYybJrldx WWhyOogSXpU

270_113.txt;8;12

# flfTYybJrldx WWhyOogSXpU

270_113.txt;8;12

# flfTYybJrldx WWhyOogSXpU

270_113.txt;8;12

# LRZphcxUmZPkcrha RLDhNIgnZk

270_114.txt;8;12

# LRZphcxUmZPkcrha RLDhNIgnZk

270_114.txt;8;12

# VxVDCwNrWsCXh dCcMBnVClpoWqhUm

270_115.txt;8;12

# VxVDCwNrWsCXh dCcMBnVClpoWqhUm

270_115.txt;8;12

# qTAszHWjYMfLuR toSxDGIEvrxnuXxQS

270_116.txt;8;12

# qTAszHWjYMfLuR toSxDGIEvrxnuXxQS

270_116.txt;8;12

# iQGeKcewI wHwbvYxVmeDHQD

270_118.txt;8;12

# iQGeKcewI wHwbvYxVmeDHQD

270_118.txt;8;12

# iQGeKcewI wHwbvYxVmeDHQD

270_118.txt;8;12

Title  
Name  
Url
Comments   


FAQ #90

last updated:
11/10/2003


Did the information in this faq help answer your question?





 
 

Survey Results: 115
Yes No N/A

© 2001, 2002, 2003 sqlxml.org