sabato 19 aprile 2014

TSQL SPLIT STRING INTO TABLE OF

TSQL SPLIT STRING INTO TABLE OF


Come splittare una stringa e trasformarla in una tabella in SQLSERVER


/*** Object: Function [dbo].[SplitString]  by:ALLDONE  Script Date: 19/04/2014 15:30:10 ***/
USE [prjYOURDB];
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE FUNCTION [dbo].[SplitString]
(@input varchar(4000))
RETURNS @Result table
(
[valore] varchar(50) COLLATE Latin1_General_CI_AS NULL
)
WITH EXEC AS CALLER
AS
BEGIN
DECLARE @str VARCHAR(50)
      DECLARE @ind Int
      IF(@input is not null)
      BEGIN
            SET @ind = CharIndex(',',@input)
            WHILE @ind > 0
            BEGIN
                  SET @str = SUBSTRING(@input,1,@ind-1)
                  SET @input = SUBSTRING(@input,@ind+1,LEN(@input)-@ind)
                  INSERT INTO @Result values (@str)
                  SET @ind = CharIndex(',',@input)
            END
            SET @str = @input
            INSERT INTO @Result values (@str)
      END
      RETURN
END

GO




ciao ciao

domenica 13 aprile 2014

Viva la vita, viva la libertà



Mai trascurarsi, mai perdere di vista il proprio benessere, mai

sabato 12 aprile 2014

Strings Internationalize Android App

Strings Internationalize Android App


Ciao a tutti, di seguito un comodo programma fatto da me per creare in automatico i file strings.xml per le diverse lingue dei paesi in cui volete pubblicare la vostra applicazione.
Progetto Visual Studio 2010


Hello everyone, here is a handy program made ​​by me to automatically create the strings.xml file for the different languages ​​of the countries in which you want to publish your application. Visual Studio 2010 Project



User Manual



martedì 1 aprile 2014

My Work


My Work


La nuova applicazione per memorizzare le tue ore lavorative, le tue notifiche vocali, la tua nota spese!!!


PLAY STORE          DOWNLOAD!!!!






enjoy!