小编Sat*_*hat的帖子

如何在Windows Phone 7中检查3G,wifi,EDGE,蜂窝网络?

如何使用C#检查Windows Phone 7中的3G,wifi,EDGE,蜂窝网络?

c# windows-phone-7

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

序列增加 50 而不是 1

我创建了一个 Oracle 序列:

创建序列 seq_acteurs 以 1 递增 1 开始;

通常序列必须递增 1,但插入Acteurstable 时,序列s递增 50!这似乎不合逻辑。为什么会这样?

任何帮助都会得到很大的帮助。

sequences oracle10g id-generation

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

如何将序列中的下一个值转换为变量?

所以我正在编写一个存储过程,并且无法将序列的下一个值转换为变量.

序列名称传递给函数并存储为varchar2变量.如何将该序列中的下一个值转换为局部变量.

oracle sequences sqlplus

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

SlidingDrawer不能有尺寸

嗨,我得到一个运行时异常:

SlidingDrawer cannot have UNSPECIFIED dimensions
Run Code Online (Sandbox Code Playgroud)

从下面的XML,可以有任何帮助.

 <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/scroll" android:layout_width="fill_parent" android:layout_height="fill_parent"  android:fillViewport="true">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent" 
                android:layout_height="fill_parent"
                android:padding="10px" android:background="@drawable/formbg">


 <LinearLayout android:id="@+id/linearLayout1" 
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:orientation="horizontal" android:layout_alignParentTop="true" 
        android:layout_alignParentLeft="true" android:layout_alignParentRight="true">

    <TextView android:id="@+id/label" 
              android:layout_width="120px" 
              android:layout_height="wrap_content" 
              android:text="Question Title" 
              android:textStyle="bold"
              android:textSize="12sp" 
              android:textColor="#000000" 
    android:paddingLeft="5px"
    android:paddingRight="5px"
    android:paddingTop="10px"
    android:paddingBottom="10px"
              />

    <EditText android:id="@+id/entry" 
              android:layout_width="match_parent" 
              android:layout_height="wrap_content" 
              android:textColor="#000000"   
    android:paddingLeft="10px"
    android:paddingRight="5px"
    android:paddingTop="10px"
    android:paddingBottom="10px"
              />

 </LinearLayout>


   <LinearLayout android:id="@+id/linearLayout2"
        android:layout_below="@id/linearLayout1" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:orientation="horizontal"
        android:layout_alignParentLeft="true" android:layout_alignParentRight="true"  android:paddingRight="0px" > 

   <TextView android:id="@+id/pass" 
              android:layout_width="120px" 
              android:layout_height="wrap_content" 
              android:text="Type Description" 
              android:textStyle="bold"
              android:textSize="12sp" 
              android:textColor="#000000" 
    android:paddingLeft="5px"
    android:paddingRight="5px"
    android:paddingTop="10px"
    android:paddingBottom="10px"
    />

    <EditText …
Run Code Online (Sandbox Code Playgroud)

android

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

初始化pl/sql记录类型

在PL/SQL中,a varray可以在创建时初始化为:

TYPE colour_tab IS VARRAY(3) OF VARCHAR2(20);
    french_colours colour_tab := colour_tab('RED','WHITE','BLUE');
Run Code Online (Sandbox Code Playgroud)

PL/SQL记录类型是否有等效的初始化方法?

type location_record_type is record (
      street_address       varchar2(40),
     postal_code          varchar2(12),
      city                 varchar2(30),
     state_province       varchar2(25),
     country_id           char(2) not null := 'US'
    );
Run Code Online (Sandbox Code Playgroud)

sql oracle plsql oracle10g

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

如何在Oracle 11g中激活hr模式

我正在学习PL/SQL并且正在使用SQL Developer因为我使用hr模式创建了许多用户.但是当用户登录到SQL Developer时会出现类似用户无效的错误.但是当我使用系统用户时,它可以完美地工作但没有hr模式.

所以:

  • 如何在系统用户或中激活hr模式
  • 如何让用户在SQL开发人员中使用.

我正在使用Oracle 11g express

sql oracle oracle11g oracle-sqldeveloper

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

PL/SQL Developer的可折叠区域

是否有一些标记或命令会在plsqldeveloper中折叠我的代码区域; 在netBeans for java中,我使用:

<editor-fold desc="description" default-state="collapsed">
Run Code Online (Sandbox Code Playgroud)

如果我的记忆在c#中是正确的:

#region;
Run Code Online (Sandbox Code Playgroud)

oracle plsqldeveloper

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

SQL INSERT没有指定列.怎么了?

正在寻找心爱的W3schools并找到了这个页面并且实际上学到了一些有趣的东西.我不知道你可以在不指定值的列的情况下调用insert命令.例如;

INSERT INTO table_name
 VALUES (value1, value2, value3,...)
Run Code Online (Sandbox Code Playgroud)

从我朦胧的记忆中拉出来,我似乎记得SQL教授提到你必须把字段视为没有任何特定的顺序(虽然在RDB方面,但它不能保证).

我的问题是,服务器如何知道哪些值被分配到哪些字段?*我会自己测试一下,但我不打算使用生产服务器来做我现在可以访问的所有内容.

如果这项技术具体,我正在研究PostgresSQL.这个特殊的语法怎么有用呢?

sql postgresql

7
推荐指数
2
解决办法
4373
查看次数

ORA 06533:下标超出计数

我创建了下面简单的块但得到了

ORA 06533:下标超出计数

错误.

有人可以告诉我在下面的代码中我缺少什么.

declare
  type salaryvarray is varray(6) of customers.salary%type;
  salary_array salaryvarray:=salaryvarray();
  c_salary customers.salary%type;
  i integer(2);
  counter number(2);
begin
  salary_array.extend;
  select count(*) into counter from customers;
  for i in 1..counter loop
    select salary into c_salary from customers where id =i;
    salary_array(i):=c_salary;
  end loop;
end;
/
Run Code Online (Sandbox Code Playgroud)

oracle plsql

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

将XML提供给Google日历

我有一个带有研讨会的XML文件,我想将其提供给谷歌日历.XML文件由其他人维护并定期更新,因此我想以谷歌自动获取这些更改的方式执行此操作.

我对这种事情没有多少经验,所以我希望有人可以指出我正确的方向.

这是我想要处理的XML的一个示例.

(XML文件:"seminars.xml")

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="ical.xsl"?>

<seminars>
  <lastupdate>20150707</lastupdate>

  <seminar>
    <speaker>A. Einstein</speaker>
    <location>Zurich</location>
    <date>20150607</date>
    <time>15:45:00</time>
    <university>Princeton</university>
    <abstract>
      <title>On the structure of generalized patent office spaces</title>
      <content>To be announced.</content>
    </abstract>
  </seminar>

</seminars>
Run Code Online (Sandbox Code Playgroud)

我想说,实现这一目标最明显的方法是使用XSLT样式表来处理XML并构建一些google-calendar可以读取的文件.我有一个网站/服务器,我可以把这个XSL文件放在理想情况下我希望只能上传一个正确的文件.

我看起来像这样的XSL表.

(XSL文件:"ical.xsl")

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="iso-8859-1" media-type="text/calendar"/>
<xsl:variable name="crlf">&#13;&#10;</xsl:variable>
<xsl:template match="/">BEGIN:VCALENDAR<xsl:value-of select="$crlf"/>
CALSCALE:GREGORIAN<xsl:value-of select="$crlf"/>
VERSION:2.0<xsl:value-of select="$crlf"/>
SEQUENCE:1<xsl:value-of select="$crlf"/>
X-WR-TIMEZONE:Europe/Paris<xsl:for-each select="seminars/seminar"><xsl:value-of select="$crlf"/>
BEGIN:VEVENT<xsl:value-of select="$crlf"/>
LOCATION:<xsl:value-of select="location"/><xsl:value-of select="$crlf"/>
DTSTART:<xsl:value-of select="date"/>T154500<xsl:value-of select="$crlf"/>
DTEND:<xsl:value-of select="date"/>T164500<xsl:value-of select="$crlf"/>
DESCRIPTION:seminar by <xsl:value-of select="speaker"/><xsl:value-of select="$crlf"/>
SUMMARY:<xsl:value-of select="abstract/title"/><xsl:value-of select="$crlf"/> …
Run Code Online (Sandbox Code Playgroud)

xml csv xslt

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