Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Categoria: Articoli

Digital Innovation Partner

Oracle Tip – TO_DATE & TO_CHAR

In Oracle there are two usefull function to format a timestamp to string and vceversa…. To format a date to string you can use TO_CHAR function like this:

For viceversa To format a string to date you can use TO_ function like this:

The format mask list: Parameter Explanation YEAR Year, spelled out…
Leggi tutto

Oracle Tip – retrive oracle version

Per ottenere le informazioni di versione da una console Oracle o da plsql è sufficiente utilizzare il seguente predicato select * from v$version where banner like ‘Oracle%’;

Spettacolo linkify Android SDK

http://android-developers.blogspot.it/2008/03/linkify-your-text.html

SVG Editors – TIPS

[Lang_It] per poter disegnare in SVG sono disponibili sul web dei pratici strumenti, ovviamente tra i più belli non poteva mancare anche quello di google dispnibile al seguente indirizzo http://svg-edit.googlecode.com/svn/branches/2.5.1/editor/svg-editor.html e quello di una nuova e stilossissima società che si chiama “Method of Action” al seguente link : http://editor.method.ac/ ….. Il secondo editor è orientato…
Leggi tutto

Boot in recovery mode an ubuntu server KVM virtual machine from a remote pc

Why you should need to restart a VM ubuntu 12.04 server on your KVM remote server? Simple: just miss an apparently innocuous command (in my case I needed to add a user to a group). Then I typed the command:

Unfortunately I forgot the “-a” option thus erasing all user groups including the group…
Leggi tutto

Export from FastReport 4 to PDF Stream

Con FastReport 4 esportare un report in PDF su stream è semplicissimo, bastano 5 minuti … peccato che non è spiegato nella documentazione, quindi per capire come funzionava l’arcano ci ho perso due ore… di seguito una porzione di codice come esempio: procedure TForm1.Button3Click(Sender: TObject); var st : TMemoryStream; begin st := TMemoryStream.Create; Try TBlobField(csReports.FieldByName(‘Report’)).SaveToStream(st);…
Leggi tutto