รวมโปรแกรมสำหรับ Query Oracle Database
- Oracle SQL Developer (Free)
http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
- PL/SQL Developer (Free Trial)
http://www.allroundautomations.com/
- DreamCoder SQL Developer (Free)
http://www.sqldeveloper.net/
-Toad for Oracle
http://toadfororacle.com/index.jspa
- Navicat for Oracle
http://www.navicat.com/
ข้อมูลบางส่วนมาจาก
http://www.narisa.com/forums/index.php?showtopic=28424
Thursday, June 28, 2012
โปรแกรม ColorPic สำหรับดึงค่าสีต่าง ๆ จาก Windows
โปรแกรม ColorPic สำหรับดึงค่าสีต่าง ๆ จาก Windows เป็น Freeware
เหมาสำหรับ Web Design ครับ
Download ได้ที่นี่เลย
http://www.iconico.com/download.aspx?app=ColorPic&type=free
วิธีใช้
http://www.iconico.com/colorpic/gettingStarted.aspx
เหมาสำหรับ Web Design ครับ
Download ได้ที่นี่เลย
http://www.iconico.com/download.aspx?app=ColorPic&type=free
วิธีใช้
http://www.iconico.com/colorpic/gettingStarted.aspx
Labels:
Design Tool,
HTML XHTML
Sunday, October 18, 2009
Self-Signed Certificates on IIS 7
http://www.robbagby.com/iis/self-signed-certificates-on-iis-7-the-easy-way-and-the-most-effective-way/
http://www.netometer.com/video/tutorials/server-2008-self-signed-certtificate/
http://hansolav.net/blog/SelfsignedSSLCertificatesOnIIS7AndCommonNames.aspx
http://learn.iis.net/page.aspx/144/how-to-setup-ssl-on-iis-70/
http://learn.iis.net/page.aspx/304/using-ftp-over-ssl/
http://serverfault.com/questions/57727/cannot-create-self-signed-ssl-certificate-with-iis-7
http://www.2bbit.com/details.php?id=221097
http://www.2bbit.com/details.php?id=212734
http://www.netometer.com/video/tutorials/server-2008-self-signed-certtificate/
http://hansolav.net/blog/SelfsignedSSLCertificatesOnIIS7AndCommonNames.aspx
http://learn.iis.net/page.aspx/144/how-to-setup-ssl-on-iis-70/
http://learn.iis.net/page.aspx/304/using-ftp-over-ssl/
http://serverfault.com/questions/57727/cannot-create-self-signed-ssl-certificate-with-iis-7
http://www.2bbit.com/details.php?id=221097
http://www.2bbit.com/details.php?id=212734
Tuesday, October 13, 2009
Syntax Highlighter On Blogger
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
namespace StockTaking
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection connection = new SqlConnection();
}
}
}
Saturday, September 12, 2009
Visual studio Development Server problem in Vista
ปัญหาคือเมื่อ debug หรือ view in browser จะขึ้น error
วิธีแก้
ไปที่ C:\Windows\System32\drivers\etc\
เปิดไฟล์ชื่อ hosts โดยใช้ Text Editor comment บรรทัด "::1" เป็น "#::1" แล้วก็ save หลังจากนั้นลอง run เว็บใหม่
http://www.vijaykodali.com/post/2009/03/Visual-studio-Development-Server-problem-in-Vista.aspx
Internet Explorer can not display the page
วิธีแก้
ไปที่ C:\Windows\System32\drivers\etc\
เปิดไฟล์ชื่อ hosts โดยใช้ Text Editor comment บรรทัด "::1" เป็น "#::1" แล้วก็ save หลังจากนั้นลอง run เว็บใหม่
http://www.vijaykodali.com/post/2009/03/Visual-studio-Development-Server-problem-in-Vista.aspx
Labels:
Visual Studio 2008,
Windows Vista
Saturday, August 8, 2009
Disable auto complete on textbox
เวลาเราสร้าง Textbox ขึ้นมาถ้าเรา Input ทาง Browser มันจะมีชื่อที่เราเคย Input ใน Textbox นั้นมา ถ้าเราไม่ต้องการให้มี List ชื่อที่เราเคยป้อนเข้าใน Textbox นั้นเราก็ Disable มันซะ ตาม code ด้านล่างเลยครับ
ASP.NET
HTML
ASP.NET
<asp:TextBox ID="txtName" runat="server" AutoCompleteType="Disabled" ></asp:TextBox>
HTML
<input name="txtName" type="text" autocomplete="off" />
Labels:
ASP.NET,
HTML XHTML
Thursday, July 9, 2009
SQL Command for dispaly table on database
SQL Command สำหรับแสดงชื่อตารางทั้งหมดใน Database
ถ้าจะให้แสดงเฉพาะ Table ให้ใช้ Parameter @table_type
เรียกใช้ Paremeter ตามลำดับ
ผลลัพธ์

หรือใช้ Command นี้
ผลลัพธ์

สามารถใช้ Command นี้แสดง Column ของ Table ที่ต้องการได้
ตัวอย่างแสดง Column ของ Table Customers ของ Database Northwind
ผลลัพธ์
EXEC sp_tables
ถ้าจะให้แสดงเฉพาะ Table ให้ใช้ Parameter @table_type
EXEC sp_tables @table_type = "'TABLE'"
เรียกใช้ Paremeter ตามลำดับ
EXEC sp_tables Customers, dbo, Northwind, "'TABLE'"
ผลลัพธ์

หรือใช้ Command นี้
SELECT name
FROM sys.tables
FROM sys.tables
ผลลัพธ์

สามารถใช้ Command นี้แสดง Column ของ Table ที่ต้องการได้
ตัวอย่างแสดง Column ของ Table Customers ของ Database Northwind
SELECT name
FROM sys.syscolumns
WHERE (id = OBJECT_ID('Customers'))
FROM sys.syscolumns
WHERE (id = OBJECT_ID('Customers'))
ผลลัพธ์

Labels:
SQL Server
Subscribe to:
Posts (Atom)