- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里也有人问过同样的问题:Getting Exception 'Cannot convert '08/10/09' to a timestamp' while connecting to Sybase Database with .Net
由于我是新用户,因此没有提供任何答案,我无法对该主题发表评论,所以我想再次提问。
我正在尝试构建一个 .NET 应用程序来与 Sybase/ASE/SQL Anywhere 数据库对话,使用在 SAP 此处找到的信息:http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.sdk_12.5.1.adonet/html/adonet/Connecting_adodotnet_development.htm
综上所述,这是我使用的代码:
private void MainWindow_Load(object sender, EventArgs e) {
using (AseConnection con = new AseConnection("Provider=ASEOLEDB.1; Data Source=localhost; Port=2638; Database={correct db name}; Uid={correct username}; Pwd={correct password}; Charset=iso_1;")) {
con.Open();
}
}
我在 con.Open() 上抛出异常:
“SQL Anywhere 错误 -157:无法将‘08/10/09’转换为时间戳”
堆栈轨迹如下:
at Sybase.Data.AseClient1.AseConnection.Open()
at Sybase.Data.AseClient.AseConnection.Open()
at ReportGenerator.MainWindow.MainWindow_Load(Object sender, EventArgs e)
in C:\Projects\DiCello\ReportGenerator\ReportGenerator\MainWindow.cs:line 21
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
我看到了以下内容:https://archive.sap.com/discussions/thread/3646147 ,但是这不适用,因为我没有尝试运行查询,我还不能建立连接来运行建议的查询。日期 8/10/09 不是我在任何地方提交的日期。另请注意,此异常发生在 AseConnection.Open() 上,我没有提交格式错误的日期,数据库中也不存在格式错误的日期。
最佳答案
您似乎尝试将日期 (MMDDYYYY) 数据类型应用到 DateTime 或 Time 数据类型。这些本质上是不同的数据类型,包含不同的信息。
时间:
日期:
关于c# - SQL Anywhere 错误 -157 : Cannot convert '08/10/09' to a timestamp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44311789/
我是一名优秀的程序员,十分优秀!