Zhi工作相關程式
2019年10月28日 星期一
Oracle x Table欄位 x 新增修改刪除
--先查詢table
select * from Table1;
--新增欄位
alter table Table1 add column1 varchar(20) default '' not null;
--修改一筆欄位
alter table Table1 modify column1 varchar(90);
--刪除欄位
alter table Table1 drop column column1;
2018年9月6日 星期四
Oracle x 刪除 x 大量重複資料
參考資料 : 掃文資訊
做了第一次後沒將SQL存起來,想說下次用就會了,結果還是忘記,這次記在這裡下次就可以來這裡看
--1.先找到重複資料的rowid,並找出rowid最大或最小值,作為刪除的條件
select min(rowid) from yourTable group by TableColumn having count(TableColumn) > 1;
--2.根據TableColumn找出數量大於1的重複資料
select TableColumn from yourTable group by TableColumn having count(TableColumn) > 1;
--3.根據上兩個條件進行執行刪除操作
delete from yourTable t where t.TableColumn in (
select TableColumn from yourTable group by TableColumn having count(TableColumn) > 1
)
and rowid not in (
select min(rowid) from yourTable group by TableColumn having count(TableColumn) > 1
);
--第一點的min(rowid)可以改成max(rowid),差別在於min會找出最早建立的資料(舊資料);max會找出最晚建立的資料(新資料)
2018年6月20日 星期三
C# x 1到100陣列 x 隨機不重複
昨天去xx看到不錯的考題,當下沒有解出來,寫了不隨機不重複的Code,後來回家想想才發現原來這麼簡單...
using System;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Random rd = new Random();
string strNum="";
int[] ai = new int[100];
int rNum;
for (int i = 1; i <= 100; i++)
{
rNum = rd.Next(1, 101);//取亂數
if (Array.IndexOf(ai, rNum) == -1)//用Array.IndexOf判斷有沒有重複,沒有重複的話回傳值就是-1
{
ai[i - 1] = rNum;
}
else//用Array.IndexOf判斷有沒有重複,有重複就會到這裡
{
while (Array.IndexOf(ai, rNum) != -1)//如果不等於 -1 那就在重新跑一次亂數取值,直到等於-1
{
rNum = rd.Next(1, 101);
}
ai[i - 1] = rNum;//Array.IndexOf = -1 就會跳出while迴圈 走到這裡
}
}
foreach (int strnum in ai) //將陣列的值取出
{
strNum += strnum.ToString()+" , ";
}
Console.WriteLine(strNum);
Console.ReadLine();
}
}
}
2017年10月20日 星期五
C# x WebService x 移除
看了 當麻許的Web Service移除 這篇
然後覺得他遇到的狀況跟我差不多
然後自己又琢磨了一下
然後我的開發工具是VS2015、WebSite、Framework4.5
紅字是重點
///////////以下寫在.asmx裡面///////////
using System;
using System.IO;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Web.Services;
using System.Web.Script.Services;
namespace WebSite1
{
[WebService(Namespace = "",Description ="")]
[System.ComponentModel.ToolboxItem(false)]
public class iWS : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void PostGetData()
{
try
{
Stream s = System.Web.HttpContext.Current.Request.InputStream;
byte[] b = new byte[s.Length];
s.Read(b, 0, (int)s.Length);
string strjson = Encoding.UTF8.GetString(b);
JObject jObjt = JObject.Parse(strjson);
Context.Response.Output.Write(JsonConvert.SerializeObject(jObjt, Formatting.Indented));
}
catch (Exception ex)
{
Context.Response.Output.Write(JsonConvert.SerializeObject(ex.Message, Formatting.Indented));
}
}
}
}
///////////以上寫在.asmx裡面///////////
///////////以下Web.config///////////
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
<add name="Documentation"/>
</protocols>
<conformanceWarnings>
<remove name='BasicProfile1_1'/>
</conformanceWarnings>
</webServices>
<pages controlRenderingCompatibilityVersion="4.0"/>
</system.web>
</configuration>
///////////以上Web.config///////////
參考資料 :
https://dotblogs.com.tw/junegoat/2012/09/10/c-sharp-webservice-remove-xmlns
https://stackoverflow.com/questions/12705380/remove-xml-tag-while-creating-web-service-in-asp-net
https://taskyam.israports.co.il/TaskYamWS/GeneralWebServices.asmx
https://social.msdn.microsoft.com/Forums/zh-TW/be1c812b-503e-4d35-9f0c-9f12b9aaf406/how-to-remove-xmlns-attribute-from-webservice-response?forum=asmxandxml
2017年10月8日 星期日
C# x WebService x JSON x 接收及傳值
WebService 接收這個部分找了超多資料,搞了三天才搞定
-------以下WebService的程式碼,寫在asmx裡面
using System.Web.Services;
using System.Web.Script.Services;
using System.IO;
using System.Text;
using Newtonsoft.Json.Linq;
namespace WebService
{
[WebService(Namespace = "http://microsoft.com/webservices/")]
public class iWS : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string PostGetData()
{
//應用程式呼叫的網址 : "http://localhost:54756/iWS.asmx/PostGetData"
Stream s = System.Web.HttpContext.Current.Request.InputStream;
byte[] b = new byte[s.Length];
s.Read(b, 0, (int)s.Length);
string aa = Encoding.UTF8.GetString(b);
return aa;
}
}
}
-------以上WebService的程式碼,寫在asmx裡面
-------以下ConsoleApplication,寫在Program.cs裡面
using System;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Net;
using System.IO;
using System.Data.SqlClient;
using System.Data;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string targetUrl = "http://localhost/iWS.asmx/PostGetData";
string connString = "你資料庫的位置";
byte[] postData;
string jsonStr;
try
{
string strSQL = "SELECT 'H123' as a, " + "\r\n" +
"'56789' as b, " + "\r\n" +
"'2' as c, ";
SqlConnection connSQL = new SqlConnection(connString);
connSQL.Open();
SqlCommand comm = new SqlCommand(strSQL, connSQL);
SqlDataReader dr = comm.ExecuteReader();
DataTable dt = new DataTable();
dt.Load(dr);
dr.Close();
comm.Dispose();
connSQL.Close();
int dtCount = dt.Rows.Count;
for (int i = 0; i < dtCount; i++)
{
JObject obj = new JObject(
new JProperty("a", dt.Rows[i][0].ToString()),
new JProperty("b", dt.Rows[i][1].ToString()),
new JProperty("c", dt.Rows[i][2].ToString())
);
jsonStr = JsonConvert.SerializeObject(obj, Formatting.Indented);
postData = Encoding.UTF8.GetBytes(jsonStr);
HttpWebRequest request = HttpWebRequest.Create(targetUrl) as HttpWebRequest;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.Timeout = 30000;
request.ContentLength = postData.Length;
// 寫入 Post Body Message 資料流
using (Stream st = request.GetRequestStream())
{
st.Write(postData, 0, postData.Length);
Console.WriteLine(jsonStr);
}
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
using (StreamReader sr = new StreamReader(response.GetResponseStream()))
{
string result = sr.ReadToEnd();
Console.WriteLine(result);
}
}
}
Console.ReadLine();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.ReadLine();
}
}
}
}
-------以上ConsoleApplication,寫在Program.cs裡面
參考資料 :
http://www.itread01.com/articles/1478475314.html
https://kknews.cc/zh-tw/other/4egm2v.html
2017年8月16日 星期三
C# x Timer x 定時執行
C# x Timer x 定時執行
Form裡面要有 :
Button *1
TextBox1 *1
/////////////////////以下 程式碼/////////////////////
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication31
{
public partial class Form1 : Form
{
System.Timers.Timer testTimer;
int intNum;
public Form1()
{
InitializeComponent();
}
public void myTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
TextBox1.Text = TextBox1.Text + "\n\n" + intNum.ToString() ;
intNum = intNum + 1;
}
private void button1_Click(object sender, EventArgs e)
{
if (button1.Text == "Star")
{
testTimer = new System.Timers.Timer(2000);//定時週期2秒
testTimer.Elapsed += myTimer_Elapsed;//每兩秒做這件事
testTimer.AutoReset = true; //是否不斷重複定時器操作
testTimer.Enabled = true; //定時器啟動
Control.CheckForIllegalCrossThreadCalls = false;
button1.Text = "Stop";
}
else
{
testTimer.Close();
testTimer.Dispose();
TextBox1.Text = TextBox1.Text + "\n\n" + "Stop";
button1.Text = "Star";
}
}
}
}
/////////////////////以上 程式碼/////////////////////
執行畫面
參考資料 : http://blog.csdn.net/kankankankan2222/article/details/8249602
2017年8月15日 星期二
C# x 判斷路經尋找 x 檔案數量 x 依副檔名找檔名
C# x 判斷路經尋找 x 檔案數量 x 依副檔名找檔名
自動列印標籤用
Form裡面要有 :
Button *1
Label *1
/////////////////////以下 程式碼/////////////////////
using System;
using System.IO;
using System.Windows.Forms;
namespace WindowsFormsApplication32
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DirectoryInfo dirInfo = new DirectoryInfo(@"D:\test");
DataGridView dgv = new DataGridView();
int txtFileCount = dirInfo.GetFiles("*.txt").Length;
if (txtFileCount != 0)
{
label1.Text = dirInfo.GetFiles("*.txt", SearchOption.AllDirectories)[0].ToString();
}
}
}
}
/////////////////////以上 程式碼/////////////////////
執行畫面
參考資料 : https://dotblogs.com.tw/dc690216/2009/09/17/10684
http://ithelp.ithome.com.tw/articles/10029065
訂閱:
文章 (Atom)