ข้ามไปที่เนื้อหาหลัก

บทความ

กำลังแสดงโพสต์จาก กันยายน, 2012

Admin Command ลิสคำสั่งต่างๆสำหรับ admin [CentOS]

คำสั่ง ls : : : แสดงรายชื่อแฟ้มในห้องปัจจุบัน หรือห้องอื่น ๆ ที่ต้องการ คำสั่ง chmod : : : เปลี่ยนสถานะของแฟ้มเช่น Read Write eXecute คำสั่ง man : : : แสดงรายละเอียดของคำสั่ง (Manual) คำสั่ง mkdir, rmdir, cd : : : คำสั่งเกี่ยวกับ Directory หรือ Folder เพื่อสร้าง หรือลบ คำสั่ง pico : : : editor ยอดฮิตใน Linux ที่ต้องมากับ Pine เป็น Text mode ที่ใช้ง่ายที่สุด คำสั่ง emacs : : : editor ยอดฮิตใน Linux ใช้ยากกว่า pico นิดหน่อย คำสั่ง vi : : : editor ยอดฮิตใน Linux ที่ใช้ยากที่สุด คำสั่ง id, finger, who, w : : : โปรแกรมตรวจสอบ username ของตนเอง คำสั่ง cat : : : แสดงข้อมูลในแฟ้มเหมือนคำสั่ง type ในระบบ DOS คำสั่ง ifconfig : : : ดู IP หรือเพิ่ม IP เข้าไปใน linux server คำสั่ง netstat : : : แสดงสถานะของเครือข่าย คำสั่ง service : : : แสดงสถานะโปรแกรมที่เปิดให้บริการ คำสั่ง xinetd : : : แสดงบริการที่เปิดใต้โปรแกรม xinetd คำสั่ง whereis : : : ค้นหาแฟ้มที่ต้องการว่าอยู่ที่ห้องใด คำสั่ง cp, rm, mv : : : จัดการแฟ้มเช่น คัดลอก ลบ และย้าย คำสั่ง ping : : : ตรวจสอบ ip และการเชื่อมต่อ inte

วิธีการแสดงเส้นบรรทัดใน MS Visual studio 2012

ขั้นตอนแรก ไปเลือกที่ เมนู Debug  แล้วไปที่  option and settings จะได้ดังภาพประกอบที่ 1 ภาพประกอบที่ 1 ต่อมาไปที่ menu Text Editor ครับ เเล้วเลือกภาษาที่ใช้เขียนโปรแกรม sinvg]nvdmuj All languages แล้วติกที่ Line number    ดังภาพประกอบที่ 2  ภาพประกอบที่ 2

คำสงวนในการตั้งชื่อตัวแปร (Keywords in C#)

          คำสงวนหรือคำต้องห้าม คือ คำที่ไม่สามารถนำมาใช้ในการประกาศค่าตัวแปรใน ภาษา C# ได้ โดยคำเหล่านั้นส่วนใหญ่เป็นคำที่นำไปทำหน้าทีอย่างอื่นอยู่แล้ว จึงไม่อนุญาติให้ใช้ซ้ำกันได้ ดังนี้ abstract as base bool break byte catch case char checked class const continue decimal default delegate do double else enum explicit event extern false finally fixed float for foreach goto if implicit in int interface internal is lock long namespace new null object operator out override params private protected public readonly ref return sbyte sealed short sizeof stackalloc static struct string switch this throw true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while ซึ่งทั้งนี้เป้นคำห้ามใช้ตั้งชื่อตัวแปรใน ภาษา C# นะครับ ซึ่งต่อไปในอนาคตอาจมีการเปลี่ยนแปลง เพิ่มเติม ก็เป็นไปได้ขึ้นอยู่กับผู้พํฒนา

วิธีแก้ไข SQL Server 2008 Error : Saving changes is not permitted.

Saving changes is not permitted. The changes that you have made require the following tables to be dropped and re-created. You have either made changes to a table that can't be re-created or enabled the option Prevent saving changes that require the table to be re-created. ซึ่งเกิดจากระบบป้องกันการแก้ไข Table ของ SQL Server 2008 เอง เราสามารถปิด Option ตรงนี้ได้ครับ วิธีการดังนี้ ดูที่  Tool bar ของ SQL Server 2008 ให้เลือก Tools >> Options จะมีหน้าต่างขึ้นมา ให้ดูทางด้านซ้าย ให้เลือก Designers มองหาคำว่า “Prevent  saving   changes  that require table re-creation” แล้ว  uncheck และกดปุ่ม OK ครับ

วิธีเช็คฐานข้อมูล โดยการใช้ linq

สวัสดีครับวันนี้ผมจะมานำเสนอวิธีการเช็คข้อมูลในฐานข้อมูลว่ามีข้อมูลหรือไม่ โดยการใช้ linq ในการสืบค้นข้อมูลนะครับ ก่อนต้องเรียก  DataClassesDataContext db = new DataClassesDataContext(); code เช็ค  bool  haveDatamember = ((from d in db.ตารางข้อมูล select d).Count() > 0) ? true : false;                 if (haveDatamember)                 {                  // คำสั่งที่ต้องการให้ทำงาน                  } คงไม่งงนะครับสำหรับมือใหม่ ขอให้โชคดีในการเขียนโปรแกรมครับ