|
Why doesn't bulk loading work in .Net? (32986 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
8/12/2002 7:12 AM
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
8/22/2002 5:08 AM
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
10/29/2002 6:00 PM
peter
is there a way to store xml files in sql server 2000
# Always fails on connection string
2/21/2003 10:56 AM
Steven Grigsby
In VB.Net the line with the connection string always fails.
# Always fails on connection string
2/24/2003 9:53 AM
Bryant
I hope you changed it from what it is above.... (fill in yourserver with your server's name)
# Always fails on connection string
3/7/2003 8:17 AM
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
4/10/2003 1:16 AM
# Thread Mode does not work
6/20/2003 8:01 AM
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?
11/4/2003 7:40 AM
Carsten Daugaard
Jep, Gjalt Wijma wins this one for sure!
# re: Why doesn't bulk loading work in .Net?
12/5/2003 7:31 AM
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?
3/11/2004 10:45 AM
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?
7/27/2004 2:15 AM
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?
8/11/2004 9:13 PM
Cliffta
After struggling for several hours, Gjalt Wijma's example worked perfectly. Thanks so much!
# re: Why doesn't bulk loading work in .Net?
12/10/2004 1:01 AM
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?
2/18/2005 7:45 AM
Paddy
What about late-binding the sqlxmlbulkload com object, does that work?
# re: Why doesn't bulk loading work in .Net?
3/9/2005 12:35 AM
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?
3/16/2005 9:20 PM
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?
3/27/2005 9:15 PM
srinivas
how I can use the code above in Mypage.aspx.cs
# re: Why doesn't bulk loading work in .Net?
8/2/2005 3:46 AM
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?
8/17/2005 1:43 PM
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?
11/1/2005 10:30 PM
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?
11/30/2005 12:00 PM
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?
3/8/2006 1:36 AM
vcs
The code was very helpfull .
It worked for me.
Thanks and Regards
vcs
# The first solution is no longer valid
4/23/2006 3:16 AM
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?
5/4/2006 10:59 AM
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
6/22/2006 11:26 PM
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?
9/8/2006 2:50 AM
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?
10/2/2006 12:09 PM
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?
1/15/2007 1:34 PM
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?
7/17/2007 7:27 AM
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?
8/27/2007 5:12 AM
anand
what is namespace for SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class
# jdewiut ftps
9/27/2007 12:50 PM
uolsfe@mail.com
wyhen ahnel lqedf unzqow oqtfax dmjestf fxigoljw
# tujxsyz cyahxof
10/26/2007 10:11 PM
jmecafnl@mail.com
vpxg vnou hypl mknia dfcq chus xmbzoq
# xenical
4/10/2008 4:22 AM
xenical
Article Opinion <a
# ephedrine
4/10/2008 4:22 AM
ephedrine
Article Opinion <a
# lexapro
4/10/2008 4:22 AM
lexapro
Article Opinion <a
# viagra
4/10/2008 4:22 AM
viagra
Article Opinion <a
# ambien
4/10/2008 4:23 AM
ambien
Article Opinion <a
# xenical
6/19/2008 2:43 PM
xenical
Article Opinion <a
# viagra
6/19/2008 2:43 PM
viagra
Article Opinion <a
# ambien
6/19/2008 2:43 PM
ambien
Article Opinion <a
# ephedrine
6/19/2008 2:43 PM
ephedrine
Article Opinion <a
# lexapro
6/19/2008 2:43 PM
lexapro
Article Opinion <a
# dors.txt;5;5
7/10/2008 9:45 AM
iWzyOJuuhnSCpV
dors.txt;5;5
# dors.txt;5;5
7/10/2008 9:46 AM
iWzyOJuuhnSCpV
dors.txt;5;5
dors.txt;5;5
dors.txt;5;5
# dors.txt;5;5
7/12/2008 11:28 AM
rJizPFaxRN
dors.txt;5;5
# dors.txt;5;5
7/12/2008 11:28 AM
rJizPFaxRN
dors.txt;5;5
# berry
8/26/2008 7:02 PM
berry
s3aa7K hlgo8G3bdDa2Nx
# berry
8/26/2008 7:02 PM
berry
s3aa7K hlgo8G3bdDa2Nx
# lisa
9/12/2008 5:18 AM
lisa
Northern Virginia Voters Chime In washingtonpost.com/wp-dyn/content/video/2008/09/11/VI2008091102914.html
# lisa
9/12/2008 5:18 AM
lisa
Northern Virginia Voters Chime In washingtonpost.com/wp-dyn/content/video/2008/09/11/VI2008091102914.html
# john
9/12/2008 5:19 AM
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
9/12/2008 5:19 AM
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
9/12/2008 5:20 AM
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
9/12/2008 5:20 AM
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
9/12/2008 10:05 AM
lola
Has Obama Underestimated McCain? voices.washingtonpost.com/the-trail/2008/09/11/misunderestimating_mccain.html
# lola
9/12/2008 10:05 AM
lola
Has Obama Underestimated McCain? voices.washingtonpost.com/the-trail/2008/09/11/misunderestimating_mccain.html
# britney
9/12/2008 10:11 AM
britney
Sarah Palin: Who Do We Think She Is? washingtonpost.com/wp-dyn/content/article/2008/09/11/AR2008091103630.html
# britney
9/12/2008 10:11 AM
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?
9/22/2008 10:53 PM
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
10/14/2008 2:03 AM
sandra
HCZqCX gjsRt3i9fkls03GsAc
# alex
11/9/2008 7:46 AM
alex
oi8LtT fkjgh62vDfulv0s5FvSa
# martin
1/21/2009 5:06 PM
martin
Gc2D9G hi! its a nice site!
# martin
1/21/2009 5:06 PM
martin
Gc2D9G hi! its a nice site!
# martin
1/21/2009 5:07 PM
martin
Gc2D9G hi! its a nice site!
# martin
1/21/2009 5:08 PM
martin
Gc2D9G hi! its a nice site!
# martin
1/21/2009 5:09 PM
martin
Gc2D9G hi! its a nice site!
# re: Why doesn't bulk loading work in .Net?
4/20/2009 10:04 AM
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
5/10/2009 6:50 AM
richard
Rftmvw dkv7Rq29nVvzm74lApqSw
# richard
5/10/2009 6:51 AM
richard
Rftmvw dkv7Rq29nVvzm74lApqSw
# richard
5/10/2009 6:52 AM
richard
Rftmvw dkv7Rq29nVvzm74lApqSw
# richard
5/10/2009 6:52 AM
richard
Rftmvw dkv7Rq29nVvzm74lApqSw
Very nice site!
Very nice site!
# Cheap viagra
10/23/2009 7:00 AM
Very nice site!
Very nice site!
# Rdbxrzhz
11/5/2009 12:12 PM
Rdbxrzhz
comment1
# Rdbxrzhz
11/5/2009 12:13 PM
Rdbxrzhz
comment1
# Rdbxrzhz
11/5/2009 12:13 PM
Rdbxrzhz
comment1
# Itqgnzuh
11/5/2009 5:11 PM
Itqgnzuh
comment2
# Vdpaqysv
11/5/2009 10:13 PM
Vdpaqysv
comment6
# Vdpaqysv
11/5/2009 10:13 PM
Vdpaqysv
comment6
# Vdpaqysv
11/5/2009 10:14 PM
Vdpaqysv
comment6
# Zsjzyenp
11/6/2009 3:12 AM
Zsjzyenp
comment5
# Gqgyjkwt
11/6/2009 8:32 AM
Gqgyjkwt
comment2
# Gqgyjkwt
11/6/2009 8:33 AM
Gqgyjkwt
comment2
# Gqgyjkwt
11/6/2009 8:33 AM
Gqgyjkwt
comment2
# Egjepuwe
11/6/2009 1:30 PM
Egjepuwe
comment5
# Egjepuwe
11/6/2009 1:30 PM
Egjepuwe
comment5
# Egjepuwe
11/6/2009 1:31 PM
Egjepuwe
comment5
# Gtzdcstr
11/6/2009 6:18 PM
Gtzdcstr
comment2
# Gtzdcstr
11/6/2009 6:19 PM
Gtzdcstr
comment2
# Gtzdcstr
11/6/2009 6:20 PM
Gtzdcstr
comment2
# Adnfykiy
11/6/2009 11:41 PM
Adnfykiy
comment3
# Adnfykiy
11/6/2009 11:42 PM
Adnfykiy
comment3
# Ytgimhtg
11/7/2009 5:02 AM
Ytgimhtg
comment2
# Ytgimhtg
11/7/2009 5:03 AM
Ytgimhtg
comment2
# Ytgimhtg
11/7/2009 5:03 AM
Ytgimhtg
comment2
# Yaafecnj
11/7/2009 10:30 AM
Yaafecnj
comment1
# Yaafecnj
11/7/2009 10:39 AM
Yaafecnj
comment1
# Qnvzyqvj
11/7/2009 3:35 PM
Qnvzyqvj
comment5
# Qnvzyqvj
11/7/2009 3:35 PM
Qnvzyqvj
comment5
# Rofjuvgv
11/7/2009 8:55 PM
Rofjuvgv
comment6
# Rofjuvgv
11/7/2009 8:55 PM
Rofjuvgv
comment6
# Rofjuvgv
11/7/2009 8:56 PM
Rofjuvgv
comment6
# Ducypprh
11/8/2009 2:40 AM
Ducypprh
comment5
# Kinregwe
11/8/2009 8:15 AM
Kinregwe
comment3
# Kinregwe
11/8/2009 8:16 AM
Kinregwe
comment3
# Kinregwe
11/8/2009 8:17 AM
Kinregwe
comment3
# Kvotidje
11/8/2009 1:48 PM
Kvotidje
comment3
# Kvotidje
11/8/2009 1:48 PM
Kvotidje
comment3
# Kvotidje
11/8/2009 1:49 PM
Kvotidje
comment3
# Rzagmwmt
11/8/2009 7:11 PM
Rzagmwmt
comment4
# Rzagmwmt
11/8/2009 7:11 PM
Rzagmwmt
comment4
# Kvojxtdk
11/9/2009 12:38 AM
Kvojxtdk
comment4
# Ysqdigum
11/9/2009 6:05 AM
Ysqdigum
comment6
# Sftstrlf
11/9/2009 11:23 AM
Sftstrlf
comment1
# Sftstrlf
11/9/2009 11:24 AM
Sftstrlf
comment1
# Sftstrlf
11/9/2009 11:24 AM
Sftstrlf
comment1
# Cmfebijy
11/9/2009 4:23 PM
Cmfebijy
comment6
# Cmfebijy
11/9/2009 4:24 PM
Cmfebijy
comment6
# Fyypsdel
11/9/2009 9:32 PM
Fyypsdel
comment2
# Fyypsdel
11/9/2009 9:33 PM
Fyypsdel
comment2
# Fyypsdel
11/9/2009 9:33 PM
Fyypsdel
comment2
# Anjkioqp
11/10/2009 2:51 AM
Anjkioqp
comment2
# Anjkioqp
11/10/2009 2:52 AM
Anjkioqp
comment2
# Anjkioqp
11/10/2009 2:52 AM
Anjkioqp
comment2
# Ravxkmav
11/10/2009 7:56 AM
Ravxkmav
comment1
# Ravxkmav
11/10/2009 7:57 AM
Ravxkmav
comment1
# Nmcmwjsg
11/10/2009 12:47 PM
Nmcmwjsg
comment4
# Nmcmwjsg
11/10/2009 12:47 PM
Nmcmwjsg
comment4
# Nmcmwjsg
11/10/2009 12:48 PM
Nmcmwjsg
comment4
# Ttvduzqm
11/10/2009 5:30 PM
Ttvduzqm
comment5
# Ttvduzqm
11/10/2009 5:31 PM
Ttvduzqm
comment5
# Ttvduzqm
11/10/2009 5:32 PM
Ttvduzqm
comment5
# Vvdloloj
11/10/2009 10:19 PM
Vvdloloj
comment5
# Vvdloloj
11/10/2009 10:20 PM
Vvdloloj
comment5
# Zbqhsmzy
11/11/2009 3:07 AM
Zbqhsmzy
comment5
# Zbqhsmzy
11/11/2009 3:07 AM
Zbqhsmzy
comment5
# Bofqtggm
11/11/2009 7:39 AM
Bofqtggm
comment5
# Bofqtggm
11/11/2009 7:46 AM
Bofqtggm
comment5
# Umnyassg
11/11/2009 12:10 PM
Umnyassg
comment3
# Umnyassg
11/11/2009 12:11 PM
Umnyassg
comment3
# Umnyassg
11/11/2009 12:12 PM
Umnyassg
comment3
# Hskhmftj
11/11/2009 3:44 PM
Hskhmftj
comment5
# Hskhmftj
11/11/2009 3:46 PM
Hskhmftj
comment5
# Hskhmftj
11/11/2009 3:50 PM
Hskhmftj
comment5
# Jkvndgzn
11/11/2009 5:51 PM
Jkvndgzn
comment5
# Jkvndgzn
11/11/2009 5:52 PM
Jkvndgzn
comment5
# Ywfghqsf
11/11/2009 7:59 PM
Ywfghqsf
comment5
# Ywfghqsf
11/11/2009 7:59 PM
Ywfghqsf
comment5
# Ywfghqsf
11/11/2009 8:00 PM
Ywfghqsf
comment5
# Fxintwti
11/11/2009 10:05 PM
Fxintwti
comment3
# Opwqqlaq
11/12/2009 12:13 AM
Opwqqlaq
comment4
# Opwqqlaq
11/12/2009 12:14 AM
Opwqqlaq
comment4
# Fvzdkmjx
11/12/2009 2:20 AM
Fvzdkmjx
comment4
# Fvzdkmjx
11/12/2009 2:21 AM
Fvzdkmjx
comment4
# Fvzdkmjx
11/12/2009 2:22 AM
Fvzdkmjx
comment4
# Itgfrksb
11/12/2009 4:28 AM
Itgfrksb
comment6
# Itgfrksb
11/12/2009 4:29 AM
Itgfrksb
comment6
# Qpgkmpnw
11/12/2009 6:40 AM
Qpgkmpnw
comment3
# Fymoiehr
11/12/2009 8:49 AM
Fymoiehr
comment1
# Fymoiehr
11/12/2009 8:50 AM
Fymoiehr
comment1
# Kgojzdev
11/12/2009 10:57 AM
Kgojzdev
comment4
# Kgojzdev
11/12/2009 10:58 AM
Kgojzdev
comment4
# Drxfzueq
11/12/2009 1:04 PM
Drxfzueq
comment5
# Drxfzueq
11/12/2009 1:04 PM
Drxfzueq
comment5
# Drxfzueq
11/12/2009 1:05 PM
Drxfzueq
comment5
# Ceshtwmp
11/12/2009 3:07 PM
Ceshtwmp
comment6
# Ceshtwmp
11/12/2009 3:08 PM
Ceshtwmp
comment6
# Ceshtwmp
11/12/2009 3:09 PM
Ceshtwmp
comment6
# Zjvdbdfa
11/12/2009 5:16 PM
Zjvdbdfa
comment3
# Olsaablj
11/12/2009 7:23 PM
Olsaablj
comment1
# Olsaablj
11/12/2009 7:24 PM
Olsaablj
comment1
# Uvzctyeq
11/12/2009 9:29 PM
Uvzctyeq
comment3
# Uvzctyeq
11/12/2009 9:29 PM
Uvzctyeq
comment3
# Uvzctyeq
11/12/2009 9:30 PM
Uvzctyeq
comment3
# Dqststxk
11/12/2009 11:37 PM
Dqststxk
comment1
# Dqststxk
11/12/2009 11:38 PM
Dqststxk
comment1
# Dqststxk
11/12/2009 11:38 PM
Dqststxk
comment1
# Igzkmwan
11/13/2009 1:56 AM
Igzkmwan
comment4
# Igzkmwan
11/13/2009 1:57 AM
Igzkmwan
comment4
# Igzkmwan
11/13/2009 1:57 AM
Igzkmwan
comment4
# Hlvnejym
11/13/2009 4:11 AM
Hlvnejym
comment1
# Hlvnejym
11/13/2009 4:11 AM
Hlvnejym
comment1
# Fksgmcgt
11/13/2009 6:22 AM
Fksgmcgt
comment6
# Fksgmcgt
11/13/2009 6:23 AM
Fksgmcgt
comment6
# Fksgmcgt
11/13/2009 6:23 AM
Fksgmcgt
comment6
# Vlypbpcg
11/13/2009 8:41 AM
Vlypbpcg
comment5
# Vlypbpcg
11/13/2009 8:41 AM
Vlypbpcg
comment5
# Cheap viagra
11/13/2009 12:54 PM
Very nice site!
Very nice site!
# Grjupjli
11/14/2009 2:54 AM
Grjupjli
comment4
# Zsbkboip
11/15/2009 4:34 AM
Zsbkboip
comment4
# Zsbkboip
11/15/2009 4:35 AM
Zsbkboip
comment4
# Zsbkboip
11/15/2009 4:36 AM
Zsbkboip
comment4
# Cflupejm
11/15/2009 6:57 AM
Cflupejm
comment1
# Cflupejm
11/15/2009 6:58 AM
Cflupejm
comment1
# Cflupejm
11/15/2009 6:59 AM
Cflupejm
comment1
# Fojhropd
11/15/2009 9:20 AM
Fojhropd
comment1
# Fojhropd
11/15/2009 9:21 AM
Fojhropd
comment1
# Qeldaxnd
11/15/2009 11:37 AM
Qeldaxnd
comment4
# Qeldaxnd
11/15/2009 11:38 AM
Qeldaxnd
comment4
# Qeldaxnd
11/15/2009 11:39 AM
Qeldaxnd
comment4
# Indbvpwb
11/15/2009 1:53 PM
Indbvpwb
comment4
# Indbvpwb
11/15/2009 1:54 PM
Indbvpwb
comment4
# Indbvpwb
11/15/2009 1:54 PM
Indbvpwb
comment4
# Eaewseus
11/15/2009 4:09 PM
Eaewseus
comment6
# Eaewseus
11/15/2009 4:10 PM
Eaewseus
comment6
# Eaewseus
11/15/2009 4:11 PM
Eaewseus
comment6
# Xeftewbv
11/15/2009 6:29 PM
Xeftewbv
comment6
# Xeftewbv
11/15/2009 6:30 PM
Xeftewbv
comment6
# Vjaykpua
11/15/2009 8:49 PM
Vjaykpua
comment6
# Yoxvlcoj
11/15/2009 11:11 PM
Yoxvlcoj
comment4
# Yoxvlcoj
11/15/2009 11:12 PM
Yoxvlcoj
comment4
# Yoxvlcoj
11/15/2009 11:12 PM
Yoxvlcoj
comment4
# Pgqxquea
11/16/2009 1:36 AM
Pgqxquea
comment4
# Qbopcuep
11/16/2009 4:00 AM
Qbopcuep
comment6
# Qbopcuep
11/16/2009 4:00 AM
Qbopcuep
comment6
# Qbopcuep
11/16/2009 4:01 AM
Qbopcuep
comment6
# Nmqgisoi
11/16/2009 6:17 AM
Nmqgisoi
comment2
# Nmqgisoi
11/16/2009 6:17 AM
Nmqgisoi
comment2
# Nmqgisoi
11/16/2009 6:18 AM
Nmqgisoi
comment2
# Nibdkspy
11/16/2009 8:33 AM
Nibdkspy
comment5
# Nibdkspy
11/16/2009 8:34 AM
Nibdkspy
comment5
# Nibdkspy
11/16/2009 8:36 AM
Nibdkspy
comment5
270_96.txt;8;12
270_96.txt;8;12
270_96.txt;8;12
270_96.txt;8;12
270_96.txt;8;12
# jYaOZDyNdGDYiM
11/17/2009 9:56 PM
hwSWRMwAneBi
270_98.txt;8;12
# qeocpUaqZNcso
11/18/2009 1:06 AM
rMxpLYMlqkNL
270_109.txt;8;12
# qeocpUaqZNcso
11/18/2009 1:07 AM
rMxpLYMlqkNL
270_109.txt;8;12
270_110.txt;8;12
270_110.txt;8;12
270_111.txt;8;12
270_111.txt;8;12
# XgrjICmOVfBdKMNV
11/18/2009 10:33 AM
eYnPzTMrWnCsbrzQK
270_112.txt;8;12
# XgrjICmOVfBdKMNV
11/18/2009 10:34 AM
eYnPzTMrWnCsbrzQK
270_112.txt;8;12
# flfTYybJrldx
11/18/2009 1:32 PM
WWhyOogSXpU
270_113.txt;8;12
# flfTYybJrldx
11/18/2009 1:33 PM
WWhyOogSXpU
270_113.txt;8;12
# flfTYybJrldx
11/18/2009 1:34 PM
WWhyOogSXpU
270_113.txt;8;12
# LRZphcxUmZPkcrha
11/18/2009 4:28 PM
RLDhNIgnZk
270_114.txt;8;12
# LRZphcxUmZPkcrha
11/18/2009 4:29 PM
RLDhNIgnZk
270_114.txt;8;12
270_115.txt;8;12
270_115.txt;8;12
270_116.txt;8;12
270_116.txt;8;12
270_118.txt;8;12
270_118.txt;8;12
270_118.txt;8;12
# Is it yours too
12/25/2009 5:39 AM
Very nice site!
Very nice site!
# Cheap viagra
12/31/2009 10:17 PM
Very nice site!
Very nice site!
Very nice site!
|