Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~90 People Reached
Favorite Forums
Favorite Tags
Member Avatar for mastanasp

[CODE]public Int32 SQL_GetMaxValue(string TableName, string FieldName) { return SQL_GetMaxValue(TableName, FieldName, ""); } public Int32 SQL_GetMaxValue(string TableName, string FieldName, string WhereCondition) { try { string SQLString = "SELECT MAX(" + FieldName + ") FROM " + TableName; if (WhereCondition != "") { SQLString += " WHERE " + WhereCondition; } objCN.Close(); …

Member Avatar for mani-hellboy
-1
90