ยาคุมไข่ จริงๆมันคือคำที่ชาวบ้านเรียกกันติดปากง่ายๆ ซึ่งมันมาจากคุณสมบัติของกลุ่มสารเคมีที่มีผลต่อไข่ที่อยู่ในตัวเต็มวัยของตัวแม่ที่กำลังตั้งท้อง หรือภาษาอังกฤษเรียกว่า
(Transovarial Effect) อ่านว่า ทรานส์-โอ-วา-เรียล เอฟ-เฟค ส่งผลให้อัตราการวางไข่ การฟัก การโตเป็นตัวเต็มวัย น้อยลง

ซึ่งสารแต่ตัว ส่วนตัวพี่ควายจะแบ่งออกเป็น 4 กลุ่มตามชนิดของแมลงศรัตรูพืชเอาที่เรารู้จักกันหลักๆคือ

1.ไร

2. หนอน

3.เพลี้ย

4.เพลี้ยไฟ

Read More

Optimistic doesn’t try to lock the data until it
goes to do the update.  Pessimistic locks the data
as soon as it is changed and doesn’t release the
lock until the data is updated on disk.

Optimistic does not monopolize the data and can
make a multiuser app work smoother, but pessimistic
will guarantee that the user will never see the
“Another user has updated that record already”
message.

You mention “client/server” which leads me to
believe you are using a back-end that is not
a VFP database?  If so, there are some
different considerations regarding impact on
the performance of database access.  I have
yet to do a client/server app in VFP, so I
will yield the floor to someone who has…

VFP Data buffering จะมีอยู่ 2 ประเภท คือ Row Buffering และ Table Buffering โดยมีกลไกการล็อค Records ใน Buffer 2 วิธี คือ Optimistic Locking และ Pessimistic Locking เมื่อผสมกันระหว่างประเภทของ Bufffer(Row/Table )
และ กลไกการล็อค (Optimistic/Pessimistic ) จึงเกิดเป็น 4 buffer modes ( ถ้ารวม None Buffer Setting ก็เป็น 5 modes)

สำหรับ Mode 1- None setting เป็นการ disables กลไก data buffering ของ VFP ใน mode นี้ การ modify ข้อมูล จะกระทำโดยตรง
กับ Record [ ที่จริงจะว่าอย่างนี้ก็ยังไม่ถูกต้องนัก… เนื่องจากมันเกี่ยวข้องกับกลไก File Caching ของ OS. ทั้งฝั่ง client Application และ

Read More