Bessere lösung zu Problem mit PrimaryKey in Oracle werden mit Trigger gsetzt.
Selber no net probiert.
/* retrieve Oracle sequence value as output parameter */
INSERT INTO oratable values(myseq.NEXTVAL, 'bob'); myoutparm := myseq.CURRVAL;
Von MigratingDataAccessCode Seite 4
Oracle und primary keys die mit Trigger und Sequence gesetzt werden
Labels: oracle
Ascii Charakter in c# ermitteln
Q: How can I get the ASCII code for a character in C#? A: Casting the char to an int will give you the ASCII value: char c = 'f'; System.Console.WriteLine((int)c); or for a character in a string: System.Console.WriteLine((int)s[3]); The base class libraries also offer ways to do this with the Convert class or Encoding classes if you need a particular encoding.
.net Applikation nur einmal ausführen
Eine .net Applikation nur einmal starten lassen. Jeder weitere Start wird verhindert. multiple Ausführung verhindern
BindingContext zwischen verschiedenen Forms
If you want to keep in sync a newly opened form with the current then type: Form2 newform = new Form2(); newform.BindingContext = this.BindingContext;
Oracle Datenbank mit .net und C#
Gutes Tutorial in Italienisch dass den Datenzugriff auf Oracle Datenbanken durchleuchtet. Wobei der Provider von Microsoft und der Provider von Oracle ODP.NET beschrieben und verglichen werden.
Tutorial ADO.NET & Oracle
Latest Posts
Popular Posts
-
It's easy I thought, just select the Property of the EntityType and set the Default Value in the Properties window to: DateTime.Now ...
-
I am *very* keen on automating tests, so I was looking into unit testing a WCF service. If I say "unit test", I mean a fast ,...
-
Had some discussions about Lists and controls, like Listbox and Listview, and sometimes its difficult to distinguish those. System.Win...