问题列表 - 第24917页

这种方法是从C#获取SQL值的好方法吗?

我有这个小方法,我用来从SQL中获取东西.我要么用varSearch = ""或称它varSearch = "something".我想知道如果以这种方式编写的方法是最好的还是将它分成两个方法(通过重载)会更好,或者我可能以某种方式参数化整个WHEREclausule?

private void sqlPobierzKontrahentDaneKlienta(ListView varListView, string varSearch) {
        varListView.BeginUpdate();
        varListView.Items.Clear();
        string preparedCommand;
        if (varSearch == "") {
            preparedCommand = @"
                SELECT t1.[KlienciID],
                CASE WHEN t2.[PodmiotRodzaj] = 'Firma' THEN
                          t2.[PodmiotFirmaNazwa] ELSE 
                          t2.[PodmiotOsobaNazwisko] + ' ' + t2.[PodmiotOsobaImie] END AS 'Nazwa'
                FROM [BazaZarzadzanie].[dbo].[Klienci] t1
                INNER JOIN [BazaZarzadzanie].[dbo].[Podmioty] t2
                ON t1.[PodmiotID] = t2.[PodmiotID]
                ORDER BY t1.[KlienciID]";
        } else {
            preparedCommand = @"
                SELECT t1.[KlienciID],
                CASE WHEN t2.[PodmiotRodzaj] = 'Firma' THEN
                          t2.[PodmiotFirmaNazwa] ELSE 
                          t2.[PodmiotOsobaNazwisko] …
Run Code Online (Sandbox Code Playgroud)

c# sql-server .net-3.5

4
推荐指数
1
解决办法
671
查看次数

如何在核心数据实体中手动添加数据

我是Core Data第一次工作.我刚刚创建了一个EntityAttributes该实体.我想添加一些行作为数据(你可以说我想在表中添加数据).

在我使用之前Sqlite,我会使用Terminal.但在这里,Core Data我无法找到手动添加数据的方法.我只是想添加数据Context并将其显示在一个UITableView.我已经完成了文档,Core Data但它没有解释如何手动添加数据,虽然它解释了我如何以编程方式添加它.但我不需要以编程方式执行此操作.我想手动完成.

iphone core-data

7
推荐指数
1
解决办法
1万
查看次数

Xcode不会放弃资源文件

我今天的问题是Xcode如何处理它创建的应用程序包中的资源文件.我知道这可能是微不足道的,但我找不到一个简单的出路.基本上我的问题是Xcode似乎继续在应用程序包中包含资源文件(例如文本文件),即使该文件已从项目中删除.这里详细介绍了这里发生的事情.

?   Added a file to the project (both by choosing file - new file or dragging a file to the Xcode groups and files left column checking add to project folder if needed checkbox)
?   Compiled and launched the project in simulator
?   Verified that the file is present in myApp.app bundle, located in User/Library/Application/Support/iPhone Simulator/3.2/Applications/<application system number>/myApp.app and even in <my Xcode projects folder>/myApp/build/debugiPhonesimulator/myApp.app
?   Deleted the file from groups and files column in Xcode
?   Deleted the …
Run Code Online (Sandbox Code Playgroud)

iphone resources xcode file

4
推荐指数
1
解决办法
7226
查看次数

在UITableView中滚动后混合的项目

当我滚动我的UITableView时,细胞变得混乱.我究竟做错了什么?

这是我的方法:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }
    [cell insertSubview:[itemArray objectAtIndex:indexPath.row] atIndex:indexPath.row]; 
    return cell;
}
Run Code Online (Sandbox Code Playgroud)

更新

它现在通过使用cell.contentView工作,但现在当我选择一个项目时,所选项目将覆盖不同单元格的内容...

iphone cocoa-touch

0
推荐指数
1
解决办法
2537
查看次数

CSS定位的负边距

是否可以使用负边距进行定位?我在我现在的网站上有很多东西,觉得这不是一个稳定的定位方式.我通常建议也使用它们.

例如,我有一个结帐页面,其中三个div相互叠加

<div class="A">
   header
</div>
<div class="B">
   content
</div>
<div class="C">
   footer
</div>
Run Code Online (Sandbox Code Playgroud)

(A,B和C),意思是彼此叠加,看起来是附着的.我这样做使用:

.B
{
    margin-top: -20px;
}
Run Code Online (Sandbox Code Playgroud)

在div B上,满足div的底部.

这是一个好的做法还是我应该使用top和重新编码left

css positioning margin

4
推荐指数
1
解决办法
1274
查看次数

如何在VB中调用函数名称引用字符串值的函数

我有这个算法,我想在VB6上实现.

Sub Main()
dim stringVal1 as string, stringVal2 as string
dim getOne as boolean

stringVal1 = "FunctOne"
stringVal2 = "FunctTwo"

if getOne then
    'Call Function with function name assigned to stringVal1 ... how to call the function here?**
else
    'Call Function with function name assigned to stringVal1 ... how to call the function here?**
end if

End Sub


Function FunctOne()
   Msgbox "I'm function one"
End Function

Function FunctTwo()
   Msgbox "I'm function two"
End Function
Run Code Online (Sandbox Code Playgroud)

这可以在VB6中完成吗?

vb6

2
推荐指数
1
解决办法
2万
查看次数

Visual Studio 2010 RC和RTM之间的差异

我一直在使用RC版VS2010.我想知道是否有人总结了RC版本和RTM之间的变化?

我刚刚加载了RTM并发现了一些不同的小东西.我四处搜索但却找不到任何关于它的信息.

如果没有任何内容列出这些差异,我们可以在找到它们时在这里开始列出它们吗?

ide visual-studio-2010 visual-studio

7
推荐指数
1
解决办法
1801
查看次数

创建新的sqlite Db

我正在使用Mac OS X,我想创建一个新的SQLite数据库,我使用http://www.sqlite.org/quickstart.html作为参考.

我正在进入:sqlite3 test.db 并得到答复:

SQLite version 3.6.12
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
Run Code Online (Sandbox Code Playgroud)

为什么会这样?

sqlite

13
推荐指数
2
解决办法
6万
查看次数

dojo连接mouseover和mouseout

当设置onmouseoveronmouseout鼠标悬停的dojo连接,然后在鼠标悬停时添加内容时,dojo会onmouseout立即触发事件,因为有新内容.例:

dojo.query(".star").parent().connect("onmouseover", function() {
    dojo.query("span", this).addContent("<img src='star-hover.jpg'>");
}).connect("onmouseout", function() {
    dojo.destroy(dojo.query("img", this)[0]);
});
Run Code Online (Sandbox Code Playgroud)

parent()<td>,和.star是一个跨度.我想在用户悬停表格单元格时添加悬停图像.只要光标没有悬停在图像上,它就会起作用,因为这会导致一些严重的闪烁.这是故意的吗?它有办法吗?

编辑:刚尝试了与jQuery类似的东西,它按预期工作(至少我期望它工作.)

$(".star").parent().hover(function() {
    $("span", this).append("<img src='star-hover.jpg'>");
}, function() {
    $("img", this).remove();
});
Run Code Online (Sandbox Code Playgroud)

这将在悬停时显示图像,并仅在将光标移动到表格单元格外时删除.

dojo

2
推荐指数
1
解决办法
1万
查看次数

无法在Linux中将UTF8插入数据库MySQL

当创建表时,我已经设置了charset = utf8.

我创建了1个存储过程来将数据插入数据库.

  1. 将数据UTF8插入到窗口上的数据库时,它可以正常工作.(正确显示数据)
  2. 但它在Linux中不起作用.(显示数据不正确)

奇怪的是在窗口中插入UTF8 工作正常,但是当我在linux中部署MySQL时,在向数据库插入数据时它会插入错误的UTF8值.

感谢帮助

编辑:更新更多详细信息请关注@Col的评论.弹片

mysql linux utf-8

1
推荐指数
1
解决办法
7369
查看次数