がんふぃーるど室長の不定期ブログ

ただいま助手と悪戦苦闘中!

  ホーム :: 連絡をする :: 同期する  :: Login
投稿数  90  :: 記事 7 :: コメント 14764 :: トラックバック 13

ニュース


自己紹介

名前:がんふぃーるど
肩書:室長
種別:人間・男
資格一覧:
MCP 70-215 Installing, Configurating, and Administering Microsoft Windows 2000 Server
MCTS .NET Framework 2.0 - Distributed Applications
MCTS .NET Framework 2.0 - Web Applications

犬紹介


名前:なうら
肩書:助手
種別:犬・狆・メス
誕生日:2006/7/9
特技:鼻水飛ばし、甘噛、奇襲・急襲・強襲、そそう、お手、お座り、待て

記事カテゴリ

書庫

日記カテゴリ

ギャラリ

DataSet vs DataReader

某掲示板で.NET2.0のDataSet話題が少しだけ上がったので、気になって調べました。
DataSetとDataReaderはそれぞれ長所と短所があると思いますが、パフォーマンスってことでちょいといろいろやってみました。

テスト方法

テストに使用するデータベース

  • SQL Server 2000 Developer Edition
  • テーブルのフィールドは4つ(int(PK), varchar(50), decimal, char(10) )
  • 総レコード数は2万

測定する対象オブジェクト/メソッド

  • SqlDataAdapterオブジェクトの生成からFillメソッドが完了するまでの時間。

using(SqlConnection con = new SqlConnection(connectionString))
{
con.Open();
SqlCommand command = con.CreateCommand();
command.CommandText = sqlQuery;
  // 測定開始
SqlDataAdapter adapt = new SqlDataAdapter(command);
DataSet ds = new DataSet();
adapt.Fill(ds);
// 測定終了
}

  • SqlCommand.ExecuteReaderメソッドからSqlDataReader.Closeメソッド完了までの時間。

using(SqlConnection con = new SqlConnection(connectionString))
{
con.Open();
SqlCommand command = con.CreateCommand();
command.CommandText = sqlQuery;
  // 測定開始
SqlDataReader reader = command.ExecuteReader();
while(reader.Read())
{
}
reader.Close();
// 測定終了
}

測定方法

  • 測定をそれぞれ7回行い、最大値と最小値を除く5回の平均を取得する。
  • 測定する時間はDateTime.Ticksを使用する。1Ticksは100ナノ秒でTicksの1000万の位の十進数が秒に相当します(文献(1)のこの回りくどい表現は何なんでしょう…)。

測定環境

  • DBサーバ
    CPU PentiumM 1.8GHz 
    Memory 1GB
  • クライアント
    CPU Pentium4 2.66GHz (L1キャッシュとL2キャッシュはOFF)
    Memory 1GB

クライアントの方がスペックがいいように見えますが、実はL1とL2キャッシュを切っているので、パフォーマンスは激悪です。(立ち上げるのに30分かかった(;´Д`)

L1とL2キャッシュを切った理由は簡単で、普通のPCでDataReaderなりDataAdapterを使用するなりした場合、高速過ぎて下記のSQLの実行時間t3が全体の大きな部分を占めてしまうことになってしまうのです。ぶっちゃけSQLの実行時間t3を短くできる手段は持ち合わせていないので、逆にt2の部分を相対的にでかくしてやろうってことにしただけです。

測定できる時間は下図のt1部分なので、t2>>t3となればt1≒t2となるはずなのです。

ということで、計測を行った結果が以下の通り。

結果 .NET 1.1

レコード数

DataReader

DataSet

100

156250

625000

200

312500

1281250

300

468750

2000000

400

531250

2500000

500

656250

3156250

大体5倍程度の差が出ていますね。ネットワークを監視してデータベースとクライアント間のネットワークを監視できればよかったんですが、如何せん劣悪なPCでEtherealを起動するわけにはいきません。ルータに監視用のインタフェースは無いし、バカハブも手元にはねっす。
とりあえず、.NET1.1と.NET2.0の(定性的な)比較はできますので、.NET2.0の方の計測もやってみます。

結果 .NET2.0

レコード数

DataReader

DataSet

100

156250

937500

200

281250

1843750

300

375000

2781250

400

500000

3750000

500

687500

4750000

差が7~8倍に増えてますね…DataReaderの結果が.NET 1.1と変わらないことを考慮すると、DataAdapterかDataSetが遅くなったんでしょう。かなりざっくりとした測定をしているので、あまりはっきりしたことは言えませんが、もしかしたらDataTableの機能を充実させた分パフォーマンスが落ちたのかもしれません。

 

あとは、.NET2.0ではDataReaderをDataTableへと変換することができるようになったので、DataReaderで読み込んだ後にDataTable.Loadを使用しDataReaderをDataTableに変換した結果も見てみたいと思います。

DataTable dt = new DataTable();
  dt.Load(reader);

結果 .NET2.0 DataReader2DataTable

レコード数

DataReader2DataTable

DataSet

100

1968750

937500

200

3562500

1843750

300

4500000

2781250

400

6031250

3750000

500

7250000

4750000

うむ。遅い!DataSetを直接使用するよりも遅いですね。

DataSet vs DataReader グラフ

 

まとめ

文献(1)の様に30倍も差がある結果はでませんでしたが、やっぱり速度差はそれなりにあるみたいです。そんでもって.NET2.0になってちょびっと遅くなったと。

とはいえ、余程レコード数が多くならない限り処理に1秒以上かかることはあまりないですし、文献(2)や文献(3)で述べられてるように、開発効率などはDataSetを使用したほうがサクっとできる場合があります(Genericの登場でArrayListが大活躍するかもしれませんが…)。N階層アーキテクチャを採用した場合、各層を伝播するオブジェクトとしてDataReaderを使用するのは気持ち悪いし、そうするとO/Rマッパー、もしくはそれに近い処理が必要となってしまいます。

この辺はプロジェクトの規模や方針に合わせてやっていくしかなさそうですが、パフォーマンスを考えるうえではDataReaderい軍配が上がりそうです。

参考文献
(1) A Speed Freak's Guide to Retrieving Data in ADO.NET
(2) Why I Don't Use DataSets in My ASP.NET Applications
(3) More On Why I Don't Use DataSets in My ASP.NET Applications

投稿日時 : 2007年2月6日 0:34

コメント

# re: DataSet vs DataReader 検証 .NET2.0 2008/11/09 0:39 Gates
DataReader使うのは大量データをデータベースからファイルに吐くときぐらいだろ?

# DataTableのLoad メソッド 2008/12/08 1:45 やじゅ@アプリケーション・ラボ わんくま支局
DataTableのLoad メソッド

# weJAFQUfyeA 2014/07/18 20:15 http://crorkz.com/
hK0arU Thanks again for the blog.Really looking forward to read more. Awesome.

# hCUYpuybfKg 2014/08/07 8:49 http://crorkz.com/
ET5IZT Thanks for sharing, this is a fantastic post.Really looking forward to read more.

# dznJQrSzkAENYLG 2014/09/09 15:15 http://musiccomposingsoftware.org.
I'll immediately clutch your rss as I can't in finding your e-mail subscription link or e-newsletter service. Do you've any? Please let me understand in order that I may just subscribe. Thanks.

# zmugaYVguuqjfJEZ 2018/12/21 1:01 https://www.suba.me/
b77IPk looking for. Would you offer guest writers to write content available for you?

# ovfqAPRRUwdqNFETv 2018/12/24 21:53 https://preview.tinyurl.com/ydapfx9p
Valuable information. Lucky me I found your web site by accident, and I am shocked why this accident didn at happened earlier! I bookmarked it.

# XsivgmruLNDFC 2018/12/27 3:24 https://www.youtube.com/channel/UCVRgHYU_cMexaEqe3
Tapes and Containers are scanned and tracked by CRIM as data management software.

# rkNJUwYnxcY 2018/12/27 11:47 http://corel.ru/bitrix/redirect.php?event1=&ev
You are my aspiration , I own few web logs and very sporadically run out from to brand.

# HATzVZgspB 2018/12/27 15:11 https://www.youtube.com/watch?v=SfsEJXOLmcs
You made some first rate points there. I regarded on the web for the problem and found most individuals will go along with together with your website.

# tfyBKnxTewwQTIG 2018/12/27 18:49 http://hhcn.cbtvnetwork.com/hhcncommunity/blog/vie
Spot on with this write-up, I truly feel this amazing site needs a lot more attention. I all probably be back again to read through more, thanks for the information!

# KlDSPlwdojfZGVTm 2018/12/27 21:09 http://abookmark.site/story.php?title=realtor-wasa
Very careful design and outstanding articles, same miniature moreover we need.

# VuUvmHneATkLQs 2018/12/28 11:22 https://www.bolusblog.com/contact-us/
I value the blog post.Much thanks again. Much obliged.

# mlHyohDJjhwYHjFMAG 2018/12/28 13:49 http://sleepaccessories.pw/story.php?id=4095
Thanks so much for the blog.Thanks Again. Awesome.

# YVGIPrsjlXsXVOhxBO 2018/12/28 14:04 http://betacommseo.site/story.php?id=5509
With thanks for sharing your awesome websites.|

# KhBjzzAaHjUiKQIY 2018/12/28 23:21 http://www.mipedu.nhc.ac.uk/UserProfile/tabid/106/
This is my first time go to see at here and i am really happy to read everthing at alone place.|

# UjHcGIrLYsLeoWhE 2018/12/29 1:04 http://shotboxstudios.com/editorial-photography-be
Ridiculous story there. What occurred after? Thanks!

# iLiRJbqDnBcqq 2018/12/29 2:47 http://cutt.us/hamptonbay-lighting
Really informative blog.Much thanks again. Awesome.

Your style is very unique in comparison to other folks I have read stuff from. I appreciate you for posting when you ave got the opportunity, Guess I all just bookmark this site.

# HOEpwStCpCzVPbzJvV 2018/12/29 10:25 https://www.hamptonbaylightingcatalogue.net
Really enjoyed this article post.Thanks Again. Really Great.

# sYcYJAaRipyDIVBfGip 2019/01/01 0:34 http://wiki.abecbrasil.org.br/mediawiki-1.26.2/ind
wonderful points altogether, you just gained a new reader. What might you recommend in regards to your submit that you just made some days ago? Any certain?

# dzjAjgiTXYgOONuZO 2019/01/02 21:07 http://kidsandteens-manuals.space/story.php?id=220
Regards for helping out, wonderful info.

# XLGxEcTrIjwQO 2019/01/03 4:42 http://olympicpartners.net/__media__/js/netsoltrad
Its hard to find good help I am constantnly proclaiming that its difficult to procure good help, but here is

# AUKUeIhpnJfRxaZMyO 2019/01/03 21:47 http://snowshowels.site/story.php?id=370
It as nearly impossible to find experienced people on this subject, however, you sound like you know what you are talking about! Thanks

# lZohKcQxbvEOzpgRKhF 2019/01/05 7:17 http://dvfuller.com/__media__/js/netsoltrademark.p
Your article is truly informative. More than that, it??s engaging, compelling and well-written. I would desire to see even more of these types of great writing.

# YEtXwjRKSasaJGhy 2019/01/05 10:53 http://knex2us.net/__media__/js/netsoltrademark.ph
There is definately a great deal to find out about this subject. I really like all of the points you ave made.

# ZBSLTtMIvzcMRbYv 2019/01/06 6:42 http://eukallos.edu.ba/
Really appreciate you sharing this article. Want more.

# RTmdhvOjonM 2019/01/07 5:16 http://www.anthonylleras.com/
There is definately a great deal to learn about this issue. I like all the points you ave made.

# VQVBccOiwNRzFkQ 2019/01/07 7:03 https://status.online
Simply wish to say your article is as astonishing.

# dvyKrInelGRF 2019/01/07 23:57 https://www.youtube.com/watch?v=yBvJU16l454
love, love, love the dirty lime color!!!

# ZaUkOxGpQRpdUYFroH 2019/01/09 23:00 https://www.youtube.com/watch?v=3ogLyeWZEV4
I was studying some of your articles on this internet site and I think this web site is very instructive! Keep on posting.

# oDCFgRjXGhEPYdeQzQh 2019/01/11 5:37 http://www.alphaupgrade.com
Wonderful work! This is the type of information that should be shared around the net. Shame on the search engines for not positioning this post higher! Come on over and visit my web site. Thanks =)

# pfKUkqbstyp 2019/01/11 20:30 http://spheresofa.net/bbs/yybbs.php?page=1
Just Browsing While I was surfing today I noticed a great article concerning

This website definitely has all the information I needed concerning this subject and didn at know who to ask.

Really enjoyed this blog.Much thanks again. Fantastic.

# sPbFGQNeOUenboMqJz 2019/01/15 3:16 https://cyber-hub.net/
While I was surfing yesterday I saw a excellent post concerning

# GqUxmLnAzlXEHBQm 2019/01/15 5:21 http://makemobilion.site/story.php?id=5919
This web site certainly has all of the information I wanted about this subject and didn at know who to ask.

# zRexysZJtZX 2019/01/15 13:23 https://www.roupasparalojadedez.com
Wow, incredible blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is wonderful, let alone the content!

# LhemnnKEOcyjurf 2019/01/15 19:32 https://www.bintheredumpthat.com/
Your style is really unique in comparison to other folks I have read stuff from. Thanks for posting when you have the opportunity, Guess I will just book mark this page.

# DimHcMUDXkWJgMFqIZ 2019/01/15 22:02 http://dmcc.pro/
Many thanks for sharing this fine write-up. Very inspiring! (as always, btw)

# aGLlwauMGcEXRjQ 2019/01/17 2:06 http://www.nikoniko.server-shared.com/freecgi/Easy
subject but typically folks don at talk about these issues.

# nplJiOUvKUQJG 2019/01/17 4:06 http://qycyghyguxugh.mihanblog.com/post/comment/ne
There as certainly a great deal to find out about this topic. I love all the points you have made.

# kSTtKeiLPeetYj 2019/01/17 5:50 http://camelcocoa10.drupalo.org/post/5-knitting-ac
You made some clear points there. I looked on the internet for the topic and found most individuals will agree with your website.

# yVbJWhQXFtsj 2019/01/17 10:49 http://hhcn.cbtvnetwork.com/hhcncommunity/blog/vie
whoah this weblog is wonderful i like reading your articles. Keep up the good paintings! You already know, many people are looking around for this information, you can help them greatly.

# GGbIWEfqyJZfGRLFvka 2019/01/21 22:33 http://withinfp.sakura.ne.jp/eso/index.php/1399399
I value the article.Much thanks again. Much obliged.

# xLkobIlScD 2019/01/23 8:06 http://odbo.biz/users/MatPrarffup707
which gives these kinds of stuff in quality?

# mqnDNSbKCkGouxqbyt 2019/01/23 20:04 http://sport.sc/users/dwerlidly298
Looking forward to reading more. Great blog article.Much thanks again. Fantastic.

we came across a cool web page that you may possibly appreciate. Take a look for those who want

# fxkmskPbqzoVtiD 2019/01/24 23:01 http://www.philadelphiafuel.net/__media__/js/netso
ItaаАа?б?Т€Т?а?а?аАа?б?Т€Т?аБТ?s actually a great and useful piece of information. I am glad that you shared this useful info with us. Please keep us informed like this. Thanks for sharing.

# WJyYUpoxrd 2019/01/25 3:54 https://justpaste.it/7q7u9
Im no expert, but I suppose you just crafted an excellent point. You clearly comprehend what youre talking about, and I can really get behind that. Thanks for being so upfront and so truthful.

Very good blog.Much thanks again. Really Great.

I was suggested this blog by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my trouble. You are incredible! Thanks!

Thanks for the article.Thanks Again. Great.

lot of work? I am brand new to blogging but I do write in my diary

# IdPSJGwGhjJzwdmGYcm 2019/01/26 15:12 https://www.nobleloaded.com/category/blogging-tips
light bulbs are good for lighting the home but stay away from incandescent lamps simply because they produce so substantially heat

# kYshDFHtzv 2019/01/26 17:27 https://www.womenfit.org/c/
This info is worth everyone as attention. How can I find out more?

# ioWDtFtOGNg 2019/01/28 16:46 https://www.youtube.com/watch?v=9JxtZNFTz5Y
the home of some of my teammates saw us.

# TAznouIaOgurW 2019/01/29 3:52 https://www.hostingcom.cl/hosting-ilimitado
It as not that I want to copy your internet site, but I really like the style. Could you tell me which design are you using? Or was it custom made?

# qRZOmDVuMMgCQx 2019/01/29 17:10 http://topcoolauto.today/story.php?id=4724
It as in reality a great and helpful piece of information. I am satisfied that you simply shared this helpful tidbit with us. Please stay us up to date like this. Thanks for sharing.

# WrxUmZJCyoOGP 2019/01/29 20:26 http://integritas-asz.nl/course/being-productive-a
This is one awesome blog.Thanks Again. Much obliged.

# ztndfmHZVLZJlKzsh 2019/01/30 6:46 http://seccaraholic.pw/story.php?id=6070
information. The article has truly peaked my interest.

# ROvgnnHcWxfFiEFhSE 2019/01/31 19:19 https://www.udemy.com/user/drova-alixa/
You can certainly see your enthusiasm in the work you write. The world hopes for even more passionate writers like you who are not afraid to say how they believe. Always go after your heart.

information a lot. I was seeking this particular info

# vEHcIjvtFtE 2019/02/01 5:26 https://weightlosstut.com/
It as hard to come by experienced people for this topic, however, you seem like you know what you are talking about! Thanks

Outstanding post, I believe blog owners should larn a lot from this web blog its very user friendly.

# iEZMKHBrZVbh 2019/02/01 21:17 https://tejidosalcrochet.cl/crochet-paso-a-paso/co
I really liked your article post.Thanks Again. Really Great.

# QeXwAqLesAXkH 2019/02/03 1:07 https://www.fanfiction.net/~oughts
not positioning this submit upper! Come on over and talk over with my website.

# hPUIofiBFSkj 2019/02/03 5:32 https://stocktwits.com/hatelt
Its hard to find good help I am forever saying that its difficult to find quality help, but here is

# QmCVRHQFwKMPPRc 2019/02/03 14:15 http://soulstonefoundation.org/?option=com_k2&
some times its a pain in the ass to read what blog owners wrote but this site is real user friendly !.

# cUxxYZzYVTZDvC 2019/02/03 16:29 https://www.yomart.store/user/profile/66566
Wow, awesome blog structure! How long have you ever been blogging for? you make blogging glance easy. The whole look of your web site is fantastic, as well as the content material!

# CLdxsKfYhFRp 2019/02/03 18:43 http://bgtopsport.com/user/arerapexign519/
What as up I am from Australia, this time I am viewing this cooking related video at this web page, I am really happy and learning more from it. Thanks for sharing.

# ScaphkDAIaC 2019/02/03 21:00 http://odbo.biz/users/MatPrarffup286
Thanks for some other great article. Where else may anyone get that type of information in such a perfect method of writing? I have a presentation next week, and I am on the look for such information.

# KxSbhNbHimnOVw 2019/02/04 0:16 https://www.minds.com/blog/view/938490464392990720
Looking forward to reading more. Great blog article.Much thanks again. Fantastic.

# ojkhxblINwgIJvMHSj 2019/02/05 1:48 http://metallom.ru/board/tools.php?event=profile&a
Rice earned this name due to his skill and success in the new cheap nike jerseys season is doomed to suffer from the much feared lockout.

# dKvlBjhMtuXPq 2019/02/05 6:49 https://womanend31.bloguetrotter.biz/2019/02/01/ac
This is a list of words, not an essay. you might be incompetent

# xtTdhPbGsdqYEJY 2019/02/05 14:03 https://www.ruletheark.com/white-flag-tribes/
wonderful points altogether, you just won a new reader. What would you recommend about your post that you made some days ago? Any sure?

# fmBkMquYBb 2019/02/06 4:24 http://bgtopsport.com/user/arerapexign221/
Thanks so much for the blog post.Really looking forward to read more. Fantastic.

# tfDphKhSBEhRSWjj 2019/02/07 16:44 https://drive.google.com/open?id=1-NMLfAL5LU0WswRD
There as certainly a lot to find out about this subject. I love all of the points you have made.

# NbsTQkbVPdfzwMNMcC 2019/02/07 21:26 http://my.ipdatainfo.com/www/www.so0912.com%2Fhome
Some truly superb info , Glad I observed this.

# zhduZvCheLfJHKzFjd 2019/02/08 6:49 http://seo-usa.pro/story.php?id=7047
Whoa! This blog looks just like my old one! It as on a totally different subject but

# kqjOVZABCGmuIsUybJH 2019/02/11 18:05 http://sc.afcd.gov.hk/gb/www.tuscancountrystore.co
spelling issues and I to find it very troublesome to tell the truth however I will definitely come back again.

# aLrCfFbGwT 2019/02/12 1:02 https://www.openheavensdaily.com
It as hard to search out educated individuals on this matter, however you sound like you understand what you are speaking about! Thanks

# EQuvCLxdeKCbiRt 2019/02/12 7:46 https://phonecityrepair.de/
Im obliged for the post.Thanks Again. Keep writing.

# IOgKOIspBFzyoow 2019/02/13 14:57 http://bazardelmercado.net/__media__/js/netsoltrad
Your style is really unique in comparison to other people I have read stuff from. I appreciate you for posting when you ave got the opportunity, Guess I all just book mark this page.

# tUEuMcLpXIUfmQ 2019/02/14 8:13 https://hyperstv.com/affiliate-program/
Wow, that as what I was looking for, what a stuff! present here at this website, thanks admin of this site.

# YJalFyHxEJQEo 2019/02/15 5:34 http://www.kremlinrus.ru/article/1066/92778/
Really appreciate you sharing this article post. Fantastic.

# WVjXorrbNItjnRIWPwx 2019/02/15 10:02 http://a1socialbookmarking.xyz/story.php?title=vis
My brother recommended I might like this web site. He was entirely right. This post actually made my day. You cann at imagine simply how much time I had spent for this info! Thanks!

I value the article post.Thanks Again. Awesome.

# veYZlvFCirFsQtQ 2019/02/16 2:22 http://cucujustfunny.club/story.php?id=13649
Thanks again for the blog post. Fantastic.

# zOfHJGgDmhMpPwJ 2019/02/18 22:51 https://www.highskilledimmigration.com/
Tumblr article I saw someone talking about this on Tumblr and it linked to

# qrnKOUWDfpm 2019/02/20 16:40 https://www.instagram.com/apples.official/
Well I really liked studying it. This subject provided by you is very practical for accurate planning.

# tinnAtQQlVjLrjsE 2019/02/20 19:14 https://giftastek.com/product-category/computer-la
This is a really good tip particularly to those fresh to the blogosphere. Brief but very accurate info Thanks for sharing this one. A must read article!

# aUIYWggiJTsDFkj 2019/02/20 22:54 http://seo-usa.pro/story.php?id=7055
Wow! This blog looks closely in the vein of my older one! It as by a absolutely different topic but it has appealing a great deal the similar blueprint and propose. Outstanding array of colors!

# FHjmaTLbiAPSaTa 2019/02/22 18:20 http://knight-soldiers.com/2019/02/21/pc-games-fre
Incredible! This blog looks just like my old one! It as on a totally different subject but it has pretty much the same page layout and design. Wonderful choice of colors!

# EZZTylPmCm 2019/02/22 20:40 https://dailydevotionalng.com/
Pretty! This has been a really wonderful article. Thanks for supplying these details.

# FXAriIcMNMtRBIMIDg 2019/02/23 1:20 http://seniorsreversemorto8h.firesci.com/-learn-ho
This website was how do you say it? Relevant!! Finally I have found something that helped me. Kudos!

# OgpELCseso 2019/02/23 13:00 https://www.wattpad.com/user/AnneSequeiraWeb
You forgot iBank. Syncs seamlessly to the Mac version. LONGTIME Microsoft Money user haven\ at looked back.

# hWHJNECQCfHpHIaIyAo 2019/02/26 1:51 http://bithavepets.pw/story.php?id=12876
your blog is really a walk-through for all of the information you wanted about this and didn at know who to ask. Glimpse here, and you all definitely discover it.

# jWXgaSgSEOqD 2019/02/26 18:58 https://www.devote.se/umerfarooque10/recommendatio
Thanks a lot for the blog post.Really looking forward to read more. Want more.

# lDTkKaJMktogtp 2019/02/27 3:33 http://www.juegosdemariobros.tv/uprofile.php?UID=8
Thanks in favor of sharing such a fastidious thinking,

# BdflbpBDlXcZuvcEq 2019/02/27 5:55 https://kidblog.org/class/moneysavingtips/posts
Regards for helping out, wonderful info. If you would convince a man that he does wrong, do right. Men will believe what they see. by Henry David Thoreau.

# KwTwfMMZhBmSlKtT 2019/02/27 8:42 https://www.youtube.com/watch?v=_NdNk7Rz3NE
The problem is something which not enough men and women are speaking intelligently about.

# rwLqFkOLQLTltpC 2019/02/27 11:03 http://traveleverywhere.org/2019/02/26/free-apps-a
pretty beneficial stuff, overall I consider this is really worth a bookmark, thanks

# iLoYvxzStc 2019/02/27 13:26 http://b3.zcubes.com/v.aspx?mid=638082
This is getting a bit more subjective, but I much prefer the Zune Marketplace.

I was suggested this website by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my difficulty. You are wonderful! Thanks!

# cTMqXgtTvkjXVoLQf 2019/02/27 22:59 https://bullcirrus56.blogfa.cc/2019/02/26/fire-ext
rest аА аБТ?f the аАа?б?Т€а?ite аАа?б?Т€Т?аАа?б?Т€а? also reаА а?а?lly

Major thankies for the post.Really looking forward to read more. Keep writing.

# dcpeVAiTcVySQuuO 2019/02/28 15:44 http://www.sannicolac5.it/index.php?option=com_k2&
You made some good points there. I checked on the net for more information about the issue and found most individuals will go along with your views on this site.

# uApjorokLiuY 2019/02/28 23:21 http://answerpail.com/index.php?qa=user&qa_1=c
You have made some decent points there. I looked on the web to find out more about the issue and found most people will go along with your views on this site.

# JiZQFzXMeqRNC 2019/03/01 1:49 http://www.mediazioniapec.it/index.php?option=com_
There as definately a great deal to know about this subject. I love all of the points you ave made.

It as laborious to search out knowledgeable people on this matter, but you sound like you understand what you are speaking about! Thanks

# aksrdjQVWTInUox 2019/03/01 18:53 http://www.brigantesrl.it/index.php?option=com_k2&
News. Do you have any tips on how to get listed in Yahoo News?

# YzLWKkZveFIBlaRwZzo 2019/03/02 2:41 http://www.youmustgethealthy.com/
Your style is really unique in comparison to other people I ave read stuff from. Thanks for posting when you have the opportunity, Guess I will just bookmark this site.

# jiMpzdzkbUx 2019/03/02 5:08 https://sportywap.com/
What a great article.. i subscribed btw!

# wGnjpYKOQeVIutf 2019/03/02 17:50 http://activatemomentum.com/__media__/js/netsoltra
very good publish, i actually love this website, keep on it

# oFqfEcGHEGbJq 2019/03/05 20:50 http://automaticallyposttofacebo37178.bluxeblog.co
Wow, superb blog layout! How long have you ever been running a blog for? you made blogging look easy. The whole glance of your web site is excellent, let alone the content!

# gHYfCnvvsvoh 2019/03/05 23:20 https://www.adguru.net/
Im grateful for the blog article.Really looking forward to read more. Keep writing.

# IZuZttaahBmgZvoTcSZ 2019/03/06 2:16 http://tiempoyforma.com/publicacion/que-hacer-en-b
Link exchange is nothing else but it is just placing the other person as blog link on your page at appropriate place and other person will also do similar for you.

# rUGqxjxiwOnwYLCx 2019/03/06 12:26 http://acuityfin.net/__media__/js/netsoltrademark.
This website definitely has all the information I wanted concerning this subject and didn at know who to ask.

# qWvUFfUobNylOQHs 2019/03/09 6:05 http://bgtopsport.com/user/arerapexign424/
your placement in google and could damage your quality score if advertising

# PPjXlpoHScEm 2019/03/11 21:32 http://bgtopsport.com/user/arerapexign676/
Utterly pent written content, Really enjoyed looking at.

# SxFSFmsteCIc 2019/03/11 22:09 http://jac.result-nic.in/
Pretty! This was an incredibly wonderful post. Many thanks for providing these details.

# msWQZPiEcZSpc 2019/03/12 1:09 http://mah.result-nic.in/
Most of these new kitchen instruments can be stop due to the hard plastic covered train as motor. Each of them have their particular appropriate parts.

# jSpbngeEfTMjXV 2019/03/13 9:14 http://donald2993ej.tek-blogs.com/small-bedroom-by
You made some good points there. I looked on the web to learn more about the issue and found most individuals will go along with your views on this web site.

# ucRXADcfGWrxeSBRqg 2019/03/13 19:17 http://paris6095zk.canada-blogs.com/working-with-y
please pay a visit to the internet sites we comply with, such as this one, because it represents our picks through the web

# YViuwLWxaONiqZoOWxf 2019/03/14 0:08 http://millard8958fq.sojournals.com/vendors-dont-p
You have brought up a very excellent points, thankyou for the post.

# vNKvCVZabWEv 2019/03/14 13:18 http://truckbangle77.iktogo.com/post/using-online-
It as difficult to find knowledgeable people for this topic, but you seem like you know what you are talking about! Thanks

# hKUOLCnPmIwB 2019/03/14 18:38 https://indigo.co
I was recommended this web position by my cousin. I am not sure whether this post is written by him as rejection one to boot get such detailed concerning my problem. You are amazing! Thanks!

# IrfgQhVTwIiDM 2019/03/15 2:24 https://postheaven.net/egyptcomma96/bagaimana-cara
Spot on with this write-up, I actually believe this web site needs a lot more attention.

# pHPjMRAmpQMMRRy 2019/03/15 10:03 http://vinochok-dnz17.in.ua/user/LamTauttBlilt724/
Really appreciate you sharing this post.Thanks Again. Want more.

# eKCfoazqLQZrD 2019/03/16 20:56 http://network-resselers.com/2019/03/15/bagaimana-
I think this is a real great blog article.

# BDNbELZZhYcoPizjeQH 2019/03/16 23:31 http://court.uv.gov.mn/user/BoalaEraw411/
Wow! This could be one particular of the most beneficial blogs We ave ever arrive across on this subject. Basically Magnificent. I am also an expert in this topic so I can understand your effort.

# iwBHMpJvSoaISIt 2019/03/17 21:09 http://sla6.com/moon/profile.php?lookup=280590
Thanks a lot for the blog post.Really looking forward to read more. Great.

# seUKuZnuyVWflXWlZ 2019/03/18 1:40 https://mystarprofile.com/blog/view/139982/reasons
Website worth visiting below you all find the link to some sites that we think you should visit

# BgDEbCsRUoWCQEe 2019/03/18 22:56 https://loganleakey.kinja.com/purity-tests-have-ex
This is one awesome blog post.Really looking forward to read more. Much obliged.

# yvzWCYqFqzWDSdSd 2019/03/19 4:17 https://www.youtube.com/watch?v=-q54TjlIPk4
This is one awesome blog article. Want more.

# GopQKVJbAKKLAvWcCnt 2019/03/20 9:57 http://www.chinanpn.com/home.php?mod=space&uid
Really informative blog article.Thanks Again. Really Great.

# DvEYvxlSlnUvKIZ 2019/03/20 13:41 http://yeniqadin.biz/user/Hararcatt930/
Thanks again for the post.Really looking forward to read more.

# tpAKDhwowwvXnYqncM 2019/03/20 22:40 https://www.youtube.com/watch?v=NSZ-MQtT07o
This excellent website really has all the information I wanted about this subject and didn at know who to ask.

# TkwexWKhnXiWNGTzgYm 2019/03/21 1:20 http://iconautomation.com/__media__/js/netsoltrade
Thanks a lot for the post.Thanks Again. Really Great.

# AYFYwHqgpuWpLa 2019/03/21 11:54 http://joshuedejeaniq7.justaboutblogs.com/we-have-
pretty handy material, overall I consider this is really worth a bookmark, thanks

# roJUkgpTTeYBxmA 2019/03/22 1:31 https://zenwriting.net/pearquit52/characteristics-
motorcycle accident claims What college-university has a good creative writing program or focus on English?

# oTBbNisfjWKmijDLdiX 2019/03/22 5:28 https://1drv.ms/t/s!AlXmvXWGFuIdhuJ24H0kofw3h_cdGw
Your style is so unique in comparison to other people I ave read stuff from.

# Cheap Sports Jerseys 2019/03/26 8:04 qowqsllgude@hotmaill.com
mosrszrhg,A very good informative article. I've bookmarked your website and will be checking back in future!

# mtCJQgfqyIclWys 2019/03/26 21:04 http://bgtopsport.com/user/arerapexign591/
Thanks for such a good blog. It was what I looked for.

# YwcUtvPNuKDLY 2019/03/28 1:09 http://vag-group-service.ru/index.php/component/k2
This web site certainly has all the info I needed concerning this subject and didn at know who to ask.

# FzsbLeRoVwEttCVeoBQ 2019/03/28 7:07 http://mnlcatalog.com/2019/03/26/totally-free-apk-
My brother recommended I might like this website. He was totally right. This post actually made my day. You cann at imagine just how much time I had spent for this information! Thanks!

# trfzDsINuxMGISlNKnZ 2019/03/28 19:49 https://mendonomahealth.org/members/operarun51/act
This website really has all the information I wanted about this subject and didn at know who to ask.

newest information. Also visit my web-site free weight loss programs online, Jeffery,

# WgcBfCaHNHHkXEoF 2019/03/29 17:09 https://whiterock.io
You have brought up a very good details , appreciate it for the post.

# oDqiRHpPOPDekY 2019/03/30 23:59 https://www.youtube.com/watch?v=0pLhXy2wrH8
When I initially commented I clicked the Notify me when new comments are added checkbox

# Air Max 270 2019/03/31 17:54 cggujvthiw@hotmaill.com
qdkbajrrzq,Definitely believe that which you said. Your favourite justification appeared to be on the net the simplest thing to remember of.

# UGjFhxYDVhjZTjaiS 2019/04/01 23:20 http://happy-man.life/index.php?option=com_k2&
There as definately a great deal to find out about this topic. I love all the points you have made.

# Yeezy Shoes 2019/04/02 1:00 iwqiinotu@hotmaill.com
saggwmztizs Adidas Yeezy,Very helpful and best artical information Thanks For sharing.

# pRRSydcJPstVPKKiHj 2019/04/03 7:45 http://woods9348js.justaboutblogs.com/anybody-can-
I will immediately grab your rss feed as I can not in finding your email subscription hyperlink or e-newsletter service. Do you have any? Please allow me recognize so that I may subscribe. Thanks.

# iWlJhBmihVIZAy 2019/04/03 15:27 http://harrell8410bz.canada-blogs.com/lets-discuss
pretty beneficial material, overall I feel this is really worth a bookmark, thanks

# ccaIzTiKLDrUiXg 2019/04/04 23:56 https://maxscholarship.com/members/ashrefund11/act
There as certainly a great deal to learn about this subject. I really like all the points you have made.

Im grateful for the article.Thanks Again.

# UYPwpAEJppbRFbo 2019/04/06 4:37 http://whitney3674dk.thearoom.net/get-he-step-by-s
There is definately a great deal to find out about this topic. I love all of the points you ave made.

# urwzOvWOLumRAiVao 2019/04/06 12:19 http://wheeler2203to.tosaweb.com/the-first-was-the
Thanks a lot for sharing this with all of us you really know what you are talking about! Bookmarked. Kindly also visit my web site =). We could have a link exchange arrangement between us!

# HkzVGVGsuNaUpLPrz 2019/04/07 21:05 https://www.teawithdidi.org/members/tankcello11/ac
pretty beneficial material, overall I feel this is really worth a bookmark, thanks

# azlxjbFKpgDwydckZyT 2019/04/09 20:27 http://boone3363bi.tubablogs.com/use-a-wooden-bloc
Thanks-a-mundo for the blog post. Really Great.

# rmiCHVkvtJ 2019/04/10 7:19 http://mp3ssounds.com
Thanks for writing such a good article, I stumbled onto your website and read a few articles. I like your way of writing

# XWgTbwhqIOfojd 2019/04/10 19:25 https://test.abgbrew.com/index.php/member/667298
If you are going to watch comical videos on the net then I suggest you to go to see this web site, it carries truly therefore comical not only video clips but also extra stuff.

# zecMhqRfnpqQqDX 2019/04/11 16:20 http://www.votingresearch.org/work-in-comfort-and-
pretty practical stuff, overall I consider this is well worth a bookmark, thanks

# NnOQXmJuIxYOj 2019/04/12 0:22 https://greenplum.org/members/bolttree7/activity/1
Thanks-a-mundo for the article post.Much thanks again. Much obliged.

# IaDpCElTxwbmyRedgIz 2019/04/12 15:12 http://moraguesonline.com/historia/index.php?title
Im obliged for the blog article.Really looking forward to read more. Really Great.

# Nike Air Vapormax Flyknit 2019/04/14 16:31 exmpfs@hotmaill.com
khxurobm,This website truly has alll of the information and facts I wanted about this subject and didn?t know who to ask.

# Yeezy 2019/04/16 1:04 owwcqiia@hotmaill.com
At the same time, this is also the sixth crown of the British career in Shanghai, and is the second stop of the "back to back" this season. The other two podium players are Botas on pole position and Vettel on Ferrari. The fourth to tenth players are: Vestapan, Leclerc, Gassley, Ricardo, Perez, Raikkonen and Alben.

# Yeezys 2019/04/16 23:17 pqdwck@hotmaill.com
hmvpiyxh Yeezy Boost,If you have any struggle to download KineMaster for PC just visit this site.

# PIkwKYskNWuawPSlDSE 2019/04/18 0:44 http://prodonetsk.com/users/SottomFautt100
I value the blog.Really looking forward to read more. Great.

# knyrnCiqzbKvhzwWuDM 2019/04/20 1:54 https://www.youtube.com/watch?v=2GfSpT4eP60
Its hard to find good help I am regularly proclaiming that its difficult to get quality help, but here is

# nieAIYxMMZDvNvpFv 2019/04/20 4:30 http://www.exploringmoroccotravel.com
Wow, wonderful blog layout! How long have you been blogging

# aXuChGGnMJaQKH 2019/04/20 16:06 http://mills0949jl.envision-web.com/loans-faces-a-
I will definitely check these things out

# Pandora Rings Official Site 2019/04/21 5:24 mnoerqytkw@hotmaill.com
Dalio said that he became a capitalist when he was 12 years old, when he earned his first salary by sending newspapers, mowing lawns and helping people with golf clubs, and in the stock market in the 1960s.

# ufvPaFoESLVkRIugaT 2019/04/22 19:30 https://knowyourmeme.com/users/posting388
This website was how do I say it? Relevant!! Finally I ave found something that helped me. Appreciate it!

very few internet websites that come about to be detailed below, from our point of view are undoubtedly well really worth checking out

# VoOGpPmgwgQKJNgCdCG 2019/04/23 5:37 https://www.talktopaul.com/alhambra-real-estate/
You are my inspiration, I possess few blogs and occasionally run out from post . Actions lie louder than words. by Carolyn Wells.

When are you going to post again? You really entertain a lot of people!

# xrwGnBPbthFGQNdo 2019/04/23 13:27 https://www.talktopaul.com/la-canada-real-estate/
You ought to acquire at the really the very least two minutes when you could possibly be brushing your tooth.

Roman Polanski How to make my second blog my default one on Tumblr?

It is laborious to search out knowledgeable folks on this matter, but you sound like you recognize what you are speaking about! Thanks

# uNXOoNePwqUclavyhy 2019/04/24 16:02 http://cosap.org/story.php?id=395393#discuss
Wow, this piece of writing is good, my sister is analyzing these things, so I am going to convey her.

# UkdKgOviHbYtwgvMsv 2019/04/24 17:56 https://www.senamasasandalye.com
tod as paris Always a great common sense shopping on this place

# YlfwnKNjaLcpQXfWg 2019/04/24 20:55 http://socailbookmark.xyz/story.php?title=how-to-g
Tumblr article I saw a writer talking about this on Tumblr and it linked to

# TxEIiQRANEMVXjHhCQS 2019/04/25 0:39 https://www.anobii.com/groups/019e867fc524a46bb8/
Major thankies for the post.Thanks Again. Awesome.

# fhEMyNKelwFKRe 2019/04/25 5:50 https://www.instatakipci.com/
short training method quite a lot to me and also also near our position technicians. Thanks; on or after all people of us.

# DTtEuBmMSbZlDIVPUj 2019/04/25 16:10 https://gomibet.com/188bet-link-vao-188bet-moi-nha
I really liked your post.Really looking forward to read more. Great.

# zfHrswjuHnBiYTiO 2019/04/26 1:46 http://nochursbestmoun.mihanblog.com/post/comment/
There is definately a great deal to know about this subject. I love all the points you ave made.

# sjhYFjQCfjnYfRMY 2019/04/26 14:47 http://all4webs.com/dimespider58/ohkyyyybio728.htm
Just desire to say your article is as surprising.

# Nike Pegasus 35 2019/05/03 1:54 pyivytf@hotmaill.com
Dorsey explained to the president that the number of followers fluctuates due to the company’s attempts to delete spam accounts and bots, per the paper. The White House essentially confirmed the Post’s reporting the next day.

# pandora charms outlet 2019/05/03 23:35 egwqejng@hotmaill.com
Caring for sensitive skin is delicate business, especially when it comes to your child. Chances are, you’re probably doing everything you can to help prevent any itching, burning, dryness or irritation.

# NFL Jerseys 2019/05/10 0:35 pjyjegnbgwz@hotmaill.com
New York Giants general manager Dave Gettleman said he didn’t fall in love with any quarterbacks in last year’s draft class, so he passed. He took Saquon Barkley with the No. 2 overall pick.

# Jordan 12 Gym Red 2018 2019/05/12 20:24 rpuqiinn@hotmaill.com
He was doing that on jump shots, Lillard told Yahoo Sports. That’s not when you’re supposed to rock the baby. You rock the baby after overpowering someone in the post. He had one layup in the post on me. Look it up. I’ll live with his jump shots. He wasn’t rocking no baby on me.

# Air Max 2019 2019/05/15 23:26 nqcgdzc@hotmaill.com
http://www.wholesalenfljerseysshop.us/ NFL Jerseys Wholesale

# Nike Outlet 2019/05/20 8:37 cxeoht@hotmaill.com
http://www.nikeplus.us/ Nike Vapormax Plus

# Nike Outlet 2019/05/26 2:32 mcqgmirsbuf@hotmaill.com
http://www.nfl-jerseys.us.org/ Cheap NFL Jerseys

# pandora bracelets 2019/05/30 6:01 vwnsvon@hotmaill.com
http://www.jordan12gymred.us/ Air Jordan 12 Gym Red

# nike factory outlet 2019/06/06 5:53 uquwtbhtmk@hotmaill.com
http://www.nikepegasus-35.us/ Nike Pegasus 35

# Travis Scott Air Jordan 1 2019/06/14 4:43 kqfbgidjyn@hotmaill.com
mdrswvgljxr Yeezy Boost,Very helpful and best artical information Thanks For sharing.

# Nike Outlet Store Online Shopping 2019/06/16 2:25 pctimjynfpf@hotmaill.com
http://www.nikepegasus-35.us/ Nike Air Zoom Pegasus

# Yeezy Boost 350 V2 2019/06/20 6:02 yesktxmsr@hotmaill.com
http://www.yeezyboost350.us.com/ Yeezy Boost 350 V2

# Yeezy 2019/07/04 4:49 ipbbfmecid@hotmaill.com
http://www.nikeshoes.us.org/ Nike Shoes

# Yeezy 2019/08/18 7:09 wyefmjjw@hotmaill.com
http://www.yeezys.me.uk/ Yeezy

# Nike Outlet Store 2019/08/24 19:30 fyenfeklj@hotmaill.com
http://www.yeezys.us.com/ Yeezy 350

# Adidas Yeezy 2019/09/13 16:05 mgwiblfg@hotmaill.com
efuffzxf,If you have any struggle to download KineMaster for PC just visit this site.

# Illikebuisse anxbx 2021/07/03 11:06 pharmaceptica
hsq medical abbreviation https://pharmaceptica.com/

# re: DataSet vs DataReader ?? .NET2.0 2021/08/06 21:54 why is hydroxychloroquine
chloroquine phosphate side effects https://chloroquineorigin.com/# hydroxychloroquinone

# stromectol order online 2021/09/28 13:18 MarvinLic
ivermectin 12 mg https://stromectolfive.com/# stromectol tablet 3 mg

# ivermectin usa 2021/11/01 8:39 DelbertBup
how much does ivermectin cost http://stromectolivermectin19.com/# cost of ivermectin lotion
ivermectin 200mg

# ivermectin where to buy for humans 2021/11/02 11:46 DelbertBup
ivermectin brand http://stromectolivermectin19.online# ivermectin usa
cost of ivermectin cream

# ivermectin generic 2021/11/03 7:20 DelbertBup
ivermectin australia http://stromectolivermectin19.com/# ivermectin 1 cream generic
stromectol ivermectin 3 mg

# n1jtimc 2021/11/17 6:49 bahamut1001
http://diskusikripto.com/member.php?u=184575

# cheap generic pills 2021/12/04 16:28 JamesDat
https://genericpillson.com/# cheap generic pills clomid

# cheap generic ed pills 2021/12/05 10:17 JamesDat
http://genericpillson.online/# generic ed pills from canada dapoxetine

# sildenafil citrate tablets 100 mg 2021/12/06 21:46 JamesDat
http://viasild24.com/# how many sildenafil 20mg can i take

# how to take sildenafil 20 mg 2021/12/07 16:13 JamesDat
https://viasild24.com/# sildenafil citrate tablets 100 mg

# bimatoprost generic 2021/12/11 18:35 Travislyday
https://bimatoprostrx.com/ bimatoprost buy online usa

# careprost bimatoprost ophthalmic best price 2021/12/12 13:19 Travislyday
http://bimatoprostrx.online/ bimatoprost buy

# buy bimatoprost 2021/12/13 9:06 Travislyday
https://stromectols.com/ ivermectin 6

# careprost for sale 2021/12/14 5:00 Travislyday
http://plaquenils.online/ hydroxychloroquine sulfate buy

# bimatoprost ophthalmic solution careprost 2021/12/15 17:49 Travislyday
http://baricitinibrx.com/ where to buy baricitinib

# stromectol drug 2021/12/16 14:59 Eliastib
dxdnyv https://stromectolr.com ivermectin 1 cream 45gm

# stromectol generic name 2021/12/18 12:48 Eliastib
cqjqvv https://stromectolr.com ivermectin 3mg tablets price

# UQSRECaTSLxwpo 2022/04/19 10:21 johnanz
http://imrdsoacha.gov.co/silvitra-120mg-qrms

# mehnuwzskbfd 2022/05/06 21:24 jbhilx
hcqs side effects https://keys-chloroquineclinique.com/

# mkeeozgeigjh 2022/05/07 17:53 pntskq
where do you get hydroxychloroquine https://keys-chloroquineclinique.com/

# dubsjdutojbd 2022/05/09 5:43 anhdpq
side effects of hydroxychloroquine 200 mg https://keys-chloroquinehydro.com/

# hydroxychloroquine online cheap 2022/12/29 2:16 MorrisReaks
https://www.hydroxychloroquinex.com/# chloroquine tablets buy online

コメントの投稿

タイトル:
名前:
Url:
コメント: