20260122
parent
1da8c83599
commit
d1ac75ddec
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
fee160d737e0a1ac04f1c7452768db9269ab91be
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
b3844af68b9ceefdfa6491f63b3317f1f8e77b2d
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,424 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>BCrypt.Net-Next</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:BCrypt.Net.BCrypt">
|
||||
<summary>BCrypt implementation.</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
BCrypt implements OpenBSD-style Blowfish password hashing using the scheme described in
|
||||
<a href="http://www.usenix.org/event/usenix99/provos/provos_html/index.html">"A Future-
|
||||
Adaptable Password Scheme"</a> by Niels Provos and David Mazieres.
|
||||
</para>
|
||||
<para>
|
||||
This password hashing system tries to thwart off-line password cracking using a
|
||||
computationally-intensive hashing algorithm, based on Bruce Schneier's Blowfish cipher.
|
||||
The work factor of the algorithm is parameterised, so it can be increased as computers
|
||||
get faster.
|
||||
</para>
|
||||
<para>
|
||||
To hash a password using the defaults, call the <see cref="M:BCrypt.Net.BCrypt.HashPassword(System.String)"/> (which will generate a random salt and hash at default cost), like this:
|
||||
</para>
|
||||
<code>string pw_hash = BCrypt.HashPassword(plain_password);</code>
|
||||
<para>
|
||||
To hash a password using SHA384 pre-hashing for increased entropy call <see cref="M:BCrypt.Net.BCrypt.EnhancedHashPassword(System.String)"/>
|
||||
(which will generate a random salt and hash at default cost), like this:
|
||||
</para>
|
||||
<code>string pw_hash = BCrypt.EnhancedHashPassword(plain_password);</code>
|
||||
<para>
|
||||
To check whether a plaintext password matches one that has been hashed previously,
|
||||
use the <see cref="M:BCrypt.Net.BCrypt.Verify(System.String,System.String,System.Boolean,BCrypt.Net.HashType)"/> method:
|
||||
(To validate an enhanced hash you can pass true as the last parameter of Verify or use <see cref="M:BCrypt.Net.BCrypt.EnhancedVerify(System.String,System.String,BCrypt.Net.HashType)"/>)
|
||||
</para>
|
||||
<code>
|
||||
if (BCrypt.Verify(candidate_password, stored_hash))
|
||||
Console.WriteLine("It matches");
|
||||
else
|
||||
Console.WriteLine("It does not match");
|
||||
</code>
|
||||
<para>
|
||||
The <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/> method takes an optional parameter (workFactor) that
|
||||
determines the computational complexity of the hashing:
|
||||
</para>
|
||||
<code>
|
||||
string strong_salt = BCrypt.GenerateSalt(10);
|
||||
string stronger_salt = BCrypt.GenerateSalt(12);
|
||||
</code>
|
||||
<para>
|
||||
The amount of work increases exponentially (2^workFactor), so each increment is twice
|
||||
as much work. The default workFactor is 10, and the valid range is 4 to 31.
|
||||
</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:BCrypt.Net.BCrypt.DefaultRounds">
|
||||
<summary>
|
||||
Default Work Factor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:BCrypt.Net.BCrypt.RngCsp">
|
||||
<summary>
|
||||
RandomNumberGenerator.Create calls RandomNumberGenerator.Create("System.Security.Cryptography.RandomNumberGenerator"), which will create an instance of RNGCryptoServiceProvider.
|
||||
https://msdn.microsoft.com/en-us/library/42ks8fz1
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.ValidateAndReplacePassword(System.String,System.String,System.String,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Validate existing hash and password,
|
||||
</summary>
|
||||
<param name="currentKey">Current password / string</param>
|
||||
<param name="currentHash">Current hash to validate password against</param>
|
||||
<param name="newKey">NEW password / string to be hashed</param>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2^workFactor. Default is 11</param>
|
||||
<param name="forceWorkFactor">By default this method will not accept a work factor lower
|
||||
than the one set in the current hash and will set the new work-factor to match.</param>
|
||||
<exception cref="T:BCrypt.Net.BcryptAuthenticationException">returned if the users hash and current pass doesn't validate</exception>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">returned if the salt is invalid in any way</exception>
|
||||
<exception cref="T:System.ArgumentException">returned if the hash is invalid</exception>
|
||||
<exception cref="T:System.ArgumentNullException">returned if the user hash is null</exception>
|
||||
<returns>New hash of new password</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.ValidateAndReplacePassword(System.String,System.String,System.Boolean,BCrypt.Net.HashType,System.String,System.Boolean,BCrypt.Net.HashType,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Validate existing hash and password,
|
||||
</summary>
|
||||
<param name="currentKey">Current password / string</param>
|
||||
<param name="currentHash">Current hash to validate password against</param>
|
||||
<param name="currentKeyEnhancedEntropy">Set to true,the string will undergo SHA384 hashing to make
|
||||
use of available entropy prior to bcrypt hashing</param>
|
||||
<param name="oldHashType">HashType used (default SHA384)</param>
|
||||
|
||||
<param name="newKey">NEW password / string to be hashed</param>
|
||||
<param name="newKeyEnhancedEntropy">Set to true,the string will undergo SHA384 hashing to make
|
||||
use of available entropy prior to bcrypt hashing</param>
|
||||
<param name="newHashType">HashType to use (default SHA384)</param>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2^workFactor. Default is 11</param>
|
||||
<param name="forceWorkFactor">By default this method will not accept a work factor lower
|
||||
than the one set in the current hash and will set the new work-factor to match.</param>
|
||||
<exception cref="T:BCrypt.Net.BcryptAuthenticationException">returned if the users hash and current pass doesn't validate</exception>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">returned if the salt is invalid in any way</exception>
|
||||
<exception cref="T:System.ArgumentException">returned if the hash is invalid</exception>
|
||||
<exception cref="T:System.ArgumentNullException">returned if the user hash is null</exception>
|
||||
<returns>New hash of new password</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashString(System.String,System.Int32)">
|
||||
<summary>
|
||||
Hash a string using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<remarks>Just an alias for HashPassword.</remarks>
|
||||
<param name="inputKey"> The string to hash.</param>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2^workFactor. Default is 11</param>
|
||||
<returns>The hashed string.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String)">
|
||||
<summary>
|
||||
Hash a password using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<param name="inputKey">The password to hash.</param>
|
||||
<returns>The hashed password.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EnhancedHashPassword(System.String)">
|
||||
<summary>
|
||||
Pre-hash a password with SHA384 then using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<param name="inputKey">The password to hash.</param>
|
||||
<returns>The hashed password.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EnhancedHashPassword(System.String,System.Int32)">
|
||||
<summary>
|
||||
Pre-hash a password with SHA384 then using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<param name="inputKey">The password to hash.</param>
|
||||
<param name="workFactor"></param>
|
||||
<returns>The hashed password.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EnhancedHashPassword(System.String,System.Int32,BCrypt.Net.HashType)">
|
||||
<summary>
|
||||
Pre-hash a password with SHA384 then using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<param name="inputKey">The password to hash.</param>
|
||||
<param name="workFactor"></param>
|
||||
<param name="hashType">Configurable hash type for enhanced entropy</param>
|
||||
<returns>The hashed password.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EnhancedHashPassword(System.String,BCrypt.Net.HashType,System.Int32)">
|
||||
<summary>
|
||||
Pre-hash a password with SHA384 then using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<param name="inputKey">The password to hash.</param>
|
||||
<param name="workFactor">Defaults to 11</param>
|
||||
<param name="hashType">Configurable hash type for enhanced entropy</param>
|
||||
<returns>The hashed password.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Hash a password using the OpenBSD BCrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt(System.Int32,System.Char)"/> using the given <paramref name="workFactor"/>.
|
||||
</summary>
|
||||
<param name="inputKey"> The password to hash.</param>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2^workFactor. Default is 11</param>
|
||||
<param name="enhancedEntropy">Set to true,the string will undergo SHA384 hashing to make use of available entropy prior to bcrypt hashing</param>
|
||||
<returns>The hashed password.</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String)">
|
||||
<summary>Hash a password using the OpenBSD BCrypt scheme.</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or illegal values.</exception>
|
||||
<param name="inputKey">The password or string to hash.</param>
|
||||
<param name="salt"> the salt to hash with (best generated using <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>).</param>
|
||||
<returns>The hashed password</returns>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the <paramref name="salt"/> could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String,System.Boolean,BCrypt.Net.HashType)">
|
||||
<summary>Hash a password using the OpenBSD BCrypt scheme.</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or illegal values.</exception>
|
||||
<param name="inputKey">The password or string to hash.</param>
|
||||
<param name="salt"> the salt to hash with (best generated using <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>).</param>
|
||||
<param name="enhancedEntropy">Set to true,the string will undergo hashing (defaults to SHA384 then base64 encoding) to make use of available entropy prior to bcrypt hashing</param>
|
||||
<param name="hashType">Configurable hash type for enhanced entropy</param>
|
||||
<returns>The hashed password</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown when the <paramref name="inputKey"/> is null.</exception>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the <paramref name="salt"/> could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EnhancedHash(System.Byte[],System.Char,BCrypt.Net.HashType)">
|
||||
<summary>
|
||||
Hashes key, base64 encodes before returning byte array
|
||||
</summary>
|
||||
<param name="inputBytes"></param>
|
||||
<param name="bcryptMinorRevision"></param>
|
||||
<param name="hashType"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.GenerateSalt(System.Int32,System.Char)">
|
||||
<summary>
|
||||
Generate a salt for use with the <see cref="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String)"/> method.
|
||||
</summary>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2**workFactor.</param>
|
||||
<param name="bcryptMinorRevision"></param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">Work factor must be between 4 and 31</exception>
|
||||
<returns>A base64 encoded salt value.</returns>
|
||||
<exception cref="T:System.ArgumentException">BCrypt Revision should be a, b, x or y</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.PasswordNeedsRehash(System.String,System.Int32)">
|
||||
<summary>
|
||||
Based on password_needs_rehash in PHP this method will return true
|
||||
if the work factor (logrounds) set on the hash is lower than the new minimum workload passed in
|
||||
</summary>
|
||||
<param name="hash">full bcrypt hash</param>
|
||||
<param name="newMinimumWorkLoad">target workload</param>
|
||||
<returns>true if new work factor is higher than the one in the hash</returns>
|
||||
<exception cref="T:System.ArgumentException">throws if the current hash workload (logrounds) can not be parsed</exception>
|
||||
<exception cref="T:BCrypt.Net.HashInformationException"></exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.InterrogateHash(System.String)">
|
||||
<summary>
|
||||
Takes a valid hash and outputs its component parts
|
||||
</summary>
|
||||
<param name="hash"></param>
|
||||
<exception cref="T:BCrypt.Net.HashInformationException"></exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.GenerateSalt">
|
||||
<summary>
|
||||
Generate a salt for use with the <see cref="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String)"/> method
|
||||
selecting a reasonable default for the number of hashing rounds to apply.
|
||||
</summary>
|
||||
<returns>A base64 encoded salt value.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EnhancedVerify(System.String,System.String,BCrypt.Net.HashType)">
|
||||
<summary>
|
||||
Verifies that the hash of the given <paramref name="text"/> matches the provided
|
||||
<paramref name="hash"/>; the string will undergo SHA384 hashing to maintain the enhanced entropy work done during hashing
|
||||
</summary>
|
||||
<param name="text">The text to verify.</param>
|
||||
<param name="hash"> The previously-hashed password.</param>
|
||||
<param name="hashType">HashType used (default SHA384)</param>
|
||||
<returns>true if the passwords match, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Verify(System.String,System.String,System.Boolean,BCrypt.Net.HashType)">
|
||||
<summary>
|
||||
Verifies that the hash of the given <paramref name="text"/> matches the provided
|
||||
<paramref name="hash"/>
|
||||
</summary>
|
||||
<param name="text">The text to verify.</param>
|
||||
<param name="hash"> The previously-hashed password.</param>
|
||||
<param name="enhancedEntropy">Set to true,the string will undergo SHA384 hashing to make use of available entropy prior to bcrypt hashing</param>
|
||||
<param name="hashType">HashType used (default SHA384)</param>
|
||||
<returns>true if the passwords match, false otherwise.</returns>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or illegal values.</exception>
|
||||
<exception cref="T:BCrypt.Net.SaltParseException">Thrown when the salt could not be parsed.</exception>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EncodeBase64(System.Byte[],System.Int32)">
|
||||
<summary>
|
||||
Encode a byte array using BCrypt's slightly-modified base64 encoding scheme. Note that this
|
||||
is *not* compatible with the standard MIME-base64 encoding.
|
||||
</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="byteArray">The byte array to encode.</param>
|
||||
<param name="length"> The number of bytes to encode.</param>
|
||||
<returns>Base64-encoded string.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.DecodeBase64(System.String,System.Int32)">
|
||||
<summary>
|
||||
Decode a string encoded using BCrypt's base64 scheme to a byte array.
|
||||
Note that this is *not* compatible with the standard MIME-base64 encoding.
|
||||
</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="encodedString">The string to decode.</param>
|
||||
<param name="maximumBytes"> The maximum bytes to decode.</param>
|
||||
<returns>The decoded byte array.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Char64(System.Char)">
|
||||
<summary>
|
||||
Look up the 3 bits base64-encoded by the specified character, range-checking against
|
||||
conversion table.
|
||||
</summary>
|
||||
<param name="character">The base64-encoded value.</param>
|
||||
<returns>The decoded value of x.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Encipher(System.Span{System.UInt32},System.Int32)">
|
||||
<summary>Blowfish encipher a single 64-bit block encoded as two 32-bit halves.</summary>
|
||||
<param name="blockArray">An array containing the two 32-bit half blocks.</param>
|
||||
<param name="offset"> The position in the array of the blocks.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.StreamToWord(System.ReadOnlySpan{System.Byte},System.Int32@)">
|
||||
<summary>Cyclically extract a word of key material.</summary>
|
||||
<param name="data">The string to extract the data from.</param>
|
||||
<param name="offset"> [in,out] The current offset.</param>
|
||||
<returns>The next word of material from data.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.InitializeKey">
|
||||
<summary>Initializes the Blowfish key schedule.</summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Key(System.ReadOnlySpan{System.Byte})">
|
||||
<summary>Key the Blowfish cipher.</summary>
|
||||
<param name="keyBytes">The key byte array.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EKSKey(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<summary>
|
||||
Perform the "enhanced key schedule" step described by Provos and Mazieres in
|
||||
"A Future Adaptable Password Scheme" http://www.openbsd.org/papers/bcrypt-paper.ps.
|
||||
</summary>
|
||||
<param name="saltBytes"> Salt byte array.</param>
|
||||
<param name="inputBytes">Input byte array.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.CryptRaw(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32)">
|
||||
<summary>Perform the central hashing step in the BCrypt scheme.</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="inputBytes">The input byte array to hash.</param>
|
||||
<param name="saltBytes"> The salt byte array to hash with.</param>
|
||||
<param name="workFactor"> The binary logarithm of the number of rounds of hashing to apply.</param>
|
||||
<returns>A byte array containing the hashed result.</returns>
|
||||
</member>
|
||||
<member name="T:BCrypt.Net.BcryptAuthenticationException">
|
||||
<inheritdoc />
|
||||
<summary>Exception for signalling hash validation errors. </summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BcryptAuthenticationException.#ctor">
|
||||
<inheritdoc />
|
||||
<summary>Default constructor. </summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BcryptAuthenticationException.#ctor(System.String)">
|
||||
<inheritdoc />
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.BcryptAuthenticationException" />.</summary>
|
||||
<param name="message">The message.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BcryptAuthenticationException.#ctor(System.String,System.Exception)">
|
||||
<inheritdoc />
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.BcryptAuthenticationException" />.</summary>
|
||||
<param name="message"> The message.</param>
|
||||
<param name="innerException">The inner exception.</param>
|
||||
</member>
|
||||
<member name="T:BCrypt.Net.HashInformation">
|
||||
<summary>
|
||||
HashInformation : A value object that contains the results of interrogating a hash
|
||||
Namely its settings (2a$10 for example); version (2a); workfactor (log rounds), and the raw hash returned
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.HashInformation.#ctor(System.String,System.String,System.String,System.String)">
|
||||
<summary>Constructor. </summary>
|
||||
<param name="settings">The message.</param>
|
||||
<param name="version">The message.</param>
|
||||
<param name="workFactor">The message.</param>
|
||||
<param name="rawHash">The message.</param>
|
||||
</member>
|
||||
<member name="P:BCrypt.Net.HashInformation.Settings">
|
||||
<summary>
|
||||
Settings string
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:BCrypt.Net.HashInformation.Version">
|
||||
<summary>
|
||||
Hash Version
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:BCrypt.Net.HashInformation.WorkFactor">
|
||||
<summary>
|
||||
log rounds used / workfactor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:BCrypt.Net.HashInformation.RawHash">
|
||||
<summary>
|
||||
Raw Hash
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:BCrypt.Net.HashInformationException">
|
||||
<summary>
|
||||
Exception used to signal errors that occur during use of the hash information methods
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.HashInformationException.#ctor">
|
||||
<summary>
|
||||
Default Constructor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.HashInformationException.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of <see cref="T:BCrypt.Net.HashInformationException" />.
|
||||
</summary>
|
||||
<param name="message"></param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.HashInformationException.#ctor(System.String,System.Exception)">
|
||||
<summary>
|
||||
Initializes a new instance of <see cref="T:BCrypt.Net.HashInformationException" />.
|
||||
</summary>
|
||||
<param name="message"></param>
|
||||
<param name="innerException"></param>
|
||||
</member>
|
||||
<member name="T:BCrypt.Net.HashType">
|
||||
<summary>
|
||||
Type of SHA implementation to use
|
||||
Keys will be hashed, then base64 encoded before being passed to crypt.
|
||||
Unless legacy is selected in which case simply SHA384 hashed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:BCrypt.Net.SaltParseException">
|
||||
<summary>Exception for signalling parse errors during salt checks. </summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor">
|
||||
<summary>Default constructor. </summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.SaltParseException" />.</summary>
|
||||
<param name="message">The message.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor(System.String,System.Exception)">
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.SaltParseException" />.</summary>
|
||||
<param name="message"> The message.</param>
|
||||
<param name="innerException">The inner exception.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="plcIp" value="192.168.0.1"/>
|
||||
<add key="plcport" value="60001"/>
|
||||
|
||||
<add key="offThriftIp" value="127.0.0.1"/>
|
||||
<add key="offThriftport" value="7914"/>
|
||||
<add key="useBackMaterial" value="0"/>
|
||||
</appSettings>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup><system.serviceModel>
|
||||
<bindings/>
|
||||
<client/>
|
||||
</system.serviceModel>
|
||||
<system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="MySql.Data.MySqlClient"/>
|
||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.8.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/>
|
||||
</DbProviderFactories>
|
||||
</system.data></configuration>
|
||||
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup><system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="MySql.Data.MySqlClient"/>
|
||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.8.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/>
|
||||
</DbProviderFactories>
|
||||
</system.data></configuration>
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
|
||||
</configSections>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
|
||||
<targets>
|
||||
|
||||
<target xsi:type="File" name="LogFile" fileName="${basedir}/logs/logfile_${date:format=yyyyMMdd}.log"/>
|
||||
</targets>
|
||||
. <rules>
|
||||
<logger name="loggerFile" minlevel="Info" writeTo="LogFile"></logger>
|
||||
|
||||
</rules>
|
||||
|
||||
|
||||
</nlog>
|
||||
</configuration>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup><system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="MySql.Data.MySqlClient"/>
|
||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.8.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/>
|
||||
</DbProviderFactories>
|
||||
</system.data></configuration>
|
||||
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup><system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="MySql.Data.MySqlClient"/>
|
||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.8.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/>
|
||||
</DbProviderFactories>
|
||||
</system.data></configuration>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<ConnectionConfig>
|
||||
<Recommand>强烈建议:对数据库以及本软件的参数更改,不要在此页进行.可以通过系统配置页进行更新.</Recommand>
|
||||
<!--测试数据库-->
|
||||
<!--本机-->
|
||||
<MySqlConnectionString>vadMWi9D6ZBkwIr78LoLmGwiSCvVnpY3nMB7IyQlxFiV2OD5s5WUgOabwGwWK3THmyUqdarOD4hLgFIvnCg0Z5JcMnCcII6fP2O7usaxD2yxms2iG3eLDegOrDQOCCjq</MySqlConnectionString>
|
||||
|
||||
<sqlConnectionString>vadMWi9D6ZBkwIr78LoLmGwiSCvVnpY3nMB7IyQlxFiV2OD5s5WUgOabwGwWK3THmyUqdarOD4hLgFIvnCg0Z5JcMnCcII6fP2O7usaxD2yxms2iG3eLDegOrDQOCCjq</sqlConnectionString>
|
||||
|
||||
<!--内网-->
|
||||
<!--<MySqlConnectionString>DzcynNo9wI3U333HTwNyHtpazMtAq6qvUeaqcpctCT9Jnm9IRlHDogE5DvGjRk3tvCzQTaSDGuoD9zNO7I5mahV5Wkh+8uLt1PNMLdG8Z/vE8hCWrx/J8BIElJOCITrBJyyNu4CFdDcK+JiR7dM6TeqqngkSlFNq</MySqlConnectionString>-->
|
||||
<!--外网-->
|
||||
<!--<MySqlConnectionString>DzcynNo9wI3ywVb21cBfnzwp/kq/a9Hv3j/RHiY7MAlt++hShhDcjSIbLVJjEg66tFynHRz0lqcDJ5AloVh6ED1PsnJ7S3eXU3rgFonUuEQqvzhrIJkqYlgtYJb8/plmcIIVLj17qZpLqMLN+OFL8J8KXYedfvtOu+pVw5QWXHI=</MySqlConnectionString>-->
|
||||
<MESConnectionString>DzcynNo9wI1uIoRP8Es6o5sPtNyqInEVfOSqkNUEDdwVu/vFUCCx9wpZm6AbpkssA6yYWow1IOZQDYB7qhNqrkR9P/VQ49pswLX9sczl1+L7hIWa5YESEFeOzH8vSTgVeKVqkVH2oNdQ9pP3kFACoCqLHyF863UMAI+hNtOK1gM=</MESConnectionString>
|
||||
<!--正式数据库-->
|
||||
<!--<MySqlConnectionString>igZ3PbqeXzez1HUpTvRW4+LN/9fIQE8w7lqtFwpDujEJchOzHF4jJWgEwT3oxB+uW0XXOd7lwTdL1w6kdh7LQieRTzhe4Z2yGk1RKM8hcNnxWfNsUqIOH89niuwO6y1z</MySqlConnectionString>-->
|
||||
</ConnectionConfig>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,101 +0,0 @@
|
||||
2019-04-27 11:32:22.6575|INFO|loggerFile|select * from basedata_linecatcharea where isdeleted=0
|
||||
2019-04-27 11:32:22.6816|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\特冰\特冰2\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-04-27 11:32:37.7092|INFO|loggerFile|select * from BaseData_PlcSetting where isdeleted=0
|
||||
2019-04-27 11:32:37.7182|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\特冰\特冰2\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-04-27 19:21:23.2784|INFO|loggerFile|select * from basedata_linecatcharea where isdeleted=0
|
||||
2019-04-27 19:21:23.3104|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\特冰\特冰2\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-04-27 19:21:23.3294|INFO|loggerFile|select * from BaseData_PlcSetting where isdeleted=0
|
||||
2019-04-27 19:21:23.3294|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\特冰\特冰2\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-04-27 19:21:23.3574|INFO|loggerFile|select Id, MaterialNo, MaterialNm, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from basedata_materialinfo
|
||||
2019-04-27 19:21:23.3574|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\特冰\特冰2\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-04-27 19:21:23.4173|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2563
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 57System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2563
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 57
|
||||
2019-04-27 19:31:28.2548|ERROR|loggerFile|初始化控制台系统异常:已添加了具有相同键的项。 在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56System.ArgumentException: 已添加了具有相同键的项。
|
||||
在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56
|
||||
2019-04-27 19:41:16.7838|ERROR|loggerFile|初始化控制台系统异常:已添加了具有相同键的项。 在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56System.ArgumentException: 已添加了具有相同键的项。
|
||||
在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56
|
||||
2019-04-27 19:51:05.0846|ERROR|loggerFile|初始化控制台系统异常:已添加了具有相同键的项。 在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56System.ArgumentException: 已添加了具有相同键的项。
|
||||
在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56
|
||||
2019-04-27 20:03:37.0510|ERROR|loggerFile|初始化控制台系统异常:已添加了具有相同键的项。 在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56System.ArgumentException: 已添加了具有相同键的项。
|
||||
在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56
|
||||
@ -1,61 +0,0 @@
|
||||
2019-04-28 09:12:46.6685|ERROR|loggerFile|初始化控制台系统异常:已添加了具有相同键的项。 在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56System.ArgumentException: 已添加了具有相同键的项。
|
||||
在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
|
||||
在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
|
||||
在 System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
在 CentralControl.DBDAO.DBService.GetPlcSettingList(String where) 位置 D:\项目\特冰\特冰2\XGL.Data\DBService\DBService.cs:行号 2293
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 56
|
||||
2019-04-28 09:44:41.2546|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 09:44:41.2726|ERROR|loggerFile|初始化控制台系统异常:未将对象引用设置到对象的实例。 在 CentralControl.App_Code.Logic1001_1003UpLine..ctor(PlcHelper plc, String nodeno) 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\Logic1001_1003UpLine.cs:行号 52
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 120System.NullReferenceException: 未将对象引用设置到对象的实例。
|
||||
在 CentralControl.App_Code.Logic1001_1003UpLine..ctor(PlcHelper plc, String nodeno) 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\Logic1001_1003UpLine.cs:行号 52
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\MainCentralControl.cs:行号 120
|
||||
2019-04-28 09:45:07.2443|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:04:34.8963|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:04:34.9063|ERROR|loggerFile|站点1001 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:04:34.9512|ERROR|loggerFile|站点2006 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:04:34.9732|ERROR|loggerFile|站点2004 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:04:35.0042|ERROR|loggerFile|Logic1002UpLocator异常: 2006 :未将对象引用设置到对象的实例。 在 CentralControl.App_Code.Logic2006_2005UpLocator.MonitorInLocatorPoint() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\Logic2006_2005UpLocator.cs:行号 107
|
||||
2019-04-28 12:04:35.0712|ERROR|loggerFile|站点2009 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:04:35.0712|ERROR|loggerFile|Logic1002UpLocator异常: 2004 :未将对象引用设置到对象的实例。 在 CentralControl.App_Code.Logic2004_2009_2010_2011UpLocator.MonitorInLocatorPoint() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\Logic2004_2009_2010_2011UpLocator.cs:行号 107
|
||||
2019-04-28 12:04:35.1071|ERROR|loggerFile|Logic1002UpLocator异常: 2009 :未将对象引用设置到对象的实例。 在 CentralControl.App_Code.Logic2004_2009_2010_2011UpLocator.MonitorInLocatorPoint() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\Logic2004_2009_2010_2011UpLocator.cs:行号 107
|
||||
2019-04-28 12:04:42.8176|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:17.4224|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:17.4374|ERROR|loggerFile|站点1001 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:05:17.4874|ERROR|loggerFile|站点2006 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:05:17.5164|ERROR|loggerFile|站点2004 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:05:17.5524|ERROR|loggerFile|Logic1002UpLocator异常: 2006 :未将对象引用设置到对象的实例。 在 CentralControl.App_Code.Logic2006_2005UpLocator.MonitorInLocatorPoint() 位置 D:\项目\特冰\特冰2\CentralControl\App_Code\Logic2006_2005UpLocator.cs:行号 107
|
||||
2019-04-28 12:05:17.5664|ERROR|loggerFile|站点2009 初始化数据异常未将对象引用设置到对象的实例。
|
||||
2019-04-28 12:05:45.6201|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:47.6588|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:49.6850|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:51.7008|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:53.7207|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:55.7330|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:57.7529|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:05:59.7705|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:01.7854|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:03.8149|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:05.8410|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:07.8580|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:09.8736|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:11.9049|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:13.9281|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:15.9448|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:17.9702|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:19.9820|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:22.0146|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:24.0289|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:26.0435|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:28.0573|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:30.0748|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:32.0947|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:34.1073|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:36.1234|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:38.1539|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:40.1792|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:42.2056|INFO|loggerFile|获取mes扫描信息
|
||||
2019-04-28 12:06:44.2330|INFO|loggerFile|获取mes扫描信息
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,81 +0,0 @@
|
||||
2019-05-11 16:19:20.0613|INFO|loggerFile|select id, carNo, materialNo, materialNm, materialBarno, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from data_carmaterial
|
||||
2019-05-11 16:19:20.1127|ERROR|loggerFile|Table 'zyxgl.data_carmaterial' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-11 16:19:20.1451|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetCarMaterialList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 197
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 44System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetCarMaterialList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 197
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 44
|
||||
2019-05-11 16:23:36.7621|INFO|loggerFile|select * FROM base_orderinfo where isdeleted=0
|
||||
2019-05-11 16:23:36.8031|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-05-11 16:25:29.4576|INFO|loggerFile|select * FROM base_orderinfo where isdeleted=0
|
||||
2019-05-11 16:25:29.4766|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-05-11 16:25:38.6456|INFO|loggerFile|select * from basedata_linecatcharea where isdeleted=0
|
||||
2019-05-11 16:25:38.6536|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-05-11 16:25:39.3918|INFO|loggerFile|select * from BaseData_PlcSetting where isdeleted=0
|
||||
2019-05-11 16:25:39.3918|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-05-11 16:25:44.0189|INFO|loggerFile|select Id, MaterialNo, MaterialNm, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from basedata_materialinfo
|
||||
2019-05-11 16:25:44.0259|ERROR|loggerFile|Unable to connect to any of the specified MySQL hosts.
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-05-11 16:25:57.8987|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2541
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 42System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2541
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 42
|
||||
@ -1,206 +0,0 @@
|
||||
2019-05-12 09:17:35.5198|INFO|loggerFile|select * FROM base_orderinfo where is_delete=0
|
||||
2019-05-12 09:17:35.5637|ERROR|loggerFile|无法识别的 GUID 格式。
|
||||
在 System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result)
|
||||
在 System.Guid..ctor(String g)
|
||||
在 MySql.Data.Types.MySqlGuid.MySql.Data.Types.IMySqlValue.ReadValue(MySqlPacket packet, Int64 length, Boolean nullVal)
|
||||
在 MySql.Data.MySqlClient.NativeDriver.ReadColumnValue(Int32 index, MySqlField field, IMySqlValue valObject)
|
||||
在 MySql.Data.MySqlClient.ResultSet.get_Item(Int32 index)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetFieldValue(Int32 index, Boolean checkNull)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValue(Int32 i)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.DataReaderContainer.CommonLanguageSubsetDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.SchemaMapping.LoadDataRow()
|
||||
在 System.Data.Common.DataAdapter.FillLoadDataRow(SchemaMapping mapping)
|
||||
在 System.Data.Common.DataAdapter.FillFromReader(DataSet dataset, DataTable datatable, String srcTable, DataReaderContainer dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue)
|
||||
在 System.Data.Common.DataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:27:10.7848|INFO|loggerFile|select * FROM base_orderinfo where is_delete=0
|
||||
2019-05-12 09:27:10.8147|ERROR|loggerFile|无法识别的 GUID 格式。
|
||||
在 System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result)
|
||||
在 System.Guid..ctor(String g)
|
||||
在 MySql.Data.Types.MySqlGuid.MySql.Data.Types.IMySqlValue.ReadValue(MySqlPacket packet, Int64 length, Boolean nullVal)
|
||||
在 MySql.Data.MySqlClient.NativeDriver.ReadColumnValue(Int32 index, MySqlField field, IMySqlValue valObject)
|
||||
在 MySql.Data.MySqlClient.ResultSet.get_Item(Int32 index)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetFieldValue(Int32 index, Boolean checkNull)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValue(Int32 i)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.DataReaderContainer.CommonLanguageSubsetDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.SchemaMapping.LoadDataRow()
|
||||
在 System.Data.Common.DataAdapter.FillLoadDataRow(SchemaMapping mapping)
|
||||
在 System.Data.Common.DataAdapter.FillFromReader(DataSet dataset, DataTable datatable, String srcTable, DataReaderContainer dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue)
|
||||
在 System.Data.Common.DataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:27:10.8457|INFO|loggerFile|select * from basedata_linecatcharea where isdeleted=0
|
||||
2019-05-12 09:27:10.8457|ERROR|loggerFile|Table 'rms_wcs.basedata_linecatcharea' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:27:10.8757|INFO|loggerFile|select * from BaseData_PlcSetting where isdeleted=0
|
||||
2019-05-12 09:27:10.8757|ERROR|loggerFile|Table 'rms_wcs.basedata_plcsetting' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:27:10.9088|INFO|loggerFile|select Id, MaterialNo, MaterialNm, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from basedata_materialinfo
|
||||
2019-05-12 09:27:10.9168|ERROR|loggerFile|Table 'rms_wcs.basedata_materialinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:27:10.9416|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2541
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 42System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2541
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 42
|
||||
2019-05-12 09:30:40.0960|INFO|loggerFile|select * FROM base_orderinfo where is_delete=0
|
||||
2019-05-12 09:30:40.1360|ERROR|loggerFile|无法识别的 GUID 格式。
|
||||
在 System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result)
|
||||
在 System.Guid..ctor(String g)
|
||||
在 MySql.Data.Types.MySqlGuid.MySql.Data.Types.IMySqlValue.ReadValue(MySqlPacket packet, Int64 length, Boolean nullVal)
|
||||
在 MySql.Data.MySqlClient.NativeDriver.ReadColumnValue(Int32 index, MySqlField field, IMySqlValue valObject)
|
||||
在 MySql.Data.MySqlClient.ResultSet.get_Item(Int32 index)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetFieldValue(Int32 index, Boolean checkNull)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValue(Int32 i)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.DataReaderContainer.CommonLanguageSubsetDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.SchemaMapping.LoadDataRow()
|
||||
在 System.Data.Common.DataAdapter.FillLoadDataRow(SchemaMapping mapping)
|
||||
在 System.Data.Common.DataAdapter.FillFromReader(DataSet dataset, DataTable datatable, String srcTable, DataReaderContainer dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue)
|
||||
在 System.Data.Common.DataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:30:40.1709|INFO|loggerFile|select * from basedata_linecatcharea where isdeleted=0
|
||||
2019-05-12 09:30:40.1709|ERROR|loggerFile|Table 'rms_wcs.basedata_linecatcharea' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:30:40.2119|INFO|loggerFile|select * from BaseData_PlcSetting where isdeleted=0
|
||||
2019-05-12 09:30:40.2199|ERROR|loggerFile|Table 'rms_wcs.basedata_plcsetting' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:30:40.2539|INFO|loggerFile|select Id, MaterialNo, MaterialNm, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from basedata_materialinfo
|
||||
2019-05-12 09:30:40.2669|ERROR|loggerFile|Table 'rms_wcs.basedata_materialinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 09:30:40.2879|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2541
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 42System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2541
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 42
|
||||
2019-05-12 09:34:32.5292|INFO|loggerFile|select * FROM base_orderinfo where is_delete=0
|
||||
2019-05-12 09:34:32.5721|ERROR|loggerFile|无法识别的 GUID 格式。
|
||||
在 System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result)
|
||||
在 System.Guid..ctor(String g)
|
||||
在 MySql.Data.Types.MySqlGuid.MySql.Data.Types.IMySqlValue.ReadValue(MySqlPacket packet, Int64 length, Boolean nullVal)
|
||||
在 MySql.Data.MySqlClient.NativeDriver.ReadColumnValue(Int32 index, MySqlField field, IMySqlValue valObject)
|
||||
在 MySql.Data.MySqlClient.ResultSet.get_Item(Int32 index)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetFieldValue(Int32 index, Boolean checkNull)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValue(Int32 i)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.DataReaderContainer.CommonLanguageSubsetDataReader.GetValues(Object[] values)
|
||||
在 System.Data.ProviderBase.SchemaMapping.LoadDataRow()
|
||||
在 System.Data.Common.DataAdapter.FillLoadDataRow(SchemaMapping mapping)
|
||||
在 System.Data.Common.DataAdapter.FillFromReader(DataSet dataset, DataTable datatable, String srcTable, DataReaderContainer dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue)
|
||||
在 System.Data.Common.DataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 13:04:06.0255|INFO|loggerFile|select Id, ProductNo, GateMaterialNo, BoxMaterialNo, Version, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from basedata_materialbom where IsDeleted=0
|
||||
2019-05-12 13:04:06.0625|ERROR|loggerFile|Table 'rms_wcs.basedata_materialbom' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-12 13:04:06.0885|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialBomList(String strWhere, List`1 mlist) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 342
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 41System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialBomList(String strWhere, List`1 mlist) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 342
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 41
|
||||
2019-05-12 13:04:30.0093|INFO|loggerFile|select Id, ProductNo, GateMaterialNo, BoxMaterialNo, Version, IsDeleted, DATE_FORMAT(CreateTime,'%Y-%m-%d %H:%i:%s') CreateTime, CreateId, CreateBy, DATE_FORMAT(ModifyTime,'%Y-%m-%d %H:%i:%s') ModifyTime, ModifyId, ModifyBy from basedata_materialbom where IsDeleted=0
|
||||
2019-05-12 13:04:30.0383|ERROR|loggerFile|Table 'rms_wcs.basedata_materialbom' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
@ -1,246 +0,0 @@
|
||||
2019-05-13 09:02:21.6865|INFO|loggerFile|select a.*,b.material_name FROM base_orderinfo a left join base_materialinfo b on a.material_no = b.material_no where a.is_delete = 0 and b.is_delete = 0
|
||||
2019-05-13 09:02:21.7364|ERROR|loggerFile|Table 'rms_wcs.base_orderinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:02:22.0812|INFO|loggerFile|select Id, material_no, material_name, is_delete, DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%s') create_time, create_id, create_by, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') modify_time, modify_id, modify_by from base_materialinfo
|
||||
2019-05-13 09:02:22.0932|ERROR|loggerFile|Table 'rms_wcs.base_materialinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:02:22.1592|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2533
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 40System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2533
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 40
|
||||
2019-05-13 09:02:42.6304|INFO|loggerFile|select a.*,b.material_name FROM base_orderinfo a left join base_materialinfo b on a.material_no = b.material_no where a.is_delete = 0 and b.is_delete = 0
|
||||
2019-05-13 09:02:42.6664|ERROR|loggerFile|Table 'rms_wcs.base_orderinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:02:43.6227|INFO|loggerFile|select Id, material_no, material_name, is_delete, DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%s') create_time, create_id, create_by, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') modify_time, modify_id, modify_by from base_materialinfo
|
||||
2019-05-13 09:02:43.6227|ERROR|loggerFile|Table 'rms_wcs.base_materialinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:02:43.6977|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2533
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 40System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialInfoList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 2533
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 40
|
||||
2019-05-13 09:02:57.7744|INFO|loggerFile|select a.*,b.material_name FROM base_orderinfo a left join base_materialinfo b on a.material_no = b.material_no where a.is_delete = 0 and b.is_delete = 0
|
||||
2019-05-13 09:02:57.8014|ERROR|loggerFile|Table 'rms_wcs.base_orderinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:03:02.4959|INFO|loggerFile|select Id, material_no, material_name, is_delete, DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%s') create_time, create_id, create_by, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') modify_time, modify_id, modify_by from base_materialinfo
|
||||
2019-05-13 09:03:02.5099|ERROR|loggerFile|Table 'rms_wcs.base_materialinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:03:22.1024|INFO|loggerFile|select a.*,b.material_name FROM base_orderinfo a left join base_materialinfo b on a.material_no = b.material_no where a.is_delete = 0 and b.is_delete = 0
|
||||
2019-05-13 09:03:22.1544|ERROR|loggerFile|Table 'rms_wcs.base_orderinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 09:03:27.9653|INFO|loggerFile|select Id, material_no, material_name, is_delete, DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%s') create_time, create_id, create_by, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') modify_time, modify_id, modify_by from base_materialinfo
|
||||
2019-05-13 09:03:27.9793|ERROR|loggerFile|Table 'rms_wcs.base_materialinfo' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 10:47:07.0633|INFO|loggerFile|select a.*,b.material_name FROM base_orderinfo a left join base_materialinfo b on a.material_no = b.material_no where a.is_delete = 0 and b.is_delete = 0
|
||||
2019-05-13 10:47:07.1462|ERROR|loggerFile|Authentication method 'caching_sha2_password' not supported by any of the available plugins.
|
||||
在 MySql.Data.MySqlClient.Authentication.AuthenticationPluginManager.GetPlugin(String method)
|
||||
在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.GetPlugin(String method, NativeDriver driver, Byte[] authData)
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Authenticate(String authMethod, Boolean reset)
|
||||
在 MySql.Data.MySqlClient.NativeDriver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Open()
|
||||
在 MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
|
||||
在 MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
|
||||
在 MySql.Data.MySqlClient.MySqlPool.GetConnection()
|
||||
在 MySql.Data.MySqlClient.MySqlConnection.Open()
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 390
|
||||
2019-05-13 11:04:48.3429|ERROR|loggerFile|初始化控制台系统异常:列“plan_state”不属于表 ds。 在 System.Data.DataRow.GetDataColumn(String columnName)
|
||||
在 System.Data.DataRow.get_Item(String columnName)
|
||||
在 CentralControl.DBDAO.DBService.getOrderPlanList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 1826
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 39System.ArgumentException: 列“plan_state”不属于表 ds。
|
||||
在 System.Data.DataRow.GetDataColumn(String columnName)
|
||||
在 System.Data.DataRow.get_Item(String columnName)
|
||||
在 CentralControl.DBDAO.DBService.getOrderPlanList(String strWhere) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 1826
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 39
|
||||
2019-05-13 13:59:44.5328|INFO|loggerFile|select Id, materiel_finish_no, materiel_box_no, Version, is_delete, DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%s') CreateTime, create_id CreateId, create_by CreateBy, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') ModifyTime, modify_id ModifyId, modify_by ModifyBy from base_materialinfobom where IsDeleted=0
|
||||
2019-05-13 13:59:44.5728|ERROR|loggerFile|Unknown column 'IsDeleted' in 'where clause'
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 13:59:44.5953|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialBomList(String strWhere, List`1 mlist) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 343
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 41System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialBomList(String strWhere, List`1 mlist) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 343
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 41
|
||||
2019-05-13 14:00:01.1954|INFO|loggerFile|select Id, materiel_finish_no, materiel_box_no, Version, is_delete, DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%s') CreateTime, create_id CreateId, create_by CreateBy, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') ModifyTime, modify_id ModifyId, modify_by ModifyBy from base_materialinfobom where IsDeleted=0
|
||||
2019-05-13 14:00:01.2164|ERROR|loggerFile|Unknown column 'IsDeleted' in 'where clause'
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 14:00:01.2334|ERROR|loggerFile|初始化控制台系统异常:无法找到表 0。 在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialBomList(String strWhere, List`1 mlist) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 343
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 41System.IndexOutOfRangeException: 无法找到表 0。
|
||||
在 System.Data.DataTableCollection.get_Item(Int32 index)
|
||||
在 CentralControl.DBDAO.DBService.GetMaterialBomList(String strWhere, List`1 mlist) 位置 D:\项目\天津波轮\波轮\XGL.Data\DBService\DBService.cs:行号 343
|
||||
在 CentralControl.App_Code.MainCentralControl.SystemInit() 位置 D:\项目\天津波轮\波轮\CentralControl\App_Code\MainCentralControl.cs:行号 41
|
||||
2019-05-13 14:00:36.3472|INFO|loggerFile|select Id, materiel_finish_no, materiel_box_no, Version, is_delete, DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%s') CreateTime, create_id CreateId, create_by CreateBy, DATE_FORMAT(modify_time, '%Y-%m-%d %H:%i:%s') ModifyTime, modify_id ModifyId, modify_by ModifyBy from base_materialinfobom where IsDeleted=0
|
||||
2019-05-13 14:00:36.3732|ERROR|loggerFile|Unknown column 'IsDeleted' in 'where clause'
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 16:01:32.6001|INFO|loggerFile|select * from basedata_nodesetting a
|
||||
left join basedata_plcsetting b on a.PlcId=b.Id
|
||||
left join basedata_linecatcharea g on g.Id=a.LineAreaId
|
||||
left join basedata_plcsetting c on a.PlcId2=c.Id
|
||||
left join basedata_plcsetting d on a.PlcId3=d.Id
|
||||
left join basedata_plcsetting e on a.PlcId4=e.Id
|
||||
left join basedata_plcsetting f on a.PlcId5=f.Id
|
||||
where a.isdeleted=0;
|
||||
|
||||
|
||||
2019-05-13 16:01:32.6391|ERROR|loggerFile|Table 'rms_wcs.basedata_nodesetting' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
2019-05-13 16:03:09.4377|INFO|loggerFile|select * from basedata_nodesetting a
|
||||
left join basedata_plcsetting b on a.PlcId=b.Id
|
||||
left join basedata_linecatcharea g on g.Id=a.LineAreaId
|
||||
left join basedata_plcsetting c on a.PlcId2=c.Id
|
||||
left join basedata_plcsetting d on a.PlcId3=d.Id
|
||||
left join basedata_plcsetting e on a.PlcId4=e.Id
|
||||
left join basedata_plcsetting f on a.PlcId5=f.Id
|
||||
where a.isdeleted=0;
|
||||
|
||||
|
||||
2019-05-13 16:03:09.4907|ERROR|loggerFile|Table 'rms_wcs.basedata_nodesetting' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\项目\天津波轮\波轮\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
@ -1,23 +0,0 @@
|
||||
2021-11-23 09:07:17.0651|INFO|loggerFile|select * from basedata_nodesetting a
|
||||
left join basedata_plcsetting b on a.PlcId=b.Id
|
||||
left join basedata_linecatcharea g on g.Id=a.LineAreaId
|
||||
left join basedata_plcsetting c on a.PlcId2=c.Id
|
||||
left join basedata_plcsetting d on a.PlcId3=d.Id
|
||||
left join basedata_plcsetting e on a.PlcId4=e.Id
|
||||
left join basedata_plcsetting f on a.PlcId5=f.Id
|
||||
where a.isdeleted=0;
|
||||
|
||||
|
||||
2021-11-23 09:07:17.0851|ERROR|loggerFile|Table 'rms_wcs.basedata_nodesetting' doesn't exist
|
||||
在 MySql.Data.MySqlClient.MySqlStream.ReadPacket()
|
||||
在 MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
|
||||
在 MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
|
||||
在 MySql.Data.MySqlClient.MySqlDataReader.NextResult()
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 MySql.Data.MySqlClient.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
在 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
|
||||
在 CommonFunc.DbHelperMySQL.Query(String SQLString) 位置 D:\project\tianjinXGL\xgl\neitong\shangjian\CommonFunc\DbHelperMySQL.cs:行号 392
|
||||
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
|
||||
Binary file not shown.
@ -1 +0,0 @@
|
||||
3a8b54561118364882d34afa00a4d4a6d0f2189460f273b8a358f50296b9afd5
|
||||
@ -1,155 +0,0 @@
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\snap7.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\config\ConnectionConfig.Config
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\NLog.config
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\CentralControl.exe.config
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\CentralControl.exe
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\CentralControl.pdb
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\CommonFunc.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\Google.Protobuf.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\MySql.Data.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\NLog.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\Thrift.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Data.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Models.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Thrift.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\NPOI.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\NPOI.OOXML.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\NPOI.OpenXmlFormats.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\NPOI.OpenXml4Net.dll
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\CommonFunc.pdb
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\CommonFunc.dll.config
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Data.pdb
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Data.dll.config
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Models.pdb
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Models.dll.config
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\XGL.Thrift.pdb
|
||||
F:\KHD\230620\shangjian\CentralControl\bin\Debug\Google.Protobuf.xml
|
||||
F:\KHD\230620\shangjian\CentralControl\obj\Debug\CentralControl.csproj.AssemblyReference.cache
|
||||
F:\KHD\230620\shangjian\CentralControl\obj\Debug\CentralControl.csproj.SuggestedBindingRedirects.cache
|
||||
F:\KHD\230620\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CoreCompileInputs.cache
|
||||
F:\KHD\230620\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CopyComplete
|
||||
F:\KHD\230620\shangjian\CentralControl\obj\Debug\CentralControl.exe
|
||||
F:\KHD\230620\shangjian\CentralControl\obj\Debug\CentralControl.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\snap7.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\config\ConnectionConfig.Config
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\NLog.config
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\CentralControl.exe.config
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\CentralControl.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\CentralControl.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\CommonFunc.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\Google.Protobuf.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\MySql.Data.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\NLog.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\Thrift.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Data.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Models.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Thrift.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.OOXML.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.OpenXmlFormats.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.OpenXml4Net.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\CommonFunc.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\CommonFunc.dll.config
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Data.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Data.dll.config
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Models.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Models.dll.config
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Thrift.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\bin\Debug\Google.Protobuf.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.AssemblyReference.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.SuggestedBindingRedirects.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CoreCompileInputs.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CopyComplete
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\Config\log4net.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\snap7.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\config\ConnectionConfig.Config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\NLog.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\CentralControl.exe.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\CentralControl.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\CentralControl.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\CommonFunc.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\Google.Protobuf.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\MySql.Data.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\NLog.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\Thrift.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Data.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Models.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Thrift.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\log4net.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\QRCoder.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.OOXML.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\BCrypt.Net-Next.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.OpenXmlFormats.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\NPOI.OpenXml4Net.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Memory.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Numerics.Vectors.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Buffers.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\CommonFunc.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\CommonFunc.dll.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Data.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Data.dll.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Models.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Models.dll.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\XGL.Thrift.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\Google.Protobuf.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\BCrypt.Net-Next.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Memory.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Numerics.Vectors.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\bin\Debug\System.Buffers.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.AssemblyReference.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CoreCompileInputs.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CopyComplete
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\CentralControl\obj\Debug\CentralControl.pdb
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\Config\log4net.config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\snap7.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\config\ConnectionConfig.Config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\NLog.config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\CentralControl.exe.config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\CentralControl.exe
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\CentralControl.pdb
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\CommonFunc.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\Google.Protobuf.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\MySql.Data.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\NLog.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\Thrift.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Data.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Models.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Thrift.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\NPOI.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\log4net.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\QRCoder.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\NPOI.OOXML.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\Newtonsoft.Json.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\BCrypt.Net-Next.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\NPOI.OpenXmlFormats.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\NPOI.OpenXml4Net.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Memory.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Numerics.Vectors.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Buffers.dll
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\CommonFunc.pdb
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\CommonFunc.dll.config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Data.pdb
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Data.dll.config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Models.pdb
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Models.dll.config
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\XGL.Thrift.pdb
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\Google.Protobuf.xml
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\BCrypt.Net-Next.xml
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Memory.xml
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Numerics.Vectors.xml
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\bin\Debug\System.Buffers.xml
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.AssemblyReference.cache
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.SuggestedBindingRedirects.cache
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CoreCompileInputs.cache
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\obj\Debug\CentralControl.csproj.CopyComplete
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\obj\Debug\CentralControl.exe
|
||||
E:\workspace\LanJu\client\shangjian\CentralControl\obj\Debug\CentralControl.pdb
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]
|
||||
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
CommonFunc
|
||||
|
||||
|
||||
library
|
||||
C#
|
||||
.cs
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\CommonFunc\obj\x86\Debug\
|
||||
CommonFunc
|
||||
none
|
||||
false
|
||||
DEBUG;TRACE
|
||||
|
||||
489050341
|
||||
2-1355062061
|
||||
28-621354674
|
||||
44-1016000948
|
||||
HMessageBox.xaml;Tools\MachineRepairWin.xaml;Tools\PauseOrderWin.xaml;Tools\PauseRecoverWin.xaml;
|
||||
|
||||
False
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
LanJu
|
||||
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
F:\KHD\230620\shangjian\LanJu\obj\Debug\
|
||||
LanJu
|
||||
none
|
||||
false
|
||||
DEBUG;TRACE
|
||||
F:\KHD\230620\shangjian\LanJu\App.xaml
|
||||
9-1725419280
|
||||
|
||||
14-652345037
|
||||
13-38814620
|
||||
MainWindow.xaml;Views\LanJu_Complete.xaml;Views\LanJu_DeviceItems.xaml;Views\LanJu_Flow.xaml;Views\LanJu_Index.xaml;Views\LanJu_Material.xaml;Views\LanJu_Operator.xaml;Views\LanJu_Paused.xaml;Views\LanJu_Prepare.xaml;
|
||||
|
||||
False
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
|
||||
</startup>
|
||||
</configuration>
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
87734e5521f63693b47ee067c370e002346211d3
|
||||
0f83b8d4b5eccd2a91f969c70fa1ff3e934fb37d2edb72b84bfa358900d806b4
|
||||
|
||||
@ -1,23 +1,11 @@
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\bin\Debug\RestartApp.exe.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\bin\Debug\RestartApp.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\bin\Debug\RestartApp.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.csproj.AssemblyReference.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.csproj.CoreCompileInputs.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.csproj.CopyComplete
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.pdb
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\bin\Debug\RestartApp.exe.config
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\bin\Debug\RestartApp.exe
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\bin\Debug\RestartApp.pdb
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.dll
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.pdb
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.xml
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\obj\Debug\RestartApp.csproj.AssemblyReference.cache
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\obj\Debug\RestartApp.csproj.SuggestedBindingRedirects.cache
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\obj\Debug\RestartApp.csproj.CoreCompileInputs.cache
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\obj\Debug\RestartApp.csproj.CopyComplete
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\obj\Debug\RestartApp.exe
|
||||
E:\workspace\LanJu\榄菊上位机\shangjian\RestartApp\obj\Debug\RestartApp.pdb
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\bin\Debug\RestartApp.exe.config
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\bin\Debug\RestartApp.exe
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\bin\Debug\RestartApp.pdb
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.dll
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.pdb
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\bin\Debug\HtmlAgilityPack.xml
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.csproj.AssemblyReference.cache
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.csproj.CoreCompileInputs.cache
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.csproj.CopyComplete
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.exe
|
||||
D:\Repos\WorkSpace\lanju-client\shangjian\RestartApp\obj\Debug\RestartApp.pdb
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
57f46a9d84fe0cf9b52d094f86f1528843920246
|
||||
@ -1,24 +0,0 @@
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\bin\Debug\WPFupdate.exe.config
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\bin\Debug\WPFupdate.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\bin\Debug\WPFupdate.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\bin\Debug\HtmlAgilityPack.dll
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\bin\Debug\HtmlAgilityPack.pdb
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\bin\Debug\HtmlAgilityPack.xml
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.AssemblyReference.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.SuggestedBindingRedirects.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.CoreCompileInputs.cache
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.CopyComplete
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\obj\Debug\WPFupdate.exe
|
||||
D:\WorkSpace\KHD\Project\Lanju\Lanju-client\shangjian\WPFupdate\obj\Debug\WPFupdate.pdb
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\bin\Debug\WPFupdate.exe.config
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\bin\Debug\WPFupdate.exe
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\bin\Debug\WPFupdate.pdb
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\bin\Debug\HtmlAgilityPack.dll
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\bin\Debug\HtmlAgilityPack.pdb
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\bin\Debug\HtmlAgilityPack.xml
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.AssemblyReference.cache
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.SuggestedBindingRedirects.cache
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.CoreCompileInputs.cache
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\obj\Debug\WPFupdate.csproj.CopyComplete
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\obj\Debug\WPFupdate.exe
|
||||
E:\workspace\LanJu\client\shangjian\WPFupdate\obj\Debug\WPFupdate.pdb
|
||||
Binary file not shown.
Binary file not shown.
@ -1,23 +0,0 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"RestartApp1/1.0.0": {
|
||||
"runtime": {
|
||||
"RestartApp1.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"RestartApp1/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,10 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\18366\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\18366\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
]
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue