Click here to Skip to main content
15,887,326 members
Home / Discussions / Database
   

Database

 
QuestionAuto reconnect to MySql when connection is lost after period of inactivity Pin
Bil@l12-Sep-09 5:13
Bil@l12-Sep-09 5:13 
AnswerRe: Auto reconnect to MySql when connection is lost after period of inactivity Pin
dan!sh 12-Sep-09 8:00
professional dan!sh 12-Sep-09 8:00 
GeneralRe: Auto reconnect to MySql when connection is lost after period of inactivity Pin
εїзεїзεїз12-Sep-09 10:40
εїзεїзεїз12-Sep-09 10:40 
GeneralRe: Auto reconnect to MySql when connection is lost after period of inactivity Pin
dan!sh 12-Sep-09 19:07
professional dan!sh 12-Sep-09 19:07 
GeneralRe: Auto reconnect to MySql when connection is lost after period of inactivity Pin
εїзεїзεїз12-Sep-09 19:39
εїзεїзεїз12-Sep-09 19:39 
AnswerRe: Auto reconnect to MySql when connection is lost after period of inactivity Pin
εїзεїзεїз12-Sep-09 10:37
εїзεїзεїз12-Sep-09 10:37 
QuestionWant to split variable in SQL[modified] Pin
xodeblack11-Sep-09 23:23
xodeblack11-Sep-09 23:23 
AnswerRe: Want to split variable in SQ Pin
εїзεїзεїз12-Sep-09 4:44
εїзεїзεїз12-Sep-09 4:44 
DECLARE @NextString NVARCHAR(40)
DECLARE @Pos INT
DECLARE @NextPos INT
DECLARE @String NVARCHAR(40)
DECLARE @Delimiter NVARCHAR(40)

SET @String ='softdev,sup'
SET @Delimiter = ','
SET @String = @String + @Delimiter
SET @Pos = charindex(@Delimiter,@String)

WHILE (@pos <> 0)
BEGIN
SET @NextString = substring(@String,1,@Pos - 1)
SELECT @NextString -- Show Results
SET @String = substring(@String,@pos+1,len(@String))
SET @pos = charindex(@Delimiter,@String)
END

Result
- Softdev
- sup


Best Of Regards,
SOFTDEV
If you have knowledge, let others light their candles at it

AnswerRe: Want to split variable in SQ Pin
tagyurit12-Sep-09 5:18
tagyurit12-Sep-09 5:18 
AnswerRe: Want to split variable in SQ Pin
Abhishek Sur12-Sep-09 13:21
professionalAbhishek Sur12-Sep-09 13:21 
AnswerRe: Want to split variable in SQ Pin
PIEBALDconsult14-Sep-09 7:09
mvePIEBALDconsult14-Sep-09 7:09 
QuestionSQL Import Help Pin
Hulicat11-Sep-09 5:38
Hulicat11-Sep-09 5:38 
AnswerRe: SQL Import Help Pin
J4amieC11-Sep-09 5:59
J4amieC11-Sep-09 5:59 
Questionproblem occurred while establishing a connection to SQL Server Pin
janat_Al_donia11-Sep-09 3:14
janat_Al_donia11-Sep-09 3:14 
AnswerRe: problem occurred while establishing a connection to SQL Server Pin
Coding C#11-Sep-09 3:23
Coding C#11-Sep-09 3:23 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
janat_Al_donia11-Sep-09 3:26
janat_Al_donia11-Sep-09 3:26 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
r a m e s h11-Sep-09 3:30
r a m e s h11-Sep-09 3:30 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
janat_Al_donia11-Sep-09 3:33
janat_Al_donia11-Sep-09 3:33 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
r a m e s h11-Sep-09 3:36
r a m e s h11-Sep-09 3:36 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
janat_Al_donia11-Sep-09 3:39
janat_Al_donia11-Sep-09 3:39 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
Coding C#11-Sep-09 3:40
Coding C#11-Sep-09 3:40 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
Coding C#11-Sep-09 3:44
Coding C#11-Sep-09 3:44 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
r a m e s h11-Sep-09 3:58
r a m e s h11-Sep-09 3:58 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
Coding C#11-Sep-09 3:38
Coding C#11-Sep-09 3:38 
GeneralRe: problem occurred while establishing a connection to SQL Server Pin
janat_Al_donia11-Sep-09 3:44
janat_Al_donia11-Sep-09 3:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.