.NET Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgramming.NET Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #16  
Old October 26th, 2009, 05:44 AM
micky's Avatar
micky micky is offline
Couch Potato Wizard
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: India
Posts: 12,259 micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 1480 Folding Title: Novice Folder
Time spent in forums: 5 Months 4 Days 2 m 48 sec
Reputation Power: 2179
Quote:
Originally Posted by Rictor
Try this:
Code:
cmd.Parameters.AddWithValue("ID", NgramID);
                cmd.Parameters.AddWithValue("JezikID", JezikID);
                cmd.Parameters.AddWithValue("bigram_broj", ngram.Count);
                cmd.Parameters.AddWithValue("bigram_txt", BrojZnakova);
                cmd.ExecuteNonQuery();
Rictor, you are missing @
Code:
cmd.Parameters.AddWithValue("@ID", NgramID);
cmd.Parameters.AddWithValue("@JezikID", JezikID);
cmd.Parameters.AddWithValue("@bigram_broj", ngram.Count);
cmd.Parameters.AddWithValue("@bigram_txt", BrojZnakova);
cmd.ExecuteNonQuery();


JeromeJr, "didnt help" means what?
Did you get any error?
__________________
Laziness is my religion and Sunday is my God

Get the Mantra!

Reply With Quote
  #17  
Old October 26th, 2009, 05:51 AM
JeromeJr JeromeJr is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 18 JeromeJr User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m
Reputation Power: 0
in debugger all values are fine after each loop
"select" query collect all id's where bigrams (characters) are saved in table, but update wont work, i try to test every field and value and here is one of tests

example:
i insert into textbox - "ja ti on"
and it saves bigrams like this in table

Quote:
ID JezikID bigram bigram_broj bigram_txt
922 5 ja 1 6
923 5 a 1 6
924 5 t 1 6
925 5 ti 1 6
926 5 i 1 6
927 5 o 1 6
928 5 on 1 6


and then after

Quote:
foreach(Ngram ngram in m_bigramCharList)
{
cmd = new OleDbCommand("select ID from BigramChar where bigram = @bigram", conn);
cmd.Parameters.Add(new OleDbParameter("@bigram", ngram.Znakovi));
object NgramID = cmd.ExecuteScalar();
cmd.Dispose();
...

if (NgramID != null)
{
int iNgramID = (int)NgramID;

cmd = new OleDbCommand("insert into tbl_ID (charID) VALUES (@ID)", conn);
cmd.Parameters.Add(new OleDbParameter("@ID", iNgramID));
...


i have

Quote:
ID charID
590 922 - ID of ja
591 923 - ID of a
592 924 - ...
593 925
594 926
595 927
596 928


but he wont update even he collects ID's of bigrams?
and thats really weird

Reply With Quote
  #18  
Old October 26th, 2009, 01:14 PM
Rictor's Avatar
Rictor Rictor is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2006
Posts: 326 Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Week 1 Day 18 h 3 m 9 sec
Reputation Power: 213
Quote:
Originally Posted by micky
Rictor, you are missing @
Code:
cmd.Parameters.AddWithValue("@ID", NgramID);
cmd.Parameters.AddWithValue("@JezikID", JezikID);
cmd.Parameters.AddWithValue("@bigram_broj", ngram.Count);
cmd.Parameters.AddWithValue("@bigram_txt", BrojZnakova);
cmd.ExecuteNonQuery();



Actually I wasn't. The @ is only to declare the name of the parameter, you don't need to use it when refering to it or assigning it a value. Promise I always use parameters now (to protect from SQL Injection of course) and I've never once used them with the @ in the addwithvalue clause. But of course you have to when declaring the parameter in the sql statement.

Now I have no clue if it can work both ways, with the @ or without - I've never tried with the @... but I know it works without for sure

Last edited by Rictor : October 26th, 2009 at 01:18 PM.

Reply With Quote
  #19  
Old October 26th, 2009, 01:19 PM
Rictor's Avatar
Rictor Rictor is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2006
Posts: 326 Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Week 1 Day 18 h 3 m 9 sec
Reputation Power: 213
Quote:
Originally Posted by JeromeJr
didn't help

and what about using dictionary class to store ID's after "select" query and then try to update?


So what happened? Same thing as the original.... pretends to update but never changes anything in the database?

Reply With Quote
  #20  
Old October 26th, 2009, 02:09 PM
JeromeJr JeromeJr is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 18 JeromeJr User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m
Reputation Power: 0
after

Code:
cmd.Parameters.AddWithValue("@ID", NgramID);
cmd.Parameters.AddWithValue("@JezikID", JezikID);
cmd.Parameters.AddWithValue("@bigram_broj", ngram.Count);
cmd.Parameters.AddWithValue("@bigram_txt", BrojZnakova);
cmd.ExecuteNonQuery();


query updates in new field, so therefore, inserts. and when i try to do this

Code:
cmd = new OleDbCommand("UPDATE BigramChar SET bigram_broj = bigram_broj + 1213, bigram_txt = bigram_txt + 123123 where ID = @ID", conn);

query update successful bigram_broj and bigram_txt
so when i put numbers he updates, BUT when i try @"value" it does not want to update fields
yes on update query pretends to update but never changes anything in the database...

Reply With Quote
  #21  
Old October 26th, 2009, 04:03 PM
Rictor's Avatar
Rictor Rictor is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2006
Posts: 326 Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Week 1 Day 18 h 3 m 9 sec
Reputation Power: 213
The only thing I can think of is maybe one of the values you're passing as a parameter isn't what it needs to be.

Try doing this and see what the results are:
Code:
cmd.Parameters.AddWithValue("@ID", NgramID);
cmd.Parameters.AddWithValue("@JezikID", JezikID);
cmd.Parameters.AddWithValue("@bigram_broj", ngram.Count);
cmd.Parameters.AddWithValue("@bigram_txt", BrojZnakova);
Response.write("NgramID: " & ngramID & ", JezikID: " & JezikID & ", NgramCount: " & ngram.Count & ", bigram_txt: " & BrojZnakova)
'cmd.ExecuteNonQuery();

That way we can see what values it's actually trying to update with.

Reply With Quote
  #22  
Old October 26th, 2009, 06:22 PM
JeromeJr JeromeJr is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 18 JeromeJr User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m
Reputation Power: 0
response.write cannot be there. error is and "&" cannot be between string and int
do you have any opinion?

Reply With Quote
  #23  
Old October 27th, 2009, 03:26 AM
micky's Avatar
micky micky is offline
Couch Potato Wizard
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: India
Posts: 12,259 micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 1480 Folding Title: Novice Folder
Time spent in forums: 5 Months 4 Days 2 m 48 sec
Reputation Power: 2179
Quote:
Originally Posted by Rictor
Actually I wasn't. The @ is only to declare the name of the parameter, you don't need to use it when refering to it or assigning it a value. Promise I always use parameters now (to protect from SQL Injection of course) and I've never once used them with the @ in the addwithvalue clause. But of course you have to when declaring the parameter in the sql statement.

Now I have no clue if it can work both ways, with the @ or without - I've never tried with the @... but I know it works without for sure
I always use them so i thought there are mandatory

Reply With Quote
  #24  
Old October 27th, 2009, 03:32 AM
micky's Avatar
micky micky is offline
Couch Potato Wizard
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: India
Posts: 12,259 micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 1480 Folding Title: Novice Folder
Time spent in forums: 5 Months 4 Days 2 m 48 sec
Reputation Power: 2179
Quote:
Originally Posted by JeromeJr
response.write cannot be there. error is and "&" cannot be between string and int
do you have any opinion?
cant understand whats going on, try changing : to -
Code:
Response.write("NgramID- " & ngramID & ", JezikID- " & JezikID & ", NgramCount- " & ngram.Count & ", bigram_txt- " & BrojZnakova)

Reply With Quote
  #25  
Old October 27th, 2009, 03:39 AM
JeromeJr JeromeJr is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 18 JeromeJr User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m
Reputation Power: 0
im at work now, but visual studio says that response.write cannot be written in that context or something like that.

ill check when i come home
but the most annoying thing is that debugger shows all values, and no null's or errors or strings when i expect int

Reply With Quote
  #26  
Old October 27th, 2009, 03:43 AM
micky's Avatar
micky micky is offline
Couch Potato Wizard
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: India
Posts: 12,259 micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 1480 Folding Title: Novice Folder
Time spent in forums: 5 Months 4 Days 2 m 48 sec
Reputation Power: 2179
Hmmm, then just run the page and see what response.write statement outputs.

I feel, there is something that we are missing here.

Reply With Quote
  #27  
Old October 27th, 2009, 03:47 AM
JeromeJr JeromeJr is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 18 JeromeJr User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m
Reputation Power: 0
i will and result will post here

Reply With Quote
  #28  
Old October 27th, 2009, 01:18 PM
Rictor's Avatar
Rictor Rictor is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2006
Posts: 326 Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level)Rictor User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Week 1 Day 18 h 3 m 9 sec
Reputation Power: 213
Quote:
Originally Posted by JeromeJr
response.write cannot be there. error is and "&" cannot be between string and int
do you have any opinion?



Ahhh, when I wrote that I forgot you were using C# not vb.... replace the &'s with +'s and try again.

Reply With Quote
  #29  
Old October 28th, 2009, 11:33 AM
JeromeJr JeromeJr is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 18 JeromeJr User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m
Reputation Power: 0
Exclamation

here is output

Code:
System.Diagnostics.Debug.WriteLine("NgramID- " + NgramID + ", JezikID- " + JezikID + ", NgramCount- " + ngram.Count + ", bigram_txt- " + BrojZnakova);


Quote:
- this {NekaKaoLogika} NekaKaoLogika
BrojRijeci 1 int
BrojZnakova 2 int
CountBigramChar 1 int
CountBigramWord 1 int
CountTrigramChar 0 int
CountTrigramWord 1 int
- m_bigramCharList Count = 1 System.Collections.Generic.List<Ngram>
- [0] {Ngram} Ngram
Count 1 int
Znakovi "ja" string
+ Raw View
- m_bigramWordList Count = 1 System.Collections.Generic.List<Ngram>
- [0] {Ngram} Ngram
Count 1 int
Znakovi "ja" string
+ Raw View
m_Text "ja" string
+ m_trigramCharList Count = 0 System.Collections.Generic.List<Ngram>
+ m_trigramWordList Count = 1 System.Collections.Generic.List<Ngram>
victim "ja" string
+ Server {System.Web.HttpServerUtility} System.Web.HttpServerUtility
JezikID 5 int
iNgramID 1015 int
NgramID 1015 object {int}
- ngram {Ngram} Ngram
Count 1 int
Znakovi "ja" string
- conn {System.Data.OleDb.OleDbConnection} System.Data.OleDb.OleDbConnection
+ base {System.Data.OleDb.OleDbConnection} System.Data.Common.DbConnection {System.Data.OleDb.OleDbConnection}
ConnectionString "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\Things\\vs2008\\WebSite1\\App_Data\\baz a.mdb;User Id=admin;" string
ConnectionTimeout 15 int
Database "" string
DataSource "D:\\Things\\vs2008\\WebSite1\\App_Data\\baza.mdb" string
Provider "Microsoft.Jet.OLEDB.4.0" string
ServerVersion "04.00.0000" string
State Open System.Data.ConnectionState
+ Static members
+ Non-Public members
- cmd {System.Data.OleDb.OleDbCommand} System.Data.OleDb.OleDbCommand
- base {System.Data.OleDb.OleDbCommand} System.Data.Common.DbCommand {System.Data.OleDb.OleDbCommand}
+ base {System.Data.OleDb.OleDbCommand} System.ComponentModel.Component {System.Data.OleDb.OleDbCommand}
CommandText "UPDATE BigramChar SET bigram_broj = bigram_broj + 12, bigram_txt = bigram_txt + 132 WHERE ID = @ID" string
CommandTimeout 30 int
CommandType Text System.Data.CommandType
+ Connection {System.Data.OleDb.OleDbConnection} System.Data.Common.DbConnection {System.Data.OleDb.OleDbConnection}
DesignTimeVisible true bool
+ Parameters {System.Data.OleDb.OleDbParameterCollection} System.Data.Common.DbParameterCollection {System.Data.OleDb.OleDbParameterCollection}
Transaction null System.Data.Common.DbTransaction
UpdatedRowSource Both System.Data.UpdateRowSource
+ Non-Public members
CommandText "UPDATE BigramChar SET bigram_broj = bigram_broj + 12, bigram_txt = bigram_txt + 132 WHERE ID = @ID" string
CommandTimeout 30 int
CommandType Text System.Data.CommandType
+ Connection {System.Data.OleDb.OleDbConnection} System.Data.OleDb.OleDbConnection
DesignTimeVisible true bool
+ Parameters {System.Data.OleDb.OleDbParameterCollection} System.Data.OleDb.OleDbParameterCollection
+ Transaction null System.Data.OleDb.OleDbTransaction
UpdatedRowSource Both System.Data.UpdateRowSource
+ Static members
+ Non-Public members


all values are fine to me! and when i insert "ja sam ja" he changes value and everything looks good!

only i changed update statement just to check how he work with @ID and it works great!

Reply With Quote
  #30  
Old October 29th, 2009, 03:18 AM
micky's Avatar
micky micky is offline
Couch Potato Wizard
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: India
Posts: 12,259 micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)micky User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 1480 Folding Title: Novice Folder
Time spent in forums: 5 Months 4 Days 2 m 48 sec
Reputation Power: 2179
What kind of output is that??
You dont see the variable's values in those.

Reply With Quote
Reply

Viewing: ASP Free ForumsProgramming.NET Development > VBScript - Database - General - Update wont work


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek