1. MyDesk 2.0 codeless programming

Common database connection character string source codes in the MyDesk 2.0

Sql Server Database:
'Connect to a Sql Server Database
Function OpenConn(ByVal sUserID, ByVal sPassWord, ByVal sDBName, ByVal
sServerName)
     'Parameter
     'sUserID:User's ID
     'sPassWord: User's Password
     'sDBName: Database Name
     'sServerName: Sql Server Name
     Dim ConnString, conn
ConnString="Provider=SQLOLEDB.1;Password=" & sPassWord & ";Persist Security
Info=True;User ID=" & sUserID &";Initial Catalog = " & sDBName &"; Data
     Source=" & sServerName
     'Connection String
     set conn= createobject("ADODB.Connection") 
     conn.open ConnString 
     set OpenConn=conn 
End Function

Access Database:
'Connect to a Access Database
Function OpenConn( ByVal sUserID, ByVal sPassWord, ByVal sDBFile ) 
     'Parameter
     'sUserID: User's ID
     'sPassWord: User Password
     'sDBFile: Database Name
     Dim ConnString, conn
ConnString="Provider=Microsoft.Jet.OLEDB.4.0;Password=" & sPassWord &
     ";Data Source = "& sDBFile &";Persist Security Info=True"
     'Connection String
     set conn= createobject("ADODB.Connection") 
conn.open ConnString
     set OpenConn=conn 
End Function
    
Oracle Database:
Function OpenConn( ByVal sUserID, ByVal sPassWord ) 
     'Parameter note
     'sUserID: User name ID
     'sPassWord: User password
     Dim ConnString , conn
ConnString="Provider=MSDAORA.1;Password=" & sPassWord &";User ID=" &
     sUserID &
";Persist Security Info=True" 
     ' Create database connection string
     set conn= createobject("ADODB.Connection") 
     conn.open ConnString 
     set OpenConn=conn 
End Function

new topic     » topic index » view message » categorize

2. Re: MyDesk 2.0 codeless programming

BlFU wrote:
> 
> Common database connection character string source codes in the MyDesk 2.0

huh?

-=ck
"Programming in a state of Euphoria."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

3. Re: MyDesk 2.0 codeless programming

I believe that it, and the post immediately prior, are spam.

--
"Any programming problem can be solved by adding a level of indirection."
--anonymous
"Any performance problem can be solved by removing a level of indirection."
--M. Haertel
"Premature optimization is the root of all evil in programming."
--C.A.R. Hoare
j.

new topic     » goto parent     » topic index » view message » categorize

4. Re: MyDesk 2.0 codeless programming

Okay, maybe not the post immediately prior... it's hard to say.

--
"Any programming problem can be solved by adding a level of indirection."
--anonymous
"Any performance problem can be solved by removing a level of indirection."
--M. Haertel
"Premature optimization is the root of all evil in programming."
--C.A.R. Hoare
j.

new topic     » goto parent     » topic index » view message » categorize

5. Re: MyDesk 2.0 codeless programming

Jason Gade wrote:
> 
> Okay, maybe not the post immediately prior... it's hard to say.
>
>> Recently, I am potty about the computer programming. But I am only a
>> beginner. Could you have some god programming tools to recommend?

I can't translate "potty." As far as god's programming tools, those aren't
for beginners. Atoms. DNA. That stuff is more complex than assembly language.

-=ck
"Programming in a state of Euphoria."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

6. Re: MyDesk 2.0 codeless programming

cklester wrote:
> 
> Jason Gade wrote:
> > 
> > Okay, maybe not the post immediately prior... it's hard to say.
> >
> >> Recently, I am potty about the computer programming. But I am only a
> >> beginner. Could you have some god programming tools to recommend?
> 
> I can't translate "potty." As far as god's programming tools, those aren't
> for beginners. Atoms. DNA. That stuff is more complex than assembly language.

Hey, we've got atoms! I think they're pretty easy to work with.

And DNA comes in sequences. I should definitely know since I'm working on the
Great Computer Language Shootout programs and a couple of them are DNA-related
(and use sequences...)

smile

Anyway...

--
"Any programming problem can be solved by adding a level of indirection."
--anonymous
"Any performance problem can be solved by removing a level of indirection."
--M. Haertel
"Premature optimization is the root of all evil in programming."
--C.A.R. Hoare
j.

new topic     » goto parent     » topic index » view message » categorize

7. Re: MyDesk 2.0 codeless programming

Jason Gade wrote:
> cklester wrote:
> > Jason Gade wrote:
> > > Okay, maybe not the post immediately prior... it's hard to say.
> > >> Recently, I am potty about the computer programming. But I am only a
> > >> beginner. Could you have some god programming tools to recommend?
> > I can't translate "potty." As far as god's programming tools, those aren't
> > for beginners. Atoms. DNA. That stuff is more complex than assembly
> > language.
> Hey, we've got atoms! I think they're pretty easy to work with.
> And DNA comes in sequences.

OMG. I can't believe I missed that! Duh! I could have made such a great pun.

Ah, well... back to making Euphoria better. :)

-=ck
"Programming in a state of Euphoria."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

8. Re: MyDesk 2.0 codeless programming

Heh,

A spammer advertising a codeless programming system with VB code. Now that is
effective marketing people! Especially since MyDesk 2.0 only supports ActiveX
controls and not anyway related to Visual Basic or Euphoria.


Regards,
Vincent

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu