Re: Database Connectivity
Will post the encryption code on Monday, I don't remember who wrote,
but it works great. I use it to store passwords in an access table.
Check back Monday after 8AM Central Time.
Izzy
Miro wrote:
Will post the encryption code on Monday, I don't remember who wrote,
but it works great. I use it to store passwords in an access table.
Check back Monday after 8AM Central Time.
Izzy
Miro wrote:
Izzy,
>
Id be interested in that 128 bit encryption - just to see how you do it. -
If you wouldnt mind.
>
Ivan,
I am in the same boat you are, just started learning vb.net
My code is probably all over the place. I started one step behind and
create my access table with adox.
There isnt much info out there. If you need something like that, let me
know. I found some good examples out there,
but were super hard to find.
>
Miro
>
"Izzy" <israel.richner @gmail.comwrote in message
news:1158951171 .143852.231990@ b28g2000cwb.goo glegroups.com.. .
>
Id be interested in that 128 bit encryption - just to see how you do it. -
If you wouldnt mind.
>
Ivan,
I am in the same boat you are, just started learning vb.net
My code is probably all over the place. I started one step behind and
create my access table with adox.
There isnt much info out there. If you need something like that, let me
know. I found some good examples out there,
but were super hard to find.
>
Miro
>
"Izzy" <israel.richner @gmail.comwrote in message
news:1158951171 .143852.231990@ b28g2000cwb.goo glegroups.com.. .
Something to remember is when you destroy an object the memory doesn't
get released back to the OS instantly. It's not until the GC (garbage
collector) comes along and cleans up any unused resources.
I've had instances where I had to tell the garbage collecter to run
manually: gc.Collect()
You'll need that at some point.
Additionally Seth was right, passwords should be encrypted when stored
in an Access file. I have a routine for that too, it will encrypt it
with 128bit encryption then store it in the Access file. I didn't write
and I can't remember who did.
But if you want it I'll post it for you.
Izzy
Ivan Weiss wrote:
get released back to the OS instantly. It's not until the GC (garbage
collector) comes along and cleans up any unused resources.
I've had instances where I had to tell the garbage collecter to run
manually: gc.Collect()
You'll need that at some point.
Additionally Seth was right, passwords should be encrypted when stored
in an Access file. I have a routine for that too, it will encrypt it
with 128bit encryption then store it in the Access file. I didn't write
and I can't remember who did.
But if you want it I'll post it for you.
Izzy
Ivan Weiss wrote:
Izzy, another question.
>
Wouldnt you need to destroy the object or dispose of it or anything
after utilizing? Or will all resources be freed and database connection
be closed automatically once the functions run?
>
-Ivan
>
*** Sent via Developersdex http://www.developersdex.com ***
>
Wouldnt you need to destroy the object or dispose of it or anything
after utilizing? Or will all resources be freed and database connection
be closed automatically once the functions run?
>
-Ivan
>
*** Sent via Developersdex http://www.developersdex.com ***
Comment