Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / SqlDataSourceParameterParser.cs / 1 / SqlDataSourceParameterParser.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System; using System.Collections; using System.Diagnostics; using System.IO; using System.Web.UI.WebControls; // ////// Helper class to get list of parameters from an arbitrary SQL query. /// internal static class SqlDataSourceParameterParser { ////// Parses a command and returns an array of parameter names. /// public static Parameter[] ParseCommandText(string providerName, string commandText) { if (String.IsNullOrEmpty(providerName)) { providerName = SqlDataSourceDesigner.DefaultProviderName; } if (String.IsNullOrEmpty(commandText)) { commandText = String.Empty; } ParameterParser parser = null; switch (providerName.ToLowerInvariant()) { case "system.data.sqlclient": parser = new SqlClientParameterParser(); break; case "system.data.odbc": case "system.data.oledb": parser = new MiscParameterParser(); break; case "system.data.oracleclient": parser = new OracleClientParameterParser(); break; } if (parser == null) { Debug.Fail("Trying to parse parameters for unknown provider: " + providerName); return new Parameter[0]; } return parser.ParseCommandText(commandText); } ////// Base class for parameter parsing classes. /// private abstract class ParameterParser { public abstract Parameter[] ParseCommandText(string commandText); } ////// Parses SqlClient parameters of the form: /// select * from authors where col1 = @param1 /// private sealed class SqlClientParameterParser : ParameterParser { ////// List of states for parser. /// private enum State { InText, InQuote, InDoubleQuote, InBracket, InParameter, } ////// Returns true is a character is valid for a named parameter. /// private static bool IsValidParamNameChar(char c) { return (Char.IsLetterOrDigit(c)) || (c == '@') || (c == '$') || (c == '#') || (c == '_'); } public override Parameter[] ParseCommandText(string commandText) { int index = 0; int length = commandText.Length; State state = State.InText; System.Collections.Generic.Listparameters = new System.Collections.Generic.List (); System.Collections.Specialized.StringCollection parameterNames = new System.Collections.Specialized.StringCollection(); while (index < length) { switch (state) { case State.InText: if (commandText[index] == '\'') { state = State.InQuote; } else if (commandText[index] == '"') { state = State.InDoubleQuote; } else if (commandText[index] == '[') { state = State.InBracket; } else if (commandText[index] == '@') { state = State.InParameter; } else { index++; } break; case State.InQuote: index++; while (index < length && commandText[index] != '\'') { index++; } index++; state = State.InText; break; case State.InDoubleQuote: index++; while (index < length && commandText[index] != '"') { index++; } index++; state = State.InText; break; case State.InBracket: index++; while (index < length && commandText[index] != ']') { index++; } index++; state = State.InText; break; case State.InParameter: index++; string paramName = String.Empty; while ((index < length) && (IsValidParamNameChar(commandText[index]))) { paramName += commandText[index]; index++; } // Ignore @@functions since they aren't parameters if (!paramName.StartsWith("@", StringComparison.Ordinal)) { Parameter p = new Parameter(paramName); // Ignore duplicate parameters if (!parameterNames.Contains(paramName)) { parameters.Add(p); parameterNames.Add(paramName); } } state = State.InText; break; } } return parameters.ToArray(); } } /// /// Parses ODBC and OLEDB parameters of the form: /// select * from authors where col1 = ? /// private sealed class MiscParameterParser : ParameterParser { ////// List of states for parser. /// private enum State { InText, InQuote, InDoubleQuote, InBracket, InQuestion, } public override Parameter[] ParseCommandText(string commandText) { int index = 0; int length = commandText.Length; State state = State.InText; System.Collections.Generic.Listparameters = new System.Collections.Generic.List (); while (index < length) { switch (state) { case State.InText: if (commandText[index] == '\'') { state = State.InQuote; } else if (commandText[index] == '"') { state = State.InDoubleQuote; } else if (commandText[index] == '[') { state = State.InBracket; } else if (commandText[index] == '?') { state = State.InQuestion; } else { index++; } break; case State.InQuote: index++; while (index < length && commandText[index] != '\'') { index++; } index++; state = State.InText; break; case State.InDoubleQuote: index++; while (index < length && commandText[index] != '"') { index++; } index++; state = State.InText; break; case State.InBracket: index++; while (index < length && commandText[index] != ']') { index++; } index++; state = State.InText; break; case State.InQuestion: index++; parameters.Add(new Parameter("?")); state = State.InText; break; } } return parameters.ToArray(); } } /// /// Parses OracleClient parameters of the form: /// select * from authors where col1 = :param1 /// private sealed class OracleClientParameterParser : ParameterParser { ////// List of states for parser. /// private enum State { InText, InQuote, InDoubleQuote, InBracket, InParameter, } ////// Returns true is a character is valid for a named parameter. /// private static bool IsValidParamNameChar(char c) { // return (Char.IsLetterOrDigit(c)) || (c == '_'); } public override Parameter[] ParseCommandText(string commandText) { int index = 0; int length = commandText.Length; State state = State.InText; System.Collections.Generic.Listparameters = new System.Collections.Generic.List (); System.Collections.Specialized.StringCollection parameterNames = new System.Collections.Specialized.StringCollection(); while (index < length) { switch (state) { case State.InText: if (commandText[index] == '\'') { state = State.InQuote; } else if (commandText[index] == '"') { state = State.InDoubleQuote; } else if (commandText[index] == '[') { state = State.InBracket; } else if (commandText[index] == ':') { state = State.InParameter; } else { index++; } break; case State.InQuote: index++; while (index < length && commandText[index] != '\'') { index++; } index++; state = State.InText; break; case State.InDoubleQuote: index++; while (index < length && commandText[index] != '"') { index++; } index++; state = State.InText; break; case State.InBracket: index++; while (index < length && commandText[index] != ']') { index++; } index++; state = State.InText; break; case State.InParameter: index++; string paramName = String.Empty; while ((index < length) && (IsValidParamNameChar(commandText[index]))) { paramName += commandText[index]; index++; } Parameter p = new Parameter(paramName); // Ignore duplicate parameters if (!parameterNames.Contains(paramName)) { parameters.Add(p); parameterNames.Add(paramName); } state = State.InText; break; } } return parameters.ToArray(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReferenceConverter.cs
- UnmanagedMemoryStreamWrapper.cs
- WebWorkflowRole.cs
- SpecialNameAttribute.cs
- EventPrivateKey.cs
- ApplicationBuildProvider.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- RootCodeDomSerializer.cs
- LinkArea.cs
- DoubleCollection.cs
- RegexReplacement.cs
- FolderBrowserDialog.cs
- ToolTip.cs
- Annotation.cs
- BatchParser.cs
- FormatConvertedBitmap.cs
- DiscoveryMessageSequenceGenerator.cs
- XmlDocumentType.cs
- ViewCellSlot.cs
- HwndHost.cs
- SkewTransform.cs
- XmlFormatExtensionPointAttribute.cs
- ApplicationSettingsBase.cs
- StringValidatorAttribute.cs
- SqlRetyper.cs
- ClaimTypeRequirement.cs
- ControlAdapter.cs
- ToolboxItemImageConverter.cs
- DbBuffer.cs
- WebPartConnectionsConnectVerb.cs
- ScopedKnownTypes.cs
- BooleanProjectedSlot.cs
- MimeObjectFactory.cs
- FontInfo.cs
- DataListCommandEventArgs.cs
- ExitEventArgs.cs
- Stackframe.cs
- ExpressionParser.cs
- MSG.cs
- WebPartHelpVerb.cs
- Encoder.cs
- ElementUtil.cs
- TriState.cs
- Visual3D.cs
- MsmqInputSessionChannel.cs
- RtfControls.cs
- FileDialog.cs
- SafeBitVector32.cs
- CheckedPointers.cs
- WmiEventSink.cs
- CommandPlan.cs
- TableCell.cs
- StateMachineSubscriptionManager.cs
- followingquery.cs
- ADConnectionHelper.cs
- TextEvent.cs
- CustomSignedXml.cs
- DoubleLink.cs
- Soap11ServerProtocol.cs
- SoapElementAttribute.cs
- DataBoundControl.cs
- DataSourceSelectArguments.cs
- X509CertificateStore.cs
- LeaseManager.cs
- DataGridViewRowsAddedEventArgs.cs
- WebFaultException.cs
- EventWaitHandle.cs
- GroupQuery.cs
- MethodExecutor.cs
- DateTimeConverter.cs
- HttpPostServerProtocol.cs
- XmlCDATASection.cs
- RepeaterItemEventArgs.cs
- KeyPullup.cs
- CollectionView.cs
- WindowsMenu.cs
- FontStretchConverter.cs
- Collection.cs
- Attributes.cs
- X500Name.cs
- CustomAttribute.cs
- TreeView.cs
- Variant.cs
- ObjectSet.cs
- CommonObjectSecurity.cs
- FrameworkReadOnlyPropertyMetadata.cs
- MachineSettingsSection.cs
- AppDomainProtocolHandler.cs
- DataGridViewCellCollection.cs
- PageFunction.cs
- ReferenceCountedObject.cs
- DateTimeConverter2.cs
- Rotation3DKeyFrameCollection.cs
- SmiGettersStream.cs
- SchemaComplexType.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- CallbackHandler.cs
- WindowsToolbar.cs
- DeviceFilterEditorDialog.cs
- XPathSingletonIterator.cs